From 17ab73758a9d6727403c339705b8dac0b1ca29f4 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Fri, 26 Dec 2025 19:29:43 +0900 Subject: [PATCH] =?UTF-8?q?fix(equipment):=20=EA=B8=B0=EB=B3=B8=20?= =?UTF-8?q?=EB=AC=B4=EA=B8=B0=EC=97=90=20attackSpeed=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - bareHands 무기에 attackSpeed: 1000 기본값 설정 --- lib/src/core/model/equipment_item.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/model/equipment_item.dart b/lib/src/core/model/equipment_item.dart index a612ff7..7483160 100644 --- a/lib/src/core/model/equipment_item.dart +++ b/lib/src/core/model/equipment_item.dart @@ -66,7 +66,7 @@ class EquipmentItem { slot: EquipmentSlot.weapon, level: 1, weight: 5, - stats: ItemStats(atk: 1), + stats: ItemStats(atk: 1, attackSpeed: 1000), rarity: ItemRarity.common, ); }