aboutsummaryrefslogtreecommitdiff
path: root/data/recipes
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-17 21:13:07 -0400
committerhistoria <[not public]>2026-06-17 21:13:07 -0400
commitec2e94e3463654a6288464a4c070b48ef9bf7368 (patch)
tree3c5df0f9a6a5968fa4c725a7d331825883ae798c /data/recipes
parenteef5ddaa94f8cff6010d092c30fed53d2be01524 (diff)
downloadthehouseoficarus-ec2e94e3463654a6288464a4c070b48ef9bf7368.tar.gz
feat: smithing added, item/object interaction reworked. recipes and menus refactored.
Diffstat (limited to 'data/recipes')
-rw-r--r--data/recipes/smith_adamant_arrowtips.yaml13
-rw-r--r--data/recipes/smith_adamant_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_adamant_dagger.yaml12
-rw-r--r--data/recipes/smith_adamant_full_helm.yaml12
-rw-r--r--data/recipes/smith_adamant_med_helm.yaml12
-rw-r--r--data/recipes/smith_adamant_nails.yaml13
-rw-r--r--data/recipes/smith_adamant_platebody.yaml12
-rw-r--r--data/recipes/smith_adamant_sword.yaml12
-rw-r--r--data/recipes/smith_bronze_arrowtips.yaml13
-rw-r--r--data/recipes/smith_bronze_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_bronze_dagger.yaml12
-rw-r--r--data/recipes/smith_bronze_full_helm.yaml12
-rw-r--r--data/recipes/smith_bronze_med_helm.yaml12
-rw-r--r--data/recipes/smith_bronze_nails.yaml13
-rw-r--r--data/recipes/smith_bronze_platebody.yaml12
-rw-r--r--data/recipes/smith_bronze_sword.yaml12
-rw-r--r--data/recipes/smith_iron_arrowtips.yaml13
-rw-r--r--data/recipes/smith_iron_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_iron_dagger.yaml12
-rw-r--r--data/recipes/smith_iron_full_helm.yaml12
-rw-r--r--data/recipes/smith_iron_med_helm.yaml12
-rw-r--r--data/recipes/smith_iron_nails.yaml13
-rw-r--r--data/recipes/smith_iron_platebody.yaml12
-rw-r--r--data/recipes/smith_iron_sword.yaml12
-rw-r--r--data/recipes/smith_mithril_arrowtips.yaml13
-rw-r--r--data/recipes/smith_mithril_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_mithril_dagger.yaml12
-rw-r--r--data/recipes/smith_mithril_full_helm.yaml12
-rw-r--r--data/recipes/smith_mithril_med_helm.yaml12
-rw-r--r--data/recipes/smith_mithril_nails.yaml13
-rw-r--r--data/recipes/smith_mithril_platebody.yaml12
-rw-r--r--data/recipes/smith_mithril_sword.yaml12
-rw-r--r--data/recipes/smith_rune_arrowtips.yaml13
-rw-r--r--data/recipes/smith_rune_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_rune_dagger.yaml12
-rw-r--r--data/recipes/smith_rune_full_helm.yaml12
-rw-r--r--data/recipes/smith_rune_med_helm.yaml12
-rw-r--r--data/recipes/smith_rune_nails.yaml13
-rw-r--r--data/recipes/smith_rune_platebody.yaml12
-rw-r--r--data/recipes/smith_rune_sword.yaml12
-rw-r--r--data/recipes/smith_steel_arrowtips.yaml13
-rw-r--r--data/recipes/smith_steel_bolts_unf.yaml13
-rw-r--r--data/recipes/smith_steel_dagger.yaml12
-rw-r--r--data/recipes/smith_steel_full_helm.yaml12
-rw-r--r--data/recipes/smith_steel_med_helm.yaml12
-rw-r--r--data/recipes/smith_steel_nails.yaml13
-rw-r--r--data/recipes/smith_steel_platebody.yaml12
-rw-r--r--data/recipes/smith_steel_sword.yaml12
48 files changed, 594 insertions, 0 deletions
diff --git a/data/recipes/smith_adamant_arrowtips.yaml b/data/recipes/smith_adamant_arrowtips.yaml
new file mode 100644
index 0000000..464feae
--- /dev/null
+++ b/data/recipes/smith_adamant_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_adamant_arrowtips
+type: smithing
+skill: smithing
+level: 75
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_arrowtips
+output_qty: 15
+message: "You hammer out some adamant arrowtips."
diff --git a/data/recipes/smith_adamant_bolts_unf.yaml b/data/recipes/smith_adamant_bolts_unf.yaml
new file mode 100644
index 0000000..4bf30bf
--- /dev/null
+++ b/data/recipes/smith_adamant_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_adamant_bolts_unf
+type: smithing
+skill: smithing
+level: 76
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_bolts_unf
+output_qty: 10
+message: "You hammer out some adamant bolts."
diff --git a/data/recipes/smith_adamant_dagger.yaml b/data/recipes/smith_adamant_dagger.yaml
new file mode 100644
index 0000000..38692b8
--- /dev/null
+++ b/data/recipes/smith_adamant_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_adamant_dagger
+type: smithing
+skill: smithing
+level: 70
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_dagger
+message: "You hammer out an adamant dagger."
diff --git a/data/recipes/smith_adamant_full_helm.yaml b/data/recipes/smith_adamant_full_helm.yaml
new file mode 100644
index 0000000..b478da2
--- /dev/null
+++ b/data/recipes/smith_adamant_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_adamant_full_helm
+type: smithing
+skill: smithing
+level: 77
+xp: 125
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 2
+output: adamant_full_helm
+message: "You hammer out an adamant full helm."
diff --git a/data/recipes/smith_adamant_med_helm.yaml b/data/recipes/smith_adamant_med_helm.yaml
new file mode 100644
index 0000000..064064f
--- /dev/null
+++ b/data/recipes/smith_adamant_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_adamant_med_helm
+type: smithing
+skill: smithing
+level: 73
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_med_helm
+message: "You hammer out an adamant med helm."
diff --git a/data/recipes/smith_adamant_nails.yaml b/data/recipes/smith_adamant_nails.yaml
new file mode 100644
index 0000000..418c277
--- /dev/null
+++ b/data/recipes/smith_adamant_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_adamant_nails
+type: smithing
+skill: smithing
+level: 74
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_nails
+output_qty: 15
+message: "You hammer out some adamant nails."
diff --git a/data/recipes/smith_adamant_platebody.yaml b/data/recipes/smith_adamant_platebody.yaml
new file mode 100644
index 0000000..81ad87d
--- /dev/null
+++ b/data/recipes/smith_adamant_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_adamant_platebody
+type: smithing
+skill: smithing
+level: 88
+xp: 312
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 5
+output: adamant_platebody
+message: "You hammer out an adamant platebody."
diff --git a/data/recipes/smith_adamant_sword.yaml b/data/recipes/smith_adamant_sword.yaml
new file mode 100644
index 0000000..1071623
--- /dev/null
+++ b/data/recipes/smith_adamant_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_adamant_sword
+type: smithing
+skill: smithing
+level: 74
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [adamantite_bar]
+ qty: 1
+output: adamant_sword
+message: "You hammer out an adamant sword."
diff --git a/data/recipes/smith_bronze_arrowtips.yaml b/data/recipes/smith_bronze_arrowtips.yaml
new file mode 100644
index 0000000..1f29a33
--- /dev/null
+++ b/data/recipes/smith_bronze_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_bronze_arrowtips
+type: smithing
+skill: smithing
+level: 5
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_arrowtips
+output_qty: 15
+message: "You hammer out some bronze arrowtips."
diff --git a/data/recipes/smith_bronze_bolts_unf.yaml b/data/recipes/smith_bronze_bolts_unf.yaml
new file mode 100644
index 0000000..f43218a
--- /dev/null
+++ b/data/recipes/smith_bronze_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_bronze_bolts_unf
+type: smithing
+skill: smithing
+level: 6
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_bolts_unf
+output_qty: 10
+message: "You hammer out some bronze bolts."
diff --git a/data/recipes/smith_bronze_dagger.yaml b/data/recipes/smith_bronze_dagger.yaml
new file mode 100644
index 0000000..4c6bfa9
--- /dev/null
+++ b/data/recipes/smith_bronze_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_bronze_dagger
+type: smithing
+skill: smithing
+level: 1
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_dagger
+message: "You hammer out a bronze dagger."
diff --git a/data/recipes/smith_bronze_full_helm.yaml b/data/recipes/smith_bronze_full_helm.yaml
new file mode 100644
index 0000000..159efdb
--- /dev/null
+++ b/data/recipes/smith_bronze_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_bronze_full_helm
+type: smithing
+skill: smithing
+level: 7
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 2
+output: bronze_full_helm
+message: "You hammer out a bronze full helm."
diff --git a/data/recipes/smith_bronze_med_helm.yaml b/data/recipes/smith_bronze_med_helm.yaml
new file mode 100644
index 0000000..7b6f248
--- /dev/null
+++ b/data/recipes/smith_bronze_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_bronze_med_helm
+type: smithing
+skill: smithing
+level: 3
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_med_helm
+message: "You hammer out a bronze med helm."
diff --git a/data/recipes/smith_bronze_nails.yaml b/data/recipes/smith_bronze_nails.yaml
new file mode 100644
index 0000000..5b0180b
--- /dev/null
+++ b/data/recipes/smith_bronze_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_bronze_nails
+type: smithing
+skill: smithing
+level: 4
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_nails
+output_qty: 15
+message: "You hammer out some bronze nails."
diff --git a/data/recipes/smith_bronze_platebody.yaml b/data/recipes/smith_bronze_platebody.yaml
new file mode 100644
index 0000000..70ba050
--- /dev/null
+++ b/data/recipes/smith_bronze_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_bronze_platebody
+type: smithing
+skill: smithing
+level: 18
+xp: 62
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 5
+output: bronze_platebody
+message: "You hammer out a bronze platebody."
diff --git a/data/recipes/smith_bronze_sword.yaml b/data/recipes/smith_bronze_sword.yaml
new file mode 100644
index 0000000..75179fd
--- /dev/null
+++ b/data/recipes/smith_bronze_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_bronze_sword
+type: smithing
+skill: smithing
+level: 4
+xp: 12
+wait: 4
+station: [anvil]
+consume:
+ - items: [bronze_bar]
+ qty: 1
+output: bronze_sword
+message: "You hammer out a bronze sword."
diff --git a/data/recipes/smith_iron_arrowtips.yaml b/data/recipes/smith_iron_arrowtips.yaml
new file mode 100644
index 0000000..dab4309
--- /dev/null
+++ b/data/recipes/smith_iron_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_iron_arrowtips
+type: smithing
+skill: smithing
+level: 25
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_arrowtips
+output_qty: 15
+message: "You hammer out some iron arrowtips."
diff --git a/data/recipes/smith_iron_bolts_unf.yaml b/data/recipes/smith_iron_bolts_unf.yaml
new file mode 100644
index 0000000..670c873
--- /dev/null
+++ b/data/recipes/smith_iron_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_iron_bolts_unf
+type: smithing
+skill: smithing
+level: 26
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_bolts_unf
+output_qty: 10
+message: "You hammer out some iron bolts."
diff --git a/data/recipes/smith_iron_dagger.yaml b/data/recipes/smith_iron_dagger.yaml
new file mode 100644
index 0000000..7d1e55c
--- /dev/null
+++ b/data/recipes/smith_iron_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_iron_dagger
+type: smithing
+skill: smithing
+level: 20
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_dagger
+message: "You hammer out an iron dagger."
diff --git a/data/recipes/smith_iron_full_helm.yaml b/data/recipes/smith_iron_full_helm.yaml
new file mode 100644
index 0000000..28bddc3
--- /dev/null
+++ b/data/recipes/smith_iron_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_iron_full_helm
+type: smithing
+skill: smithing
+level: 27
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 2
+output: iron_full_helm
+message: "You hammer out an iron full helm."
diff --git a/data/recipes/smith_iron_med_helm.yaml b/data/recipes/smith_iron_med_helm.yaml
new file mode 100644
index 0000000..a2340fc
--- /dev/null
+++ b/data/recipes/smith_iron_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_iron_med_helm
+type: smithing
+skill: smithing
+level: 22
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_med_helm
+message: "You hammer out an iron med helm."
diff --git a/data/recipes/smith_iron_nails.yaml b/data/recipes/smith_iron_nails.yaml
new file mode 100644
index 0000000..85fb039
--- /dev/null
+++ b/data/recipes/smith_iron_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_iron_nails
+type: smithing
+skill: smithing
+level: 24
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_nails
+output_qty: 15
+message: "You hammer out some iron nails."
diff --git a/data/recipes/smith_iron_platebody.yaml b/data/recipes/smith_iron_platebody.yaml
new file mode 100644
index 0000000..8050868
--- /dev/null
+++ b/data/recipes/smith_iron_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_iron_platebody
+type: smithing
+skill: smithing
+level: 33
+xp: 125
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 5
+output: iron_platebody
+message: "You hammer out an iron platebody."
diff --git a/data/recipes/smith_iron_sword.yaml b/data/recipes/smith_iron_sword.yaml
new file mode 100644
index 0000000..9eb3b50
--- /dev/null
+++ b/data/recipes/smith_iron_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_iron_sword
+type: smithing
+skill: smithing
+level: 24
+xp: 25
+wait: 4
+station: [anvil]
+consume:
+ - items: [iron_bar]
+ qty: 1
+output: iron_sword
+message: "You hammer out an iron sword."
diff --git a/data/recipes/smith_mithril_arrowtips.yaml b/data/recipes/smith_mithril_arrowtips.yaml
new file mode 100644
index 0000000..dd0edf4
--- /dev/null
+++ b/data/recipes/smith_mithril_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_mithril_arrowtips
+type: smithing
+skill: smithing
+level: 55
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_arrowtips
+output_qty: 15
+message: "You hammer out some mithril arrowtips."
diff --git a/data/recipes/smith_mithril_bolts_unf.yaml b/data/recipes/smith_mithril_bolts_unf.yaml
new file mode 100644
index 0000000..75a931c
--- /dev/null
+++ b/data/recipes/smith_mithril_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_mithril_bolts_unf
+type: smithing
+skill: smithing
+level: 56
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_bolts_unf
+output_qty: 10
+message: "You hammer out some mithril bolts."
diff --git a/data/recipes/smith_mithril_dagger.yaml b/data/recipes/smith_mithril_dagger.yaml
new file mode 100644
index 0000000..416776f
--- /dev/null
+++ b/data/recipes/smith_mithril_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_mithril_dagger
+type: smithing
+skill: smithing
+level: 50
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_dagger
+message: "You hammer out a mithril dagger."
diff --git a/data/recipes/smith_mithril_full_helm.yaml b/data/recipes/smith_mithril_full_helm.yaml
new file mode 100644
index 0000000..bef5645
--- /dev/null
+++ b/data/recipes/smith_mithril_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_mithril_full_helm
+type: smithing
+skill: smithing
+level: 57
+xp: 100
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 2
+output: mithril_full_helm
+message: "You hammer out a mithril full helm."
diff --git a/data/recipes/smith_mithril_med_helm.yaml b/data/recipes/smith_mithril_med_helm.yaml
new file mode 100644
index 0000000..57ef304
--- /dev/null
+++ b/data/recipes/smith_mithril_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_mithril_med_helm
+type: smithing
+skill: smithing
+level: 53
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_med_helm
+message: "You hammer out a mithril med helm."
diff --git a/data/recipes/smith_mithril_nails.yaml b/data/recipes/smith_mithril_nails.yaml
new file mode 100644
index 0000000..ddda12f
--- /dev/null
+++ b/data/recipes/smith_mithril_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_mithril_nails
+type: smithing
+skill: smithing
+level: 54
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_nails
+output_qty: 15
+message: "You hammer out some mithril nails."
diff --git a/data/recipes/smith_mithril_platebody.yaml b/data/recipes/smith_mithril_platebody.yaml
new file mode 100644
index 0000000..94048cc
--- /dev/null
+++ b/data/recipes/smith_mithril_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_mithril_platebody
+type: smithing
+skill: smithing
+level: 68
+xp: 250
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 5
+output: mithril_platebody
+message: "You hammer out a mithril platebody."
diff --git a/data/recipes/smith_mithril_sword.yaml b/data/recipes/smith_mithril_sword.yaml
new file mode 100644
index 0000000..ccc687d
--- /dev/null
+++ b/data/recipes/smith_mithril_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_mithril_sword
+type: smithing
+skill: smithing
+level: 54
+xp: 50
+wait: 4
+station: [anvil]
+consume:
+ - items: [mithril_bar]
+ qty: 1
+output: mithril_sword
+message: "You hammer out a mithril sword."
diff --git a/data/recipes/smith_rune_arrowtips.yaml b/data/recipes/smith_rune_arrowtips.yaml
new file mode 100644
index 0000000..a484371
--- /dev/null
+++ b/data/recipes/smith_rune_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_rune_arrowtips
+type: smithing
+skill: smithing
+level: 90
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_arrowtips
+output_qty: 15
+message: "You hammer out some rune arrowtips."
diff --git a/data/recipes/smith_rune_bolts_unf.yaml b/data/recipes/smith_rune_bolts_unf.yaml
new file mode 100644
index 0000000..f69fb82
--- /dev/null
+++ b/data/recipes/smith_rune_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_rune_bolts_unf
+type: smithing
+skill: smithing
+level: 91
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_bolts_unf
+output_qty: 10
+message: "You hammer out some rune bolts."
diff --git a/data/recipes/smith_rune_dagger.yaml b/data/recipes/smith_rune_dagger.yaml
new file mode 100644
index 0000000..e24c381
--- /dev/null
+++ b/data/recipes/smith_rune_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_rune_dagger
+type: smithing
+skill: smithing
+level: 85
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_dagger
+message: "You hammer out a rune dagger."
diff --git a/data/recipes/smith_rune_full_helm.yaml b/data/recipes/smith_rune_full_helm.yaml
new file mode 100644
index 0000000..6b69cb1
--- /dev/null
+++ b/data/recipes/smith_rune_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_rune_full_helm
+type: smithing
+skill: smithing
+level: 92
+xp: 150
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 2
+output: rune_full_helm
+message: "You hammer out a rune full helm."
diff --git a/data/recipes/smith_rune_med_helm.yaml b/data/recipes/smith_rune_med_helm.yaml
new file mode 100644
index 0000000..137c78f
--- /dev/null
+++ b/data/recipes/smith_rune_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_rune_med_helm
+type: smithing
+skill: smithing
+level: 88
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_med_helm
+message: "You hammer out a rune med helm."
diff --git a/data/recipes/smith_rune_nails.yaml b/data/recipes/smith_rune_nails.yaml
new file mode 100644
index 0000000..320e376
--- /dev/null
+++ b/data/recipes/smith_rune_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_rune_nails
+type: smithing
+skill: smithing
+level: 89
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_nails
+output_qty: 15
+message: "You hammer out some rune nails."
diff --git a/data/recipes/smith_rune_platebody.yaml b/data/recipes/smith_rune_platebody.yaml
new file mode 100644
index 0000000..7886afc
--- /dev/null
+++ b/data/recipes/smith_rune_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_rune_platebody
+type: smithing
+skill: smithing
+level: 99
+xp: 375
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 5
+output: rune_platebody
+message: "You hammer out a rune platebody."
diff --git a/data/recipes/smith_rune_sword.yaml b/data/recipes/smith_rune_sword.yaml
new file mode 100644
index 0000000..5ff3302
--- /dev/null
+++ b/data/recipes/smith_rune_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_rune_sword
+type: smithing
+skill: smithing
+level: 89
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [runite_bar]
+ qty: 1
+output: rune_sword
+message: "You hammer out a rune sword."
diff --git a/data/recipes/smith_steel_arrowtips.yaml b/data/recipes/smith_steel_arrowtips.yaml
new file mode 100644
index 0000000..5acb5c5
--- /dev/null
+++ b/data/recipes/smith_steel_arrowtips.yaml
@@ -0,0 +1,13 @@
+id: smith_steel_arrowtips
+type: smithing
+skill: smithing
+level: 35
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_arrowtips
+output_qty: 15
+message: "You hammer out some steel arrowtips."
diff --git a/data/recipes/smith_steel_bolts_unf.yaml b/data/recipes/smith_steel_bolts_unf.yaml
new file mode 100644
index 0000000..c4acbcf
--- /dev/null
+++ b/data/recipes/smith_steel_bolts_unf.yaml
@@ -0,0 +1,13 @@
+id: smith_steel_bolts_unf
+type: smithing
+skill: smithing
+level: 36
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_bolts_unf
+output_qty: 10
+message: "You hammer out some steel bolts."
diff --git a/data/recipes/smith_steel_dagger.yaml b/data/recipes/smith_steel_dagger.yaml
new file mode 100644
index 0000000..92be7b1
--- /dev/null
+++ b/data/recipes/smith_steel_dagger.yaml
@@ -0,0 +1,12 @@
+id: smith_steel_dagger
+type: smithing
+skill: smithing
+level: 30
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_dagger
+message: "You hammer out a steel dagger."
diff --git a/data/recipes/smith_steel_full_helm.yaml b/data/recipes/smith_steel_full_helm.yaml
new file mode 100644
index 0000000..faa872a
--- /dev/null
+++ b/data/recipes/smith_steel_full_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_steel_full_helm
+type: smithing
+skill: smithing
+level: 37
+xp: 75
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 2
+output: steel_full_helm
+message: "You hammer out a steel full helm."
diff --git a/data/recipes/smith_steel_med_helm.yaml b/data/recipes/smith_steel_med_helm.yaml
new file mode 100644
index 0000000..bc1666f
--- /dev/null
+++ b/data/recipes/smith_steel_med_helm.yaml
@@ -0,0 +1,12 @@
+id: smith_steel_med_helm
+type: smithing
+skill: smithing
+level: 33
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_med_helm
+message: "You hammer out a steel med helm."
diff --git a/data/recipes/smith_steel_nails.yaml b/data/recipes/smith_steel_nails.yaml
new file mode 100644
index 0000000..29a4caf
--- /dev/null
+++ b/data/recipes/smith_steel_nails.yaml
@@ -0,0 +1,13 @@
+id: smith_steel_nails
+type: smithing
+skill: smithing
+level: 34
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_nails
+output_qty: 15
+message: "You hammer out some steel nails."
diff --git a/data/recipes/smith_steel_platebody.yaml b/data/recipes/smith_steel_platebody.yaml
new file mode 100644
index 0000000..d4f2647
--- /dev/null
+++ b/data/recipes/smith_steel_platebody.yaml
@@ -0,0 +1,12 @@
+id: smith_steel_platebody
+type: smithing
+skill: smithing
+level: 48
+xp: 187
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 5
+output: steel_platebody
+message: "You hammer out a steel platebody."
diff --git a/data/recipes/smith_steel_sword.yaml b/data/recipes/smith_steel_sword.yaml
new file mode 100644
index 0000000..66898fb
--- /dev/null
+++ b/data/recipes/smith_steel_sword.yaml
@@ -0,0 +1,12 @@
+id: smith_steel_sword
+type: smithing
+skill: smithing
+level: 34
+xp: 37
+wait: 4
+station: [anvil]
+consume:
+ - items: [steel_bar]
+ qty: 1
+output: steel_sword
+message: "You hammer out a steel sword."