fix(equipment): 기본 무기에 attackSpeed 추가

- bareHands 무기에 attackSpeed: 1000 기본값 설정
This commit is contained in:
JiWoong Sul
2025-12-26 19:29:43 +09:00
parent 28cf5fa687
commit 17ab73758a

View File

@@ -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,
);
}