From 3a58125d14bb307f861b38c6c5b0a63babde7e08 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 13:28:06 -0400 Subject: feat: all skills kind of implemented, random prototype content added --- data/recipes/construct_mahogany_planks.yaml | 12 ++++++++++++ data/recipes/construct_mahogany_table.yaml | 11 +++++++++++ data/recipes/construct_oak_planks.yaml | 12 ++++++++++++ data/recipes/construct_oak_shelf.yaml | 11 +++++++++++ data/recipes/construct_oak_table.yaml | 11 +++++++++++ data/recipes/construct_planks.yaml | 12 ++++++++++++ data/recipes/construct_teak_planks.yaml | 12 ++++++++++++ data/recipes/construct_teak_table.yaml | 11 +++++++++++ data/recipes/construct_wooden_chair.yaml | 11 +++++++++++ data/recipes/construct_wooden_shelf.yaml | 11 +++++++++++ data/recipes/construct_wooden_table.yaml | 11 +++++++++++ 11 files changed, 125 insertions(+) create mode 100644 data/recipes/construct_mahogany_planks.yaml create mode 100644 data/recipes/construct_mahogany_table.yaml create mode 100644 data/recipes/construct_oak_planks.yaml create mode 100644 data/recipes/construct_oak_shelf.yaml create mode 100644 data/recipes/construct_oak_table.yaml create mode 100644 data/recipes/construct_planks.yaml create mode 100644 data/recipes/construct_teak_planks.yaml create mode 100644 data/recipes/construct_teak_table.yaml create mode 100644 data/recipes/construct_wooden_chair.yaml create mode 100644 data/recipes/construct_wooden_shelf.yaml create mode 100644 data/recipes/construct_wooden_table.yaml (limited to 'data/recipes') diff --git a/data/recipes/construct_mahogany_planks.yaml b/data/recipes/construct_mahogany_planks.yaml new file mode 100644 index 0000000..07e0f40 --- /dev/null +++ b/data/recipes/construct_mahogany_planks.yaml @@ -0,0 +1,12 @@ +id: construct_mahogany_planks +type: construction +level: 50 +xp: 30 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [mahogany_logs] + qty: 1 +output: mahogany_planks +message: "You saw the mahogany logs into luxurious mahogany planks." diff --git a/data/recipes/construct_mahogany_table.yaml b/data/recipes/construct_mahogany_table.yaml new file mode 100644 index 0000000..252736f --- /dev/null +++ b/data/recipes/construct_mahogany_table.yaml @@ -0,0 +1,11 @@ +id: construct_mahogany_table +type: construction +level: 52 +xp: 120 +wait: 6 +station: [workbench] +consume: + - items: [mahogany_planks] + qty: 3 +output: mahogany_table +message: "You build a luxurious mahogany table." diff --git a/data/recipes/construct_oak_planks.yaml b/data/recipes/construct_oak_planks.yaml new file mode 100644 index 0000000..5858208 --- /dev/null +++ b/data/recipes/construct_oak_planks.yaml @@ -0,0 +1,12 @@ +id: construct_oak_planks +type: construction +level: 15 +xp: 10 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [oak_logs] + qty: 1 +output: oak_planks +message: "You saw the oak logs into sturdy oak planks." diff --git a/data/recipes/construct_oak_shelf.yaml b/data/recipes/construct_oak_shelf.yaml new file mode 100644 index 0000000..8661679 --- /dev/null +++ b/data/recipes/construct_oak_shelf.yaml @@ -0,0 +1,11 @@ +id: construct_oak_shelf +type: construction +level: 18 +xp: 40 +wait: 6 +station: [workbench] +consume: + - items: [oak_planks] + qty: 2 +output: oak_shelf +message: "You assemble the oak planks into a sturdy shelf." diff --git a/data/recipes/construct_oak_table.yaml b/data/recipes/construct_oak_table.yaml new file mode 100644 index 0000000..e8eff24 --- /dev/null +++ b/data/recipes/construct_oak_table.yaml @@ -0,0 +1,11 @@ +id: construct_oak_table +type: construction +level: 20 +xp: 50 +wait: 6 +station: [workbench] +consume: + - items: [oak_planks] + qty: 3 +output: oak_table +message: "You build a fine oak table." diff --git a/data/recipes/construct_planks.yaml b/data/recipes/construct_planks.yaml new file mode 100644 index 0000000..4a2a363 --- /dev/null +++ b/data/recipes/construct_planks.yaml @@ -0,0 +1,12 @@ +id: construct_planks +type: construction +level: 1 +xp: 5 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [logs] + qty: 1 +output: planks +message: "You saw the logs into some regular planks." diff --git a/data/recipes/construct_teak_planks.yaml b/data/recipes/construct_teak_planks.yaml new file mode 100644 index 0000000..022ff7f --- /dev/null +++ b/data/recipes/construct_teak_planks.yaml @@ -0,0 +1,12 @@ +id: construct_teak_planks +type: construction +level: 35 +xp: 20 +wait: 20 +station: [workbench] +tool: saw +consume: + - items: [teak_logs] + qty: 1 +output: teak_planks +message: "You saw the teak logs into fine teak planks." diff --git a/data/recipes/construct_teak_table.yaml b/data/recipes/construct_teak_table.yaml new file mode 100644 index 0000000..db926b8 --- /dev/null +++ b/data/recipes/construct_teak_table.yaml @@ -0,0 +1,11 @@ +id: construct_teak_table +type: construction +level: 38 +xp: 80 +wait: 6 +station: [workbench] +consume: + - items: [teak_planks] + qty: 3 +output: teak_table +message: "You build an elegant teak table." diff --git a/data/recipes/construct_wooden_chair.yaml b/data/recipes/construct_wooden_chair.yaml new file mode 100644 index 0000000..cad6200 --- /dev/null +++ b/data/recipes/construct_wooden_chair.yaml @@ -0,0 +1,11 @@ +id: construct_wooden_chair +type: construction +level: 8 +xp: 30 +wait: 6 +station: [workbench] +consume: + - items: [planks] + qty: 2 +output: wooden_chair +message: "You craft a comfortable wooden chair." diff --git a/data/recipes/construct_wooden_shelf.yaml b/data/recipes/construct_wooden_shelf.yaml new file mode 100644 index 0000000..f09a199 --- /dev/null +++ b/data/recipes/construct_wooden_shelf.yaml @@ -0,0 +1,11 @@ +id: construct_wooden_shelf +type: construction +level: 4 +xp: 20 +wait: 6 +station: [workbench] +consume: + - items: [planks] + qty: 2 +output: wooden_shelf +message: "You assemble the planks into a wooden shelf." diff --git a/data/recipes/construct_wooden_table.yaml b/data/recipes/construct_wooden_table.yaml new file mode 100644 index 0000000..8451f31 --- /dev/null +++ b/data/recipes/construct_wooden_table.yaml @@ -0,0 +1,11 @@ +id: construct_wooden_table +type: construction +level: 6 +xp: 25 +wait: 6 +station: [workbench] +consume: + - items: [planks] + qty: 3 +output: wooden_table +message: "You build a sturdy wooden table." -- cgit v1.2.3