This commit is contained in:
2025-12-02 17:52:01 +09:00
parent 457eed4d3e
commit 0e96aa4f7c
10 changed files with 314 additions and 128 deletions
+16 -8
View File
@@ -4,31 +4,36 @@
"name": "Goblin",
"baseHp": 20,
"baseAtk": 5,
"baseDefense": 0
"baseDefense": 0,
"image": "assets/images/enemies/goblin.png"
},
{
"name": "Slime",
"baseHp": 30,
"baseAtk": 3,
"baseDefense": 1
"baseDefense": 1,
"image": "assets/images/enemies/slime.png"
},
{
"name": "Wolf",
"baseHp": 25,
"baseAtk": 7,
"baseDefense": 0
"baseDefense": 0,
"image": "assets/images/enemies/wolf.png"
},
{
"name": "Bandit",
"baseHp": 35,
"baseAtk": 6,
"baseDefense": 1
"baseDefense": 1,
"image": "assets/images/enemies/bandit.png"
},
{
"name": "Skeleton",
"baseHp": 15,
"baseAtk": 8,
"baseDefense": 0
"baseDefense": 0,
"image": "assets/images/enemies/skeleton.png"
}
],
"elite": [
@@ -36,19 +41,22 @@
"name": "Orc Warrior",
"baseHp": 60,
"baseAtk": 12,
"baseDefense": 3
"baseDefense": 3,
"image": "assets/images/enemies/orc_warrior.png"
},
{
"name": "Giant Spider",
"baseHp": 50,
"baseAtk": 15,
"baseDefense": 2
"baseDefense": 2,
"image": "assets/images/enemies/giant_spider.png"
},
{
"name": "Dark Knight",
"baseHp": 80,
"baseAtk": 10,
"baseDefense": 5
"baseDefense": 5,
"image": "assets/images/enemies/dark_knight.png"
}
]
}
+47 -13
View File
@@ -4,25 +4,33 @@
"name": "Rusty Dagger",
"description": "Old and rusty, but better than nothing.",
"baseAtk": 3,
"slot": "weapon"
"slot": "weapon",
"price": 30,
"image": "assets/images/items/rusty_dagger.png"
},
{
"name": "Iron Sword",
"description": "A standard soldier's sword.",
"baseAtk": 8,
"slot": "weapon"
"slot": "weapon",
"price": 80,
"image": "assets/images/items/iron_sword.png"
},
{
"name": "Battle Axe",
"description": "Heavy but powerful.",
"baseAtk": 12,
"slot": "weapon"
"slot": "weapon",
"price": 120,
"image": "assets/images/items/battle_axe.png"
},
{
"name": "Stunning Hammer",
"description": "A heavy hammer that can stun foes.",
"baseAtk": 10,
"slot": "weapon",
"price": 150,
"image": "assets/images/items/stunning_hammer.png",
"effects": [
{
"type": "stun",
@@ -36,6 +44,8 @@
"description": "A cruel dagger that causes bleeding.",
"baseAtk": 7,
"slot": "weapon",
"price": 130,
"image": "assets/images/items/jagged_dagger.png",
"effects": [
{
"type": "bleed",
@@ -50,6 +60,8 @@
"description": "An axe that exposes enemy weaknesses.",
"baseAtk": 11,
"slot": "weapon",
"price": 160,
"image": "assets/images/items/sunderer_axe.png",
"effects": [
{
"type": "vulnerable",
@@ -64,19 +76,25 @@
"name": "Torn Tunic",
"description": "Offers minimal protection.",
"baseHp": 10,
"slot": "armor"
"slot": "armor",
"price": 20,
"image": "assets/images/items/torn_tunic.png"
},
{
"name": "Leather Vest",
"description": "Light and flexible.",
"baseHp": 30,
"slot": "armor"
"slot": "armor",
"price": 60,
"image": "assets/images/items/leather_vest.png"
},
{
"name": "Chainmail",
"description": "Reliable protection against cuts.",
"baseHp": 60,
"slot": "armor"
"slot": "armor",
"price": 120,
"image": "assets/images/items/chainmail.png"
}
],
"shields": [
@@ -84,25 +102,33 @@
"name": "Pot Lid",
"description": "It was used for cooking.",
"baseArmor": 1,
"slot": "shield"
"slot": "shield",
"price": 10,
"image": "assets/images/items/pot_lid.png"
},
{
"name": "Wooden Shield",
"description": "Sturdy oak wood.",
"baseArmor": 3,
"slot": "shield"
"slot": "shield",
"price": 40,
"image": "assets/images/items/wooden_shield.png"
},
{
"name": "Kite Shield",
"description": "Used by knights.",
"baseArmor": 6,
"slot": "shield"
"slot": "shield",
"price": 100,
"image": "assets/images/items/kite_shield.png"
},
{
"name": "Cursed Shield",
"description": "A shield that prevents the wielder from defending themselves.",
"baseArmor": 5,
"slot": "shield",
"price": 50,
"image": "assets/images/items/cursed_shield.png",
"effects": [
{
"type": "defenseForbidden",
@@ -118,21 +144,27 @@
"description": "A tarnished ring.",
"baseAtk": 1,
"baseHp": 5,
"slot": "accessory"
"slot": "accessory",
"price": 25,
"image": "assets/images/items/old_ring.png"
},
{
"name": "Copper Ring",
"description": "A simple ring",
"baseAtk": 1,
"baseHp": 5,
"slot": "accessory"
"slot": "accessory",
"price": 25,
"image": "assets/images/items/copper_ring.png"
},
{
"name": "Ruby Amulet",
"description": "Glows with a faint red light.",
"baseAtk": 3,
"baseHp": 15,
"slot": "accessory"
"slot": "accessory",
"price": 80,
"image": "assets/images/items/ruby_amulet.png"
},
{
"name": "Hero's Badge",
@@ -140,7 +172,9 @@
"baseAtk": 5,
"baseHp": 25,
"baseArmor": 1,
"slot": "accessory"
"slot": "accessory",
"price": 150,
"image": "assets/images/items/heros_badge.png"
}
]
}