From e4400c5f1e84c18d2126f2cb502ae10685977cbb Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 20 Jun 2026 03:20:01 -0400 Subject: refactor: combined all station crafting --- data/recipes/construction/construct_mahogany_planks.yaml | 12 ------------ data/recipes/construction/construct_mahogany_table.yaml | 11 ----------- data/recipes/construction/construct_oak_planks.yaml | 12 ------------ data/recipes/construction/construct_oak_shelf.yaml | 11 ----------- data/recipes/construction/construct_oak_table.yaml | 11 ----------- data/recipes/construction/construct_planks.yaml | 12 ------------ data/recipes/construction/construct_teak_planks.yaml | 12 ------------ data/recipes/construction/construct_teak_table.yaml | 11 ----------- data/recipes/construction/construct_wooden_chair.yaml | 11 ----------- data/recipes/construction/construct_wooden_shelf.yaml | 11 ----------- data/recipes/construction/construct_wooden_table.yaml | 11 ----------- data/recipes/construction/mahogany_planks.yaml | 12 ++++++++++++ data/recipes/construction/mahogany_table.yaml | 11 +++++++++++ data/recipes/construction/oak_planks.yaml | 12 ++++++++++++ data/recipes/construction/oak_shelf.yaml | 11 +++++++++++ data/recipes/construction/oak_table.yaml | 11 +++++++++++ data/recipes/construction/planks.yaml | 12 ++++++++++++ data/recipes/construction/teak_planks.yaml | 12 ++++++++++++ data/recipes/construction/teak_table.yaml | 11 +++++++++++ data/recipes/construction/wooden_chair.yaml | 11 +++++++++++ data/recipes/construction/wooden_shelf.yaml | 11 +++++++++++ data/recipes/construction/wooden_table.yaml | 11 +++++++++++ 22 files changed, 125 insertions(+), 125 deletions(-) delete mode 100644 data/recipes/construction/construct_mahogany_planks.yaml delete mode 100644 data/recipes/construction/construct_mahogany_table.yaml delete mode 100644 data/recipes/construction/construct_oak_planks.yaml delete mode 100644 data/recipes/construction/construct_oak_shelf.yaml delete mode 100644 data/recipes/construction/construct_oak_table.yaml delete mode 100644 data/recipes/construction/construct_planks.yaml delete mode 100644 data/recipes/construction/construct_teak_planks.yaml delete mode 100644 data/recipes/construction/construct_teak_table.yaml delete mode 100644 data/recipes/construction/construct_wooden_chair.yaml delete mode 100644 data/recipes/construction/construct_wooden_shelf.yaml delete mode 100644 data/recipes/construction/construct_wooden_table.yaml create mode 100644 data/recipes/construction/mahogany_planks.yaml create mode 100644 data/recipes/construction/mahogany_table.yaml create mode 100644 data/recipes/construction/oak_planks.yaml create mode 100644 data/recipes/construction/oak_shelf.yaml create mode 100644 data/recipes/construction/oak_table.yaml create mode 100644 data/recipes/construction/planks.yaml create mode 100644 data/recipes/construction/teak_planks.yaml create mode 100644 data/recipes/construction/teak_table.yaml create mode 100644 data/recipes/construction/wooden_chair.yaml create mode 100644 data/recipes/construction/wooden_shelf.yaml create mode 100644 data/recipes/construction/wooden_table.yaml (limited to 'data/recipes/construction') diff --git a/data/recipes/construction/construct_mahogany_planks.yaml b/data/recipes/construction/construct_mahogany_planks.yaml deleted file mode 100644 index 6634f78..0000000 --- a/data/recipes/construction/construct_mahogany_planks.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: construct_mahogany_planks -type: construction -level: 50 -xp: 30 -wait: 20 -station: [workbench] -tool: saw -consume: - - items: [mahogany_logs] - quantity: 1 -output: mahogany_planks -message: "You saw the mahogany logs into luxurious mahogany planks." diff --git a/data/recipes/construction/construct_mahogany_table.yaml b/data/recipes/construction/construct_mahogany_table.yaml deleted file mode 100644 index 89d08e4..0000000 --- a/data/recipes/construction/construct_mahogany_table.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_mahogany_table -type: construction -level: 52 -xp: 120 -wait: 6 -station: [workbench] -consume: - - items: [mahogany_planks] - quantity: 3 -output: mahogany_table -message: "You build a luxurious mahogany table." diff --git a/data/recipes/construction/construct_oak_planks.yaml b/data/recipes/construction/construct_oak_planks.yaml deleted file mode 100644 index 77c2fcb..0000000 --- a/data/recipes/construction/construct_oak_planks.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: construct_oak_planks -type: construction -level: 15 -xp: 10 -wait: 20 -station: [workbench] -tool: saw -consume: - - items: [oak_logs] - quantity: 1 -output: oak_planks -message: "You saw the oak logs into sturdy oak planks." diff --git a/data/recipes/construction/construct_oak_shelf.yaml b/data/recipes/construction/construct_oak_shelf.yaml deleted file mode 100644 index 042e64f..0000000 --- a/data/recipes/construction/construct_oak_shelf.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_oak_shelf -type: construction -level: 18 -xp: 40 -wait: 6 -station: [workbench] -consume: - - items: [oak_planks] - quantity: 2 -output: oak_shelf -message: "You assemble the oak planks into a sturdy shelf." diff --git a/data/recipes/construction/construct_oak_table.yaml b/data/recipes/construction/construct_oak_table.yaml deleted file mode 100644 index 8eafe15..0000000 --- a/data/recipes/construction/construct_oak_table.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_oak_table -type: construction -level: 20 -xp: 50 -wait: 6 -station: [workbench] -consume: - - items: [oak_planks] - quantity: 3 -output: oak_table -message: "You build a fine oak table." diff --git a/data/recipes/construction/construct_planks.yaml b/data/recipes/construction/construct_planks.yaml deleted file mode 100644 index 3ed8058..0000000 --- a/data/recipes/construction/construct_planks.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: construct_planks -type: construction -level: 1 -xp: 5 -wait: 20 -station: [workbench] -tool: saw -consume: - - items: [logs] - quantity: 1 -output: planks -message: "You saw the logs into some regular planks." diff --git a/data/recipes/construction/construct_teak_planks.yaml b/data/recipes/construction/construct_teak_planks.yaml deleted file mode 100644 index aec0888..0000000 --- a/data/recipes/construction/construct_teak_planks.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: construct_teak_planks -type: construction -level: 35 -xp: 20 -wait: 20 -station: [workbench] -tool: saw -consume: - - items: [teak_logs] - quantity: 1 -output: teak_planks -message: "You saw the teak logs into fine teak planks." diff --git a/data/recipes/construction/construct_teak_table.yaml b/data/recipes/construction/construct_teak_table.yaml deleted file mode 100644 index 88d4a2a..0000000 --- a/data/recipes/construction/construct_teak_table.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_teak_table -type: construction -level: 38 -xp: 80 -wait: 6 -station: [workbench] -consume: - - items: [teak_planks] - quantity: 3 -output: teak_table -message: "You build an elegant teak table." diff --git a/data/recipes/construction/construct_wooden_chair.yaml b/data/recipes/construction/construct_wooden_chair.yaml deleted file mode 100644 index 3a9120d..0000000 --- a/data/recipes/construction/construct_wooden_chair.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_wooden_chair -type: construction -level: 8 -xp: 30 -wait: 6 -station: [workbench] -consume: - - items: [planks] - quantity: 2 -output: wooden_chair -message: "You craft a comfortable wooden chair." diff --git a/data/recipes/construction/construct_wooden_shelf.yaml b/data/recipes/construction/construct_wooden_shelf.yaml deleted file mode 100644 index c8ea836..0000000 --- a/data/recipes/construction/construct_wooden_shelf.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_wooden_shelf -type: construction -level: 4 -xp: 20 -wait: 6 -station: [workbench] -consume: - - items: [planks] - quantity: 2 -output: wooden_shelf -message: "You assemble the planks into a wooden shelf." diff --git a/data/recipes/construction/construct_wooden_table.yaml b/data/recipes/construction/construct_wooden_table.yaml deleted file mode 100644 index 21d6c53..0000000 --- a/data/recipes/construction/construct_wooden_table.yaml +++ /dev/null @@ -1,11 +0,0 @@ -id: construct_wooden_table -type: construction -level: 6 -xp: 25 -wait: 6 -station: [workbench] -consume: - - items: [planks] - quantity: 3 -output: wooden_table -message: "You build a sturdy wooden table." diff --git a/data/recipes/construction/mahogany_planks.yaml b/data/recipes/construction/mahogany_planks.yaml new file mode 100644 index 0000000..3008a07 --- /dev/null +++ b/data/recipes/construction/mahogany_planks.yaml @@ -0,0 +1,12 @@ +id: mahogany_planks +type: construction +level: 50 +xp: 30 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [mahogany_logs] + quantity: 1 +output: mahogany_planks +message: "You saw the mahogany logs into luxurious mahogany planks." diff --git a/data/recipes/construction/mahogany_table.yaml b/data/recipes/construction/mahogany_table.yaml new file mode 100644 index 0000000..4b08c06 --- /dev/null +++ b/data/recipes/construction/mahogany_table.yaml @@ -0,0 +1,11 @@ +id: mahogany_table +type: construction +level: 52 +xp: 120 +wait: 6 +station: [workbench] +consume: + - items: [mahogany_planks] + quantity: 3 +output: mahogany_table +message: "You build a luxurious mahogany table." diff --git a/data/recipes/construction/oak_planks.yaml b/data/recipes/construction/oak_planks.yaml new file mode 100644 index 0000000..da50f88 --- /dev/null +++ b/data/recipes/construction/oak_planks.yaml @@ -0,0 +1,12 @@ +id: oak_planks +type: construction +level: 15 +xp: 10 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [oak_logs] + quantity: 1 +output: oak_planks +message: "You saw the oak logs into sturdy oak planks." diff --git a/data/recipes/construction/oak_shelf.yaml b/data/recipes/construction/oak_shelf.yaml new file mode 100644 index 0000000..c9f6242 --- /dev/null +++ b/data/recipes/construction/oak_shelf.yaml @@ -0,0 +1,11 @@ +id: oak_shelf +type: construction +level: 18 +xp: 40 +wait: 6 +station: [workbench] +consume: + - items: [oak_planks] + quantity: 2 +output: oak_shelf +message: "You assemble the oak planks into a sturdy shelf." diff --git a/data/recipes/construction/oak_table.yaml b/data/recipes/construction/oak_table.yaml new file mode 100644 index 0000000..6428200 --- /dev/null +++ b/data/recipes/construction/oak_table.yaml @@ -0,0 +1,11 @@ +id: oak_table +type: construction +level: 20 +xp: 50 +wait: 6 +station: [workbench] +consume: + - items: [oak_planks] + quantity: 3 +output: oak_table +message: "You build a fine oak table." diff --git a/data/recipes/construction/planks.yaml b/data/recipes/construction/planks.yaml new file mode 100644 index 0000000..9d202ff --- /dev/null +++ b/data/recipes/construction/planks.yaml @@ -0,0 +1,12 @@ +id: planks +type: construction +level: 1 +xp: 5 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [logs] + quantity: 1 +output: planks +message: "You saw the logs into some regular planks." diff --git a/data/recipes/construction/teak_planks.yaml b/data/recipes/construction/teak_planks.yaml new file mode 100644 index 0000000..1780d8b --- /dev/null +++ b/data/recipes/construction/teak_planks.yaml @@ -0,0 +1,12 @@ +id: teak_planks +type: construction +level: 35 +xp: 20 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [teak_logs] + quantity: 1 +output: teak_planks +message: "You saw the teak logs into fine teak planks." diff --git a/data/recipes/construction/teak_table.yaml b/data/recipes/construction/teak_table.yaml new file mode 100644 index 0000000..ce579e1 --- /dev/null +++ b/data/recipes/construction/teak_table.yaml @@ -0,0 +1,11 @@ +id: teak_table +type: construction +level: 38 +xp: 80 +wait: 6 +station: [workbench] +consume: + - items: [teak_planks] + quantity: 3 +output: teak_table +message: "You build an elegant teak table." diff --git a/data/recipes/construction/wooden_chair.yaml b/data/recipes/construction/wooden_chair.yaml new file mode 100644 index 0000000..a1db252 --- /dev/null +++ b/data/recipes/construction/wooden_chair.yaml @@ -0,0 +1,11 @@ +id: wooden_chair +type: construction +level: 8 +xp: 30 +wait: 6 +station: [workbench] +consume: + - items: [planks] + quantity: 2 +output: wooden_chair +message: "You craft a comfortable wooden chair." diff --git a/data/recipes/construction/wooden_shelf.yaml b/data/recipes/construction/wooden_shelf.yaml new file mode 100644 index 0000000..3ea97cc --- /dev/null +++ b/data/recipes/construction/wooden_shelf.yaml @@ -0,0 +1,11 @@ +id: wooden_shelf +type: construction +level: 4 +xp: 20 +wait: 6 +station: [workbench] +consume: + - items: [planks] + quantity: 2 +output: wooden_shelf +message: "You assemble the planks into a wooden shelf." diff --git a/data/recipes/construction/wooden_table.yaml b/data/recipes/construction/wooden_table.yaml new file mode 100644 index 0000000..73050a7 --- /dev/null +++ b/data/recipes/construction/wooden_table.yaml @@ -0,0 +1,11 @@ +id: wooden_table +type: construction +level: 6 +xp: 25 +wait: 6 +station: [workbench] +consume: + - items: [planks] + quantity: 3 +output: wooden_table +message: "You build a sturdy wooden table." -- cgit v1.2.3