Initial Godot tactical RPG prototype
This commit is contained in:
110
data/defs/items.json
Normal file
110
data/defs/items.json
Normal file
@@ -0,0 +1,110 @@
|
||||
{
|
||||
"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
|
||||
},
|
||||
"wine": {
|
||||
"name": "Wine",
|
||||
"kind": "consumable",
|
||||
"uses": 1,
|
||||
"effects": [{ "type": "heal_mp", "amount": 8 }],
|
||||
"price": 120
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user