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/objects/clay_rock.yaml | 3 ++- data/objects/pottery_oven.yaml | 4 ++++ data/objects/pottery_wheel.yaml | 4 ++++ data/objects/sheep.yaml | 6 ++++++ data/objects/spinning_wheel.yaml | 4 ++++ 5 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 data/objects/pottery_oven.yaml create mode 100644 data/objects/pottery_wheel.yaml create mode 100644 data/objects/sheep.yaml create mode 100644 data/objects/spinning_wheel.yaml (limited to 'data/objects') diff --git a/data/objects/clay_rock.yaml b/data/objects/clay_rock.yaml index dd87eba..8a69d3b 100644 --- a/data/objects/clay_rock.yaml +++ b/data/objects/clay_rock.yaml @@ -1,4 +1,5 @@ id: clay_rock -name: clay deposit +name: clay rock color: "173" behavior: mine_clay +description: "A soft rock of clay." diff --git a/data/objects/pottery_oven.yaml b/data/objects/pottery_oven.yaml new file mode 100644 index 0000000..c86e409 --- /dev/null +++ b/data/objects/pottery_oven.yaml @@ -0,0 +1,4 @@ +id: pottery_oven +name: pottery oven +color: "196" +description: "A kiln for firing pottery." diff --git a/data/objects/pottery_wheel.yaml b/data/objects/pottery_wheel.yaml new file mode 100644 index 0000000..cc2e225 --- /dev/null +++ b/data/objects/pottery_wheel.yaml @@ -0,0 +1,4 @@ +id: pottery_wheel +name: pottery wheel +color: "173" +description: "A foot-powered pottery wheel for shaping clay." diff --git a/data/objects/sheep.yaml b/data/objects/sheep.yaml new file mode 100644 index 0000000..2739c9c --- /dev/null +++ b/data/objects/sheep.yaml @@ -0,0 +1,6 @@ +id: sheep +name: sheep +color: "255" +behavior: shear_sheep +description: "A fluffy sheep, ready to be shorn." +inroom_description: "A fluffy sheep is wandering around here." diff --git a/data/objects/spinning_wheel.yaml b/data/objects/spinning_wheel.yaml new file mode 100644 index 0000000..683f0b6 --- /dev/null +++ b/data/objects/spinning_wheel.yaml @@ -0,0 +1,4 @@ +id: spinning_wheel +name: spinning wheel +color: "130" +description: "A wooden spinning wheel for spinning wool and flax." -- cgit v1.2.3