diff options
| author | workhorse <workhorse@localhost.localdomain> | 2026-06-19 20:24:52 -0400 |
|---|---|---|
| committer | workhorse <workhorse@localhost.localdomain> | 2026-06-19 20:24:52 -0400 |
| commit | 8ee8982b8759bcae116647cc993867f4c8b0a6ce (patch) | |
| tree | ee01f7b1d745cbc94d9981108a1209527487b3e5 /data/recipes/cooking | |
| parent | 2bec24859af8f03c80a0a58e3240519942450167 (diff) | |
| download | thehouseoficarus-8ee8982b8759bcae116647cc993867f4c8b0a6ce.tar.gz | |
reorganized items, objects, and rooms in directories. oranized module names. added startup checks.
Diffstat (limited to 'data/recipes/cooking')
| -rw-r--r-- | data/recipes/cooking/cook_anchovies.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_bread.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_herring.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_salmon.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_sardine.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_shrimps.yaml | 13 | ||||
| -rw-r--r-- | data/recipes/cooking/cook_trout.yaml | 13 |
7 files changed, 91 insertions, 0 deletions
diff --git a/data/recipes/cooking/cook_anchovies.yaml b/data/recipes/cooking/cook_anchovies.yaml new file mode 100644 index 0000000..bd4ea41 --- /dev/null +++ b/data/recipes/cooking/cook_anchovies.yaml @@ -0,0 +1,13 @@ +id: cook_anchovies +type: cooking +level: 1 +xp: 30 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_anchovies] + quantity: 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/cooking/cook_bread.yaml b/data/recipes/cooking/cook_bread.yaml new file mode 100644 index 0000000..d1c68bf --- /dev/null +++ b/data/recipes/cooking/cook_bread.yaml @@ -0,0 +1,13 @@ +id: cook_bread +type: cooking +level: 1 +xp: 40 +wait: 6 +station: [cooking_range] +consume: + - items: [bread_dough] + quantity: 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/cooking/cook_herring.yaml b/data/recipes/cooking/cook_herring.yaml new file mode 100644 index 0000000..3113092 --- /dev/null +++ b/data/recipes/cooking/cook_herring.yaml @@ -0,0 +1,13 @@ +id: cook_herring +type: cooking +level: 5 +xp: 50 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_herring] + quantity: 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/cooking/cook_salmon.yaml b/data/recipes/cooking/cook_salmon.yaml new file mode 100644 index 0000000..32c0fb0 --- /dev/null +++ b/data/recipes/cooking/cook_salmon.yaml @@ -0,0 +1,13 @@ +id: cook_salmon +type: cooking +level: 25 +xp: 90 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_salmon] + quantity: 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/cooking/cook_sardine.yaml b/data/recipes/cooking/cook_sardine.yaml new file mode 100644 index 0000000..fcda9b5 --- /dev/null +++ b/data/recipes/cooking/cook_sardine.yaml @@ -0,0 +1,13 @@ +id: cook_sardine +type: cooking +level: 1 +xp: 40 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_sardine] + quantity: 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/cooking/cook_shrimps.yaml b/data/recipes/cooking/cook_shrimps.yaml new file mode 100644 index 0000000..feb4506 --- /dev/null +++ b/data/recipes/cooking/cook_shrimps.yaml @@ -0,0 +1,13 @@ +id: cook_shrimps +type: cooking +level: 1 +xp: 30 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_shrimps] + quantity: 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/cooking/cook_trout.yaml b/data/recipes/cooking/cook_trout.yaml new file mode 100644 index 0000000..cec6cd4 --- /dev/null +++ b/data/recipes/cooking/cook_trout.yaml @@ -0,0 +1,13 @@ +id: cook_trout +type: cooking +level: 15 +xp: 70 +wait: 6 +station: [fire, cooking_range] +consume: + - items: [raw_trout] + quantity: 1 +output: trout +fail: burnt_fish +message: "Cooked to perfection. It looks great!" +fail_message: "You accidentally burn the trout." |
