From 97a1a908b9e6e6d3516628c139c9b64262b4fe08 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Thu, 18 Jun 2026 20:26:03 -0400 Subject: feat: crafting roughly implemented (leather, gems, gold, clay, spinning). --- data/items/amulet_mould.yaml | 5 +++++ data/items/ball_of_wool.yaml | 6 ++++++ data/items/bracelet_mould.yaml | 5 +++++ data/items/bread_dough.yaml | 4 ++-- data/items/coif.yaml | 8 ++++++++ data/items/cowhide.yaml | 6 ++++++ data/items/diamond.yaml | 6 ++++++ data/items/diamond_amulet_u.yaml | 5 +++++ data/items/diamond_bracelet.yaml | 6 ++++++ data/items/diamond_necklace.yaml | 6 ++++++ data/items/diamond_ring.yaml | 6 ++++++ data/items/emerald.yaml | 6 ++++++ data/items/emerald_amulet_u.yaml | 5 +++++ data/items/emerald_bracelet.yaml | 6 ++++++ data/items/emerald_necklace.yaml | 6 ++++++ data/items/emerald_ring.yaml | 6 ++++++ data/items/empty_jug.yaml | 6 ++++++ data/items/empty_pitcher.yaml | 6 ------ data/items/flax.yaml | 6 ++++++ data/items/gold_amulet_u.yaml | 5 +++++ data/items/gold_bracelet.yaml | 6 ++++++ data/items/gold_necklace.yaml | 6 ++++++ data/items/gold_ring.yaml | 6 ++++++ data/items/hard_leather.yaml | 6 ++++++ data/items/hard_leather_body.yaml | 8 ++++++++ data/items/hard_leather_shield.yaml | 8 ++++++++ data/items/jug_of_water.yaml | 6 ++++++ data/items/leather.yaml | 6 ++++++ data/items/leather_body.yaml | 8 ++++++++ data/items/leather_boots.yaml | 8 ++++++++ data/items/leather_chaps.yaml | 8 ++++++++ data/items/leather_cowl.yaml | 8 ++++++++ data/items/leather_gloves.yaml | 8 ++++++++ data/items/leather_vambraces.yaml | 8 ++++++++ data/items/necklace_mould.yaml | 5 +++++ data/items/needle.yaml | 6 ++++++ data/items/pie_dish.yaml | 5 +++++ data/items/pitcher_of_water.yaml | 6 ------ data/items/plant_pot.yaml | 5 +++++ data/items/raw_beef.yaml | 6 ++++++ data/items/ring_mould.yaml | 5 +++++ data/items/ruby.yaml | 6 ++++++ data/items/ruby_amulet_u.yaml | 5 +++++ data/items/ruby_bracelet.yaml | 6 ++++++ data/items/ruby_necklace.yaml | 6 ++++++ data/items/ruby_ring.yaml | 6 ++++++ data/items/sapphire.yaml | 6 ++++++ data/items/sapphire_amulet_u.yaml | 5 +++++ data/items/sapphire_bracelet.yaml | 6 ++++++ data/items/sapphire_necklace.yaml | 6 ++++++ data/items/sapphire_ring.yaml | 6 ++++++ data/items/shears.yaml | 6 ++++++ data/items/soft_clay.yaml | 13 +++++++++++++ data/items/thread.yaml | 6 ++++++ data/items/uncut_diamond.yaml | 2 +- data/items/uncut_emerald.yaml | 2 +- data/items/uncut_ruby.yaml | 2 +- data/items/uncut_sapphire.yaml | 2 +- data/items/unfired_pie_dish.yaml | 5 +++++ data/items/unfired_plant_pot.yaml | 5 +++++ data/items/unfired_pot.yaml | 5 +++++ data/items/wool.yaml | 6 ++++++ 62 files changed, 347 insertions(+), 18 deletions(-) create mode 100644 data/items/amulet_mould.yaml create mode 100644 data/items/ball_of_wool.yaml create mode 100644 data/items/bracelet_mould.yaml create mode 100644 data/items/coif.yaml create mode 100644 data/items/cowhide.yaml create mode 100644 data/items/diamond.yaml create mode 100644 data/items/diamond_amulet_u.yaml create mode 100644 data/items/diamond_bracelet.yaml create mode 100644 data/items/diamond_necklace.yaml create mode 100644 data/items/diamond_ring.yaml create mode 100644 data/items/emerald.yaml create mode 100644 data/items/emerald_amulet_u.yaml create mode 100644 data/items/emerald_bracelet.yaml create mode 100644 data/items/emerald_necklace.yaml create mode 100644 data/items/emerald_ring.yaml create mode 100644 data/items/empty_jug.yaml delete mode 100644 data/items/empty_pitcher.yaml create mode 100644 data/items/flax.yaml create mode 100644 data/items/gold_amulet_u.yaml create mode 100644 data/items/gold_bracelet.yaml create mode 100644 data/items/gold_necklace.yaml create mode 100644 data/items/gold_ring.yaml create mode 100644 data/items/hard_leather.yaml create mode 100644 data/items/hard_leather_body.yaml create mode 100644 data/items/hard_leather_shield.yaml create mode 100644 data/items/jug_of_water.yaml create mode 100644 data/items/leather.yaml create mode 100644 data/items/leather_body.yaml create mode 100644 data/items/leather_boots.yaml create mode 100644 data/items/leather_chaps.yaml create mode 100644 data/items/leather_cowl.yaml create mode 100644 data/items/leather_gloves.yaml create mode 100644 data/items/leather_vambraces.yaml create mode 100644 data/items/necklace_mould.yaml create mode 100644 data/items/needle.yaml create mode 100644 data/items/pie_dish.yaml delete mode 100644 data/items/pitcher_of_water.yaml create mode 100644 data/items/plant_pot.yaml create mode 100644 data/items/raw_beef.yaml create mode 100644 data/items/ring_mould.yaml create mode 100644 data/items/ruby.yaml create mode 100644 data/items/ruby_amulet_u.yaml create mode 100644 data/items/ruby_bracelet.yaml create mode 100644 data/items/ruby_necklace.yaml create mode 100644 data/items/ruby_ring.yaml create mode 100644 data/items/sapphire.yaml create mode 100644 data/items/sapphire_amulet_u.yaml create mode 100644 data/items/sapphire_bracelet.yaml create mode 100644 data/items/sapphire_necklace.yaml create mode 100644 data/items/sapphire_ring.yaml create mode 100644 data/items/shears.yaml create mode 100644 data/items/soft_clay.yaml create mode 100644 data/items/thread.yaml create mode 100644 data/items/unfired_pie_dish.yaml create mode 100644 data/items/unfired_plant_pot.yaml create mode 100644 data/items/unfired_pot.yaml create mode 100644 data/items/wool.yaml (limited to 'data/items') diff --git a/data/items/amulet_mould.yaml b/data/items/amulet_mould.yaml new file mode 100644 index 0000000..a8153cb --- /dev/null +++ b/data/items/amulet_mould.yaml @@ -0,0 +1,5 @@ +id: amulet_mould +name: amulet mould +color: "250" +description: "A mould for casting amulets." +value: 5 diff --git a/data/items/ball_of_wool.yaml b/data/items/ball_of_wool.yaml new file mode 100644 index 0000000..1a680a4 --- /dev/null +++ b/data/items/ball_of_wool.yaml @@ -0,0 +1,6 @@ +id: ball_of_wool +name: ball of wool +color: "255" +description: "A ball of spun wool." +value: 5 +stackable: false diff --git a/data/items/bracelet_mould.yaml b/data/items/bracelet_mould.yaml new file mode 100644 index 0000000..78bc099 --- /dev/null +++ b/data/items/bracelet_mould.yaml @@ -0,0 +1,5 @@ +id: bracelet_mould +name: bracelet mould +color: "250" +description: "A mould for casting bracelets." +value: 5 diff --git a/data/items/bread_dough.yaml b/data/items/bread_dough.yaml index c40d0e0..98ab297 100644 --- a/data/items/bread_dough.yaml +++ b/data/items/bread_dough.yaml @@ -9,6 +9,6 @@ made_from: - items: [pot_of_flour] qty: 1 byproducts: [empty_pot] - - items: [bucket_of_water, pitcher_of_water] + - items: [bucket_of_water, jug_of_water] qty: 1 - byproducts: [empty_bucket, empty_pitcher] + byproducts: [empty_bucket, empty_jug] diff --git a/data/items/coif.yaml b/data/items/coif.yaml new file mode 100644 index 0000000..d789fc1 --- /dev/null +++ b/data/items/coif.yaml @@ -0,0 +1,8 @@ +id: coif +name: coif +color: "94" +description: "A hard leather coif." +value: 45 +equip_slot: head +stats: + defense_bonus: 6 diff --git a/data/items/cowhide.yaml b/data/items/cowhide.yaml new file mode 100644 index 0000000..2cb192e --- /dev/null +++ b/data/items/cowhide.yaml @@ -0,0 +1,6 @@ +id: cowhide +name: cowhide +color: "130" +description: "A fresh cowhide. A tanner can turn this into leather." +value: 5 +stackable: false diff --git a/data/items/diamond.yaml b/data/items/diamond.yaml new file mode 100644 index 0000000..2ec703f --- /dev/null +++ b/data/items/diamond.yaml @@ -0,0 +1,6 @@ +id: diamond +name: diamond +color: "255" +description: "A beautifully cut diamond." +value: 400 +stackable: false diff --git a/data/items/diamond_amulet_u.yaml b/data/items/diamond_amulet_u.yaml new file mode 100644 index 0000000..55eaf45 --- /dev/null +++ b/data/items/diamond_amulet_u.yaml @@ -0,0 +1,5 @@ +id: diamond_amulet_u +name: diamond amulet (u) +color: "255" +description: "An unstrung gold amulet set with a diamond." +value: 200 diff --git a/data/items/diamond_bracelet.yaml b/data/items/diamond_bracelet.yaml new file mode 100644 index 0000000..c4fcb85 --- /dev/null +++ b/data/items/diamond_bracelet.yaml @@ -0,0 +1,6 @@ +id: diamond_bracelet +name: diamond bracelet +color: "255" +description: "A gold bracelet set with a diamond." +value: 190 +equip_slot: hands diff --git a/data/items/diamond_necklace.yaml b/data/items/diamond_necklace.yaml new file mode 100644 index 0000000..e900756 --- /dev/null +++ b/data/items/diamond_necklace.yaml @@ -0,0 +1,6 @@ +id: diamond_necklace +name: diamond necklace +color: "255" +description: "A gold necklace set with a diamond." +value: 180 +equip_slot: neck diff --git a/data/items/diamond_ring.yaml b/data/items/diamond_ring.yaml new file mode 100644 index 0000000..7980d2a --- /dev/null +++ b/data/items/diamond_ring.yaml @@ -0,0 +1,6 @@ +id: diamond_ring +name: diamond ring +color: "255" +description: "A gold ring set with a diamond." +value: 170 +equip_slot: ring diff --git a/data/items/emerald.yaml b/data/items/emerald.yaml new file mode 100644 index 0000000..9a0c71d --- /dev/null +++ b/data/items/emerald.yaml @@ -0,0 +1,6 @@ +id: emerald +name: emerald +color: "83" +description: "A beautifully cut emerald." +value: 100 +stackable: false diff --git a/data/items/emerald_amulet_u.yaml b/data/items/emerald_amulet_u.yaml new file mode 100644 index 0000000..87261d4 --- /dev/null +++ b/data/items/emerald_amulet_u.yaml @@ -0,0 +1,5 @@ +id: emerald_amulet_u +name: emerald amulet (u) +color: "83" +description: "An unstrung gold amulet set with a emerald." +value: 110 diff --git a/data/items/emerald_bracelet.yaml b/data/items/emerald_bracelet.yaml new file mode 100644 index 0000000..91fa223 --- /dev/null +++ b/data/items/emerald_bracelet.yaml @@ -0,0 +1,6 @@ +id: emerald_bracelet +name: emerald bracelet +color: "83" +description: "A gold bracelet set with a emerald." +value: 105 +equip_slot: hands diff --git a/data/items/emerald_necklace.yaml b/data/items/emerald_necklace.yaml new file mode 100644 index 0000000..2f87002 --- /dev/null +++ b/data/items/emerald_necklace.yaml @@ -0,0 +1,6 @@ +id: emerald_necklace +name: emerald necklace +color: "83" +description: "A gold necklace set with a emerald." +value: 100 +equip_slot: neck diff --git a/data/items/emerald_ring.yaml b/data/items/emerald_ring.yaml new file mode 100644 index 0000000..f70a059 --- /dev/null +++ b/data/items/emerald_ring.yaml @@ -0,0 +1,6 @@ +id: emerald_ring +name: emerald ring +color: "83" +description: "A gold ring set with a emerald." +value: 95 +equip_slot: ring diff --git a/data/items/empty_jug.yaml b/data/items/empty_jug.yaml new file mode 100644 index 0000000..c6774a5 --- /dev/null +++ b/data/items/empty_jug.yaml @@ -0,0 +1,6 @@ +id: empty_jug +name: empty jug +color: "137" +description: "An empty ceramic jug." +value: 1 +stackable: false diff --git a/data/items/empty_pitcher.yaml b/data/items/empty_pitcher.yaml deleted file mode 100644 index d1fbb49..0000000 --- a/data/items/empty_pitcher.yaml +++ /dev/null @@ -1,6 +0,0 @@ -id: empty_pitcher -name: empty pitcher -color: "137" -description: "An empty ceramic pitcher." -value: 1 -stackable: false diff --git a/data/items/flax.yaml b/data/items/flax.yaml new file mode 100644 index 0000000..36f7082 --- /dev/null +++ b/data/items/flax.yaml @@ -0,0 +1,6 @@ +id: flax +name: flax +color: "113" +description: "A bundle of flax. Can be spun into a bowstring." +value: 5 +stackable: false diff --git a/data/items/gold_amulet_u.yaml b/data/items/gold_amulet_u.yaml new file mode 100644 index 0000000..8671941 --- /dev/null +++ b/data/items/gold_amulet_u.yaml @@ -0,0 +1,5 @@ +id: gold_amulet_u +name: gold amulet (u) +color: "220" +description: "An unstrung gold amulet." +value: 70 diff --git a/data/items/gold_bracelet.yaml b/data/items/gold_bracelet.yaml new file mode 100644 index 0000000..2c4534f --- /dev/null +++ b/data/items/gold_bracelet.yaml @@ -0,0 +1,6 @@ +id: gold_bracelet +name: gold bracelet +color: "220" +description: "A gold bracelet." +value: 65 +equip_slot: hands diff --git a/data/items/gold_necklace.yaml b/data/items/gold_necklace.yaml new file mode 100644 index 0000000..4a22ac1 --- /dev/null +++ b/data/items/gold_necklace.yaml @@ -0,0 +1,6 @@ +id: gold_necklace +name: gold necklace +color: "220" +description: "A gold necklace." +value: 60 +equip_slot: neck diff --git a/data/items/gold_ring.yaml b/data/items/gold_ring.yaml new file mode 100644 index 0000000..1a39165 --- /dev/null +++ b/data/items/gold_ring.yaml @@ -0,0 +1,6 @@ +id: gold_ring +name: gold ring +color: "220" +description: "A simple gold ring." +value: 50 +equip_slot: ring diff --git a/data/items/hard_leather.yaml b/data/items/hard_leather.yaml new file mode 100644 index 0000000..e04030c --- /dev/null +++ b/data/items/hard_leather.yaml @@ -0,0 +1,6 @@ +id: hard_leather +name: hard leather +color: "94" +description: "A piece of hardened leather, suitable for sturdy armour." +value: 55 +stackable: false diff --git a/data/items/hard_leather_body.yaml b/data/items/hard_leather_body.yaml new file mode 100644 index 0000000..ef05226 --- /dev/null +++ b/data/items/hard_leather_body.yaml @@ -0,0 +1,8 @@ +id: hard_leather_body +name: hard leather body +color: "94" +description: "A hardened leather body armour." +value: 60 +equip_slot: torso +stats: + defense_bonus: 12 diff --git a/data/items/hard_leather_shield.yaml b/data/items/hard_leather_shield.yaml new file mode 100644 index 0000000..3dc0f30 --- /dev/null +++ b/data/items/hard_leather_shield.yaml @@ -0,0 +1,8 @@ +id: hard_leather_shield +name: hard leather shield +color: "94" +description: "A shield made of hardened leather." +value: 55 +equip_slot: off_hand +stats: + defense_bonus: 8 diff --git a/data/items/jug_of_water.yaml b/data/items/jug_of_water.yaml new file mode 100644 index 0000000..04d3b8f --- /dev/null +++ b/data/items/jug_of_water.yaml @@ -0,0 +1,6 @@ +id: jug_of_water +name: jug of water +color: "81" +description: "A ceramic jug filled with fresh water." +value: 5 +stackable: false diff --git a/data/items/leather.yaml b/data/items/leather.yaml new file mode 100644 index 0000000..82d0696 --- /dev/null +++ b/data/items/leather.yaml @@ -0,0 +1,6 @@ +id: leather +name: leather +color: "130" +description: "A piece of tanned leather, ready for crafting." +value: 15 +stackable: false diff --git a/data/items/leather_body.yaml b/data/items/leather_body.yaml new file mode 100644 index 0000000..78dcdf4 --- /dev/null +++ b/data/items/leather_body.yaml @@ -0,0 +1,8 @@ +id: leather_body +name: leather body +color: "130" +description: "A leather body armour." +value: 25 +equip_slot: torso +stats: + defense_bonus: 8 diff --git a/data/items/leather_boots.yaml b/data/items/leather_boots.yaml new file mode 100644 index 0000000..296d9c7 --- /dev/null +++ b/data/items/leather_boots.yaml @@ -0,0 +1,8 @@ +id: leather_boots +name: leather boots +color: "130" +description: "A pair of leather boots." +value: 12 +equip_slot: feet +stats: + defense_bonus: 2 diff --git a/data/items/leather_chaps.yaml b/data/items/leather_chaps.yaml new file mode 100644 index 0000000..38301f9 --- /dev/null +++ b/data/items/leather_chaps.yaml @@ -0,0 +1,8 @@ +id: leather_chaps +name: leather chaps +color: "130" +description: "A pair of leather chaps." +value: 20 +equip_slot: legs +stats: + defense_bonus: 6 diff --git a/data/items/leather_cowl.yaml b/data/items/leather_cowl.yaml new file mode 100644 index 0000000..e8fe399 --- /dev/null +++ b/data/items/leather_cowl.yaml @@ -0,0 +1,8 @@ +id: leather_cowl +name: leather cowl +color: "130" +description: "A leather cowl." +value: 15 +equip_slot: head +stats: + defense_bonus: 3 diff --git a/data/items/leather_gloves.yaml b/data/items/leather_gloves.yaml new file mode 100644 index 0000000..1924954 --- /dev/null +++ b/data/items/leather_gloves.yaml @@ -0,0 +1,8 @@ +id: leather_gloves +name: leather gloves +color: "130" +description: "A pair of leather gloves." +value: 10 +equip_slot: hands +stats: + defense_bonus: 2 diff --git a/data/items/leather_vambraces.yaml b/data/items/leather_vambraces.yaml new file mode 100644 index 0000000..4edfddc --- /dev/null +++ b/data/items/leather_vambraces.yaml @@ -0,0 +1,8 @@ +id: leather_vambraces +name: leather vambraces +color: "130" +description: "A pair of leather vambraces." +value: 18 +equip_slot: hands +stats: + defense_bonus: 4 diff --git a/data/items/necklace_mould.yaml b/data/items/necklace_mould.yaml new file mode 100644 index 0000000..bc4df45 --- /dev/null +++ b/data/items/necklace_mould.yaml @@ -0,0 +1,5 @@ +id: necklace_mould +name: necklace mould +color: "250" +description: "A mould for casting necklaces." +value: 5 diff --git a/data/items/needle.yaml b/data/items/needle.yaml new file mode 100644 index 0000000..5f53bf3 --- /dev/null +++ b/data/items/needle.yaml @@ -0,0 +1,6 @@ +id: needle +name: needle +color: "250" +description: "A needle for crafting leather goods." +value: 5 +tool_type: needle diff --git a/data/items/pie_dish.yaml b/data/items/pie_dish.yaml new file mode 100644 index 0000000..bd6100b --- /dev/null +++ b/data/items/pie_dish.yaml @@ -0,0 +1,5 @@ +id: pie_dish +name: pie dish +color: "130" +description: "A clay pie dish for baking pies." +value: 5 diff --git a/data/items/pitcher_of_water.yaml b/data/items/pitcher_of_water.yaml deleted file mode 100644 index a258411..0000000 --- a/data/items/pitcher_of_water.yaml +++ /dev/null @@ -1,6 +0,0 @@ -id: pitcher_of_water -name: pitcher of water -color: "81" -description: "A ceramic pitcher filled with fresh water." -value: 5 -stackable: false diff --git a/data/items/plant_pot.yaml b/data/items/plant_pot.yaml new file mode 100644 index 0000000..2f81e08 --- /dev/null +++ b/data/items/plant_pot.yaml @@ -0,0 +1,5 @@ +id: plant_pot +name: plant pot +color: "130" +description: "A clay plant pot for growing plants." +value: 5 diff --git a/data/items/raw_beef.yaml b/data/items/raw_beef.yaml new file mode 100644 index 0000000..59695b0 --- /dev/null +++ b/data/items/raw_beef.yaml @@ -0,0 +1,6 @@ +id: raw_beef +name: raw beef +color: "196" +description: "A slab of raw beef." +value: 2 +stackable: false diff --git a/data/items/ring_mould.yaml b/data/items/ring_mould.yaml new file mode 100644 index 0000000..d7846c8 --- /dev/null +++ b/data/items/ring_mould.yaml @@ -0,0 +1,5 @@ +id: ring_mould +name: ring mould +color: "250" +description: "A mould for casting rings." +value: 5 diff --git a/data/items/ruby.yaml b/data/items/ruby.yaml new file mode 100644 index 0000000..644e1bf --- /dev/null +++ b/data/items/ruby.yaml @@ -0,0 +1,6 @@ +id: ruby +name: ruby +color: "196" +description: "A beautifully cut ruby." +value: 200 +stackable: false diff --git a/data/items/ruby_amulet_u.yaml b/data/items/ruby_amulet_u.yaml new file mode 100644 index 0000000..031bf8b --- /dev/null +++ b/data/items/ruby_amulet_u.yaml @@ -0,0 +1,5 @@ +id: ruby_amulet_u +name: ruby amulet (u) +color: "196" +description: "An unstrung gold amulet set with a ruby." +value: 145 diff --git a/data/items/ruby_bracelet.yaml b/data/items/ruby_bracelet.yaml new file mode 100644 index 0000000..4a9a509 --- /dev/null +++ b/data/items/ruby_bracelet.yaml @@ -0,0 +1,6 @@ +id: ruby_bracelet +name: ruby bracelet +color: "196" +description: "A gold bracelet set with a ruby." +value: 140 +equip_slot: hands diff --git a/data/items/ruby_necklace.yaml b/data/items/ruby_necklace.yaml new file mode 100644 index 0000000..2c1315d --- /dev/null +++ b/data/items/ruby_necklace.yaml @@ -0,0 +1,6 @@ +id: ruby_necklace +name: ruby necklace +color: "196" +description: "A gold necklace set with a ruby." +value: 135 +equip_slot: neck diff --git a/data/items/ruby_ring.yaml b/data/items/ruby_ring.yaml new file mode 100644 index 0000000..9582c0a --- /dev/null +++ b/data/items/ruby_ring.yaml @@ -0,0 +1,6 @@ +id: ruby_ring +name: ruby ring +color: "196" +description: "A gold ring set with a ruby." +value: 130 +equip_slot: ring diff --git a/data/items/sapphire.yaml b/data/items/sapphire.yaml new file mode 100644 index 0000000..9710d45 --- /dev/null +++ b/data/items/sapphire.yaml @@ -0,0 +1,6 @@ +id: sapphire +name: sapphire +color: "69" +description: "A beautifully cut sapphire." +value: 50 +stackable: false diff --git a/data/items/sapphire_amulet_u.yaml b/data/items/sapphire_amulet_u.yaml new file mode 100644 index 0000000..22ef39c --- /dev/null +++ b/data/items/sapphire_amulet_u.yaml @@ -0,0 +1,5 @@ +id: sapphire_amulet_u +name: sapphire amulet (u) +color: "69" +description: "An unstrung gold amulet set with a sapphire." +value: 100 diff --git a/data/items/sapphire_bracelet.yaml b/data/items/sapphire_bracelet.yaml new file mode 100644 index 0000000..54d7c45 --- /dev/null +++ b/data/items/sapphire_bracelet.yaml @@ -0,0 +1,6 @@ +id: sapphire_bracelet +name: sapphire bracelet +color: "69" +description: "A gold bracelet set with a sapphire." +value: 95 +equip_slot: hands diff --git a/data/items/sapphire_necklace.yaml b/data/items/sapphire_necklace.yaml new file mode 100644 index 0000000..80deb37 --- /dev/null +++ b/data/items/sapphire_necklace.yaml @@ -0,0 +1,6 @@ +id: sapphire_necklace +name: sapphire necklace +color: "69" +description: "A gold necklace set with a sapphire." +value: 90 +equip_slot: neck diff --git a/data/items/sapphire_ring.yaml b/data/items/sapphire_ring.yaml new file mode 100644 index 0000000..013a730 --- /dev/null +++ b/data/items/sapphire_ring.yaml @@ -0,0 +1,6 @@ +id: sapphire_ring +name: sapphire ring +color: "69" +description: "A gold ring set with a sapphire." +value: 80 +equip_slot: ring diff --git a/data/items/shears.yaml b/data/items/shears.yaml new file mode 100644 index 0000000..4166be3 --- /dev/null +++ b/data/items/shears.yaml @@ -0,0 +1,6 @@ +id: shears +name: shears +color: "250" +description: "A pair of shears for shearing sheep." +value: 5 +tool_type: shears diff --git a/data/items/soft_clay.yaml b/data/items/soft_clay.yaml new file mode 100644 index 0000000..1ba07e3 --- /dev/null +++ b/data/items/soft_clay.yaml @@ -0,0 +1,13 @@ +id: soft_clay +name: soft clay +color: "173" +description: "Soft, workable clay ready for shaping on a pottery wheel." +value: 2 +stackable: false +ticks: 2 +made_from: + - items: [clay] + qty: 1 + - items: [bucket_of_water, jug_of_water] + qty: 1 + byproducts: [empty_bucket, empty_jug] diff --git a/data/items/thread.yaml b/data/items/thread.yaml new file mode 100644 index 0000000..3a9a4f7 --- /dev/null +++ b/data/items/thread.yaml @@ -0,0 +1,6 @@ +id: thread +name: thread +color: "230" +description: "A spool of thread used for leatherworking." +value: 1 +stackable: true diff --git a/data/items/uncut_diamond.yaml b/data/items/uncut_diamond.yaml index 48d8e6f..cf41d70 100644 --- a/data/items/uncut_diamond.yaml +++ b/data/items/uncut_diamond.yaml @@ -1,6 +1,6 @@ id: uncut_diamond name: uncut diamond color: "255" -description: "An uncut diamond. Can be cut into bolt tips with a chisel." +description: "An uncut diamond. Can be cut with a chisel." value: 200 stackable: false diff --git a/data/items/uncut_emerald.yaml b/data/items/uncut_emerald.yaml index 5fd5015..1ea217a 100644 --- a/data/items/uncut_emerald.yaml +++ b/data/items/uncut_emerald.yaml @@ -1,6 +1,6 @@ id: uncut_emerald name: uncut emerald color: "83" -description: "An uncut emerald. Can be cut into bolt tips with a chisel." +description: "An uncut emerald. Can be cut with a chisel." value: 50 stackable: false diff --git a/data/items/uncut_ruby.yaml b/data/items/uncut_ruby.yaml index b4912b8..dfa8188 100644 --- a/data/items/uncut_ruby.yaml +++ b/data/items/uncut_ruby.yaml @@ -1,6 +1,6 @@ id: uncut_ruby name: uncut ruby color: "196" -description: "An uncut ruby. Can be cut into bolt tips with a chisel." +description: "An uncut ruby. Can be cut with a chisel." value: 100 stackable: false diff --git a/data/items/uncut_sapphire.yaml b/data/items/uncut_sapphire.yaml index eb0e51d..bf073fa 100644 --- a/data/items/uncut_sapphire.yaml +++ b/data/items/uncut_sapphire.yaml @@ -1,6 +1,6 @@ id: uncut_sapphire name: uncut sapphire color: "69" -description: "An uncut sapphire. Can be cut into bolt tips with a chisel." +description: "An uncut sapphire. Can be cut with a chisel." value: 25 stackable: false diff --git a/data/items/unfired_pie_dish.yaml b/data/items/unfired_pie_dish.yaml new file mode 100644 index 0000000..fddc4d1 --- /dev/null +++ b/data/items/unfired_pie_dish.yaml @@ -0,0 +1,5 @@ +id: unfired_pie_dish +name: unfired pie dish +color: "173" +description: "An unfired clay pie dish. It needs to be fired in a pottery oven." +value: 1 diff --git a/data/items/unfired_plant_pot.yaml b/data/items/unfired_plant_pot.yaml new file mode 100644 index 0000000..c088242 --- /dev/null +++ b/data/items/unfired_plant_pot.yaml @@ -0,0 +1,5 @@ +id: unfired_plant_pot +name: unfired plant pot +color: "173" +description: "An unfired clay plant pot. It needs to be fired in a pottery oven." +value: 1 diff --git a/data/items/unfired_pot.yaml b/data/items/unfired_pot.yaml new file mode 100644 index 0000000..265a19f --- /dev/null +++ b/data/items/unfired_pot.yaml @@ -0,0 +1,5 @@ +id: unfired_pot +name: unfired pot +color: "173" +description: "An unfired clay pot. It needs to be fired in a pottery oven." +value: 1 diff --git a/data/items/wool.yaml b/data/items/wool.yaml new file mode 100644 index 0000000..f557aaf --- /dev/null +++ b/data/items/wool.yaml @@ -0,0 +1,6 @@ +id: wool +name: wool +color: "255" +description: "A tuft of sheep's wool. Can be spun into a ball of wool." +value: 1 +stackable: false -- cgit v1.2.3