Files
heros/data/defs/items.json

120 lines
2.4 KiB
JSON

{
"bronze_sword": {
"name": "Bronze Sword",
"kind": "weapon",
"weapon_type": "sword",
"range": [1, 1],
"bonuses": { "atk": 3 },
"effects": [],
"price": 300
},
"iron_sword": {
"name": "Iron Sword",
"kind": "weapon",
"weapon_type": "sword",
"range": [1, 1],
"bonuses": { "atk": 5 },
"effects": [],
"price": 520
},
"training_spear": {
"name": "Training Spear",
"kind": "weapon",
"weapon_type": "spear",
"range": [1, 1],
"bonuses": { "atk": 4 },
"effects": [],
"price": 360
},
"short_bow": {
"name": "Short Bow",
"kind": "weapon",
"weapon_type": "bow",
"range": [2, 2],
"bonuses": { "atk": 3 },
"effects": [],
"price": 320
},
"hand_axe": {
"name": "Hand Axe",
"kind": "weapon",
"weapon_type": "axe",
"range": [1, 1],
"bonuses": { "atk": 4 },
"effects": [],
"price": 340
},
"war_axe": {
"name": "War Axe",
"kind": "weapon",
"weapon_type": "axe",
"range": [1, 1],
"bonuses": { "atk": 6 },
"effects": [],
"price": 680
},
"cloth_robe": {
"name": "Cloth Robe",
"kind": "armor",
"armor_type": "robe",
"bonuses": { "def": 1 },
"effects": [],
"price": 120
},
"leather_armor": {
"name": "Leather Armor",
"kind": "armor",
"armor_type": "light_armor",
"bonuses": { "def": 1 },
"effects": [],
"price": 180
},
"iron_armor": {
"name": "Iron Armor",
"kind": "armor",
"armor_type": "heavy_armor",
"bonuses": { "def": 3 },
"effects": [],
"price": 520
},
"war_drum": {
"name": "War Drum",
"kind": "accessory",
"accessory_type": "accessory",
"bonuses": { "atk": 1, "agi": 1 },
"effects": [],
"price": 640
},
"imperial_seal": {
"name": "Imperial Seal",
"kind": "accessory",
"accessory_type": "accessory",
"bonuses": { "mp": 4, "int": 1 },
"effects": [],
"price": 900
},
"bean": {
"name": "Bean",
"kind": "consumable",
"uses": 1,
"effects": [{ "type": "heal_hp", "amount": 20 }],
"price": 50
},
"antidote": {
"name": "Antidote",
"kind": "consumable",
"target": "ally",
"range": [0, 1],
"uses": 1,
"effects": [{ "type": "cure_status", "status": "poison" }],
"price": 70
},
"wine": {
"name": "Wine",
"kind": "consumable",
"uses": 1,
"effects": [{ "type": "heal_mp", "amount": 8 }],
"price": 120
}
}