Files
heros/data/defs/items.json

207 lines
5.0 KiB
JSON

{
"bronze_sword": {
"name": "Bronze Sword",
"kind": "weapon",
"icon": "res://art/items/sword.png",
"weapon_type": "sword",
"range": [1, 1],
"bonuses": { "atk": 3 },
"effects": [],
"price": 300
},
"iron_sword": {
"name": "Iron Sword",
"kind": "weapon",
"icon": "res://art/items/sword.png",
"weapon_type": "sword",
"range": [1, 1],
"bonuses": { "atk": 5 },
"effects": [],
"price": 520
},
"training_spear": {
"name": "Training Spear",
"kind": "weapon",
"icon": "res://art/items/spear.png",
"weapon_type": "spear",
"range": [1, 1],
"bonuses": { "atk": 4 },
"effective_vs_move_types": ["mounted"],
"effective_bonus_damage": 3,
"effects": [],
"price": 360
},
"short_bow": {
"name": "Short Bow",
"kind": "weapon",
"icon": "res://art/items/bow.png",
"weapon_type": "bow",
"range": [2, 2],
"bonuses": { "atk": 3 },
"effective_vs_move_types": ["water"],
"effective_bonus_damage": 2,
"effects": [],
"price": 320
},
"hand_axe": {
"name": "Hand Axe",
"kind": "weapon",
"icon": "res://art/items/axe.png",
"weapon_type": "axe",
"range": [1, 1],
"bonuses": { "atk": 4 },
"effective_vs_move_types": ["foot"],
"effective_bonus_damage": 2,
"effects": [],
"price": 340
},
"war_axe": {
"name": "War Axe",
"kind": "weapon",
"icon": "res://art/items/axe.png",
"weapon_type": "axe",
"range": [1, 1],
"bonuses": { "atk": 6 },
"effective_vs_move_types": ["foot"],
"effective_bonus_damage": 3,
"effects": [],
"price": 680
},
"cloth_robe": {
"name": "Cloth Robe",
"kind": "armor",
"icon": "res://art/items/armor.png",
"armor_type": "robe",
"bonuses": { "def": 1 },
"effects": [],
"price": 120
},
"leather_armor": {
"name": "Leather Armor",
"kind": "armor",
"icon": "res://art/items/armor.png",
"armor_type": "light_armor",
"bonuses": { "def": 1 },
"effects": [],
"price": 180
},
"iron_armor": {
"name": "Iron Armor",
"kind": "armor",
"icon": "res://art/items/armor.png",
"armor_type": "heavy_armor",
"bonuses": { "def": 3 },
"effects": [],
"price": 520
},
"war_drum": {
"name": "War Drum",
"kind": "accessory",
"icon": "res://art/items/war_drum.png",
"accessory_type": "accessory",
"bonuses": { "atk": 1, "agi": 1 },
"effects": [],
"price": 640
},
"imperial_seal": {
"name": "Imperial Seal",
"kind": "accessory",
"icon": "res://art/items/imperial_seal.png",
"accessory_type": "accessory",
"bonuses": { "mp": 4, "int": 1 },
"effects": [],
"price": 900
},
"yitian_sword": {
"name": "Yitian Sword",
"kind": "weapon",
"rarity": "named",
"icon": "res://art/items/sword.png",
"weapon_type": "sword",
"range": [1, 1],
"bonuses": { "atk": 7, "int": 1 },
"effective_vs_move_types": ["foot"],
"effective_bonus_damage": 2,
"effects": [],
"price": 1300
},
"dragon_spear": {
"name": "Dragon Spear",
"kind": "weapon",
"rarity": "named",
"icon": "res://art/items/spear.png",
"weapon_type": "spear",
"range": [1, 1],
"bonuses": { "atk": 7, "agi": 1 },
"effective_vs_move_types": ["mounted"],
"effective_bonus_damage": 4,
"effects": [],
"price": 1400
},
"wind_chaser_bow": {
"name": "Wind Chaser Bow",
"kind": "weapon",
"rarity": "named",
"icon": "res://art/items/bow.png",
"weapon_type": "bow",
"range": [2, 2],
"bonuses": { "atk": 5, "agi": 2 },
"effective_vs_move_types": ["water"],
"effective_bonus_damage": 3,
"effects": [],
"price": 1200
},
"black_tortoise_robe": {
"name": "Black Tortoise Robe",
"kind": "armor",
"rarity": "named",
"icon": "res://art/items/armor.png",
"armor_type": "robe",
"bonuses": { "mp": 2, "def": 3, "int": 1 },
"effects": [],
"price": 1100
},
"bean": {
"name": "Bean",
"kind": "consumable",
"icon": "res://art/items/panacea.png",
"uses": 1,
"effects": [{ "type": "heal_hp", "amount": 20 }],
"price": 50
},
"antidote": {
"name": "Antidote",
"kind": "consumable",
"icon": "res://art/items/panacea.png",
"target": "ally",
"range": [0, 1],
"uses": 1,
"effects": [{ "type": "cure_status", "status": "poison" }],
"price": 70
},
"panacea": {
"name": "Panacea",
"kind": "consumable",
"icon": "res://art/items/panacea.png",
"target": "ally",
"range": [0, 1],
"uses": 1,
"effects": [
{ "type": "cure_status", "status": "poison" },
{ "type": "cure_status", "status": "seal" },
{ "type": "cure_status", "status": "snare" },
{ "type": "cure_status", "status": "disarm" },
{ "type": "cleanse_debuffs" }
],
"price": 140
},
"wine": {
"name": "Wine",
"kind": "consumable",
"icon": "res://art/items/panacea.png",
"uses": 1,
"effects": [{ "type": "heal_mp", "amount": 8 }],
"price": 120
}
}