diff options
Diffstat (limited to 'data/items')
| -rw-r--r-- | data/items/bronze_pickaxe.yaml | 19 | ||||
| -rw-r--r-- | data/items/copper_ore.yaml | 12 | ||||
| -rw-r--r-- | data/items/fishing_rod.yaml | 9 | ||||
| -rw-r--r-- | data/items/pass_stub.yaml | 5 | ||||
| -rw-r--r-- | data/items/raw_trout.yaml | 6 | ||||
| -rw-r--r-- | data/items/uncut_diamond.yaml | 6 | ||||
| -rw-r--r-- | data/items/uncut_emerald.yaml | 6 | ||||
| -rw-r--r-- | data/items/uncut_ruby.yaml | 6 | ||||
| -rw-r--r-- | data/items/uncut_sapphire.yaml | 6 |
9 files changed, 64 insertions, 11 deletions
diff --git a/data/items/bronze_pickaxe.yaml b/data/items/bronze_pickaxe.yaml index a64395e..260652b 100644 --- a/data/items/bronze_pickaxe.yaml +++ b/data/items/bronze_pickaxe.yaml @@ -1,7 +1,16 @@ -id: "bronze_pickaxe" -name: "bronze pickaxe" -aliases: ["pickaxe", "pick", "bronze"] -description: "A basic bronze pickaxe for mining." -value: 8 +id: bronze_pickaxe +name: bronze pickaxe +aliases: ["pick", "pickaxe"] +description: "A sturdy bronze pickaxe, good for mining." +value: 10 stackable: false +equip_slot: main_hand +weapon_type: melee +stats: + attack_bonus: 2 + strength_bonus: 1 + defense_bonus: 0 +speed: 5 toolbelt: true +tool_type: pickaxe +tool_speed: 2 diff --git a/data/items/copper_ore.yaml b/data/items/copper_ore.yaml index 5f11316..7192b92 100644 --- a/data/items/copper_ore.yaml +++ b/data/items/copper_ore.yaml @@ -1,6 +1,6 @@ -id: "copper_ore" -name: "copper ore" -aliases: ["copper", "ore"] -description: "A chunk of copper ore." -value: 3 -stackable: false +id: copper_ore +name: copper ore +aliases: ["ore", "copper"] +description: "A chunk of copper-bearing rock. Can be smelted into a bronze bar." +value: 1 +stackable: true diff --git a/data/items/fishing_rod.yaml b/data/items/fishing_rod.yaml new file mode 100644 index 0000000..5441ba6 --- /dev/null +++ b/data/items/fishing_rod.yaml @@ -0,0 +1,9 @@ +id: fishing_rod +name: fishing rod +aliases: ["rod", "fishing"] +description: "A simple fishing rod with a hook and line." +value: 5 +stackable: false +toolbelt: true +tool_type: fishing_rod +tool_speed: 0 diff --git a/data/items/pass_stub.yaml b/data/items/pass_stub.yaml new file mode 100644 index 0000000..a7456ef --- /dev/null +++ b/data/items/pass_stub.yaml @@ -0,0 +1,5 @@ +id: pass_stub +name: pass stub +description: "A crumpled slip of paper stamped with the guard's seal. Grants one-time access past the gate." +value: 0 +stackable: false diff --git a/data/items/raw_trout.yaml b/data/items/raw_trout.yaml new file mode 100644 index 0000000..2a44c72 --- /dev/null +++ b/data/items/raw_trout.yaml @@ -0,0 +1,6 @@ +id: raw_trout +name: raw trout +aliases: ["trout", "fish", "raw"] +description: "A freshly caught trout. Needs cooking." +value: 3 +stackable: true diff --git a/data/items/uncut_diamond.yaml b/data/items/uncut_diamond.yaml new file mode 100644 index 0000000..3dcea70 --- /dev/null +++ b/data/items/uncut_diamond.yaml @@ -0,0 +1,6 @@ +id: uncut_diamond +name: uncut diamond +aliases: ["diamond", "gem", "uncut"] +description: "An uncut diamond. Can be cut with crafting." +value: 200 +stackable: true diff --git a/data/items/uncut_emerald.yaml b/data/items/uncut_emerald.yaml new file mode 100644 index 0000000..a9f3a66 --- /dev/null +++ b/data/items/uncut_emerald.yaml @@ -0,0 +1,6 @@ +id: uncut_emerald +name: uncut emerald +aliases: ["emerald", "gem", "uncut"] +description: "An uncut emerald. Can be cut with crafting." +value: 50 +stackable: true diff --git a/data/items/uncut_ruby.yaml b/data/items/uncut_ruby.yaml new file mode 100644 index 0000000..0e9d36d --- /dev/null +++ b/data/items/uncut_ruby.yaml @@ -0,0 +1,6 @@ +id: uncut_ruby +name: uncut ruby +aliases: ["ruby", "gem", "uncut"] +description: "An uncut ruby. Can be cut with crafting." +value: 100 +stackable: true diff --git a/data/items/uncut_sapphire.yaml b/data/items/uncut_sapphire.yaml new file mode 100644 index 0000000..70039d8 --- /dev/null +++ b/data/items/uncut_sapphire.yaml @@ -0,0 +1,6 @@ +id: uncut_sapphire +name: uncut sapphire +aliases: ["sapphire", "gem", "uncut"] +description: "An uncut sapphire. Can be cut with crafting." +value: 25 +stackable: true |
