aboutsummaryrefslogtreecommitdiff
path: root/data/recipes
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-16 04:17:43 -0400
committerhistoria <[not public]>2026-06-16 04:17:43 -0400
commit085e728d22a3369bd110b77409914cfbe9ebe611 (patch)
treeeeb88cb1ceb91cc9ea2b5a1877c3c66328fab503 /data/recipes
parent43f21aabae8924f35c12c8485e690aeefe0089fb (diff)
downloadthehouseoficarus-085e728d22a3369bd110b77409914cfbe9ebe611.tar.gz
feat: recipe system, combining items, cooking skill
Diffstat (limited to 'data/recipes')
-rw-r--r--data/recipes/cook_anchovies.yaml14
-rw-r--r--data/recipes/cook_bread.yaml14
-rw-r--r--data/recipes/cook_herring.yaml14
-rw-r--r--data/recipes/cook_salmon.yaml14
-rw-r--r--data/recipes/cook_sardine.yaml14
-rw-r--r--data/recipes/cook_shrimps.yaml14
-rw-r--r--data/recipes/cook_trout.yaml14
7 files changed, 98 insertions, 0 deletions
diff --git a/data/recipes/cook_anchovies.yaml b/data/recipes/cook_anchovies.yaml
new file mode 100644
index 0000000..df04d01
--- /dev/null
+++ b/data/recipes/cook_anchovies.yaml
@@ -0,0 +1,14 @@
+id: cook_anchovies
+type: cooking
+skill: cooking
+level: 1
+xp: 30
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_anchovies]
+ qty: 1
+output: anchovies
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the anchovies."
diff --git a/data/recipes/cook_bread.yaml b/data/recipes/cook_bread.yaml
new file mode 100644
index 0000000..650525f
--- /dev/null
+++ b/data/recipes/cook_bread.yaml
@@ -0,0 +1,14 @@
+id: cook_bread
+type: cooking
+skill: cooking
+level: 1
+xp: 40
+wait: 6
+station: [cooking_range]
+consume:
+ - items: [bread_dough]
+ qty: 1
+output: bread
+fail: burnt_meat
+message: "You bake the dough into a fresh loaf of bread."
+fail_message: "You burn the bread to a crisp."
diff --git a/data/recipes/cook_herring.yaml b/data/recipes/cook_herring.yaml
new file mode 100644
index 0000000..7779ef0
--- /dev/null
+++ b/data/recipes/cook_herring.yaml
@@ -0,0 +1,14 @@
+id: cook_herring
+type: cooking
+skill: cooking
+level: 5
+xp: 50
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_herring]
+ qty: 1
+output: herring
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the herring."
diff --git a/data/recipes/cook_salmon.yaml b/data/recipes/cook_salmon.yaml
new file mode 100644
index 0000000..04ee40c
--- /dev/null
+++ b/data/recipes/cook_salmon.yaml
@@ -0,0 +1,14 @@
+id: cook_salmon
+type: cooking
+skill: cooking
+level: 25
+xp: 90
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_salmon]
+ qty: 1
+output: salmon
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the salmon."
diff --git a/data/recipes/cook_sardine.yaml b/data/recipes/cook_sardine.yaml
new file mode 100644
index 0000000..0ad6901
--- /dev/null
+++ b/data/recipes/cook_sardine.yaml
@@ -0,0 +1,14 @@
+id: cook_sardine
+type: cooking
+skill: cooking
+level: 1
+xp: 40
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_sardine]
+ qty: 1
+output: sardine
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the sardine."
diff --git a/data/recipes/cook_shrimps.yaml b/data/recipes/cook_shrimps.yaml
new file mode 100644
index 0000000..f38c1cd
--- /dev/null
+++ b/data/recipes/cook_shrimps.yaml
@@ -0,0 +1,14 @@
+id: cook_shrimps
+type: cooking
+skill: cooking
+level: 1
+xp: 30
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_shrimps]
+ qty: 1
+output: shrimps
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the shrimps."
diff --git a/data/recipes/cook_trout.yaml b/data/recipes/cook_trout.yaml
new file mode 100644
index 0000000..79df193
--- /dev/null
+++ b/data/recipes/cook_trout.yaml
@@ -0,0 +1,14 @@
+id: cook_trout
+type: cooking
+skill: cooking
+level: 15
+xp: 70
+wait: 6
+station: [fire, cooking_range]
+consume:
+ - items: [raw_trout]
+ qty: 1
+output: trout
+fail: burnt_fish
+message: "Cooked to perfection. It looks great!"
+fail_message: "You accidentally burn the trout."