This commit is contained in:
2025-12-04 16:50:57 +09:00
parent 0a7c50e6c9
commit 37a634643e
23 changed files with 1062 additions and 663 deletions
+3
View File
@@ -13,6 +13,7 @@ void main() {
setUp(() {
player = Character(name: "TestPlayer", maxHp: 100, armor: 0, atk: 10);
armorHp50 = Item(
id: "armor_hp_50",
name: "Armor +50",
description: "HP +50",
atkBonus: 0,
@@ -21,6 +22,7 @@ void main() {
price: 100,
);
armorHp100 = Item(
id: "armor_hp_100",
name: "Armor +100",
description: "HP +100",
atkBonus: 0,
@@ -29,6 +31,7 @@ void main() {
price: 200,
);
armorHp20 = Item(
id: "armor_hp_20",
name: "Armor +20",
description: "HP +20",
atkBonus: 0,