game/assets/data/items.json

147 lines
3.0 KiB
JSON

{
"weapons": [
{
"name": "Rusty Dagger",
"description": "Old and rusty, but better than nothing.",
"baseAtk": 3,
"slot": "weapon"
},
{
"name": "Iron Sword",
"description": "A standard soldier's sword.",
"baseAtk": 8,
"slot": "weapon"
},
{
"name": "Battle Axe",
"description": "Heavy but powerful.",
"baseAtk": 12,
"slot": "weapon"
},
{
"name": "Stunning Hammer",
"description": "A heavy hammer that can stun foes.",
"baseAtk": 10,
"slot": "weapon",
"effects": [
{
"type": "stun",
"probability": 20,
"duration": 1
}
]
},
{
"name": "Jagged Dagger",
"description": "A cruel dagger that causes bleeding.",
"baseAtk": 7,
"slot": "weapon",
"effects": [
{
"type": "bleed",
"probability": 30,
"duration": 3,
"value": 5
}
]
},
{
"name": "Sunderer Axe",
"description": "An axe that exposes enemy weaknesses.",
"baseAtk": 11,
"slot": "weapon",
"effects": [
{
"type": "vulnerable",
"probability": 100,
"duration": 2
}
]
}
],
"armors": [
{
"name": "Torn Tunic",
"description": "Offers minimal protection.",
"baseHp": 10,
"slot": "armor"
},
{
"name": "Leather Vest",
"description": "Light and flexible.",
"baseHp": 30,
"slot": "armor"
},
{
"name": "Chainmail",
"description": "Reliable protection against cuts.",
"baseHp": 60,
"slot": "armor"
}
],
"shields": [
{
"name": "Pot Lid",
"description": "It was used for cooking.",
"baseArmor": 1,
"slot": "shield"
},
{
"name": "Wooden Shield",
"description": "Sturdy oak wood.",
"baseArmor": 3,
"slot": "shield"
},
{
"name": "Kite Shield",
"description": "Used by knights.",
"baseArmor": 6,
"slot": "shield"
},
{
"name": "Cursed Shield",
"description": "A shield that prevents the wielder from defending themselves.",
"baseArmor": 5,
"slot": "shield",
"effects": [
{
"type": "defenseForbidden",
"probability": 100,
"duration": 999
}
]
}
],
"accessories": [
{
"name": "Old Ring",
"description": "A tarnished ring.",
"baseAtk": 1,
"baseHp": 5,
"slot": "accessory"
},
{
"name": "Copper Ring",
"description": "A simple ring",
"baseAtk": 1,
"baseHp": 5,
"slot": "accessory"
},
{
"name": "Ruby Amulet",
"description": "Glows with a faint red light.",
"baseAtk": 3,
"baseHp": 15,
"slot": "accessory"
},
{
"name": "Hero's Badge",
"description": "A badge of honor.",
"baseAtk": 5,
"baseHp": 25,
"baseArmor": 1,
"slot": "accessory"
}
]
}