diff options
-rw-r--r-- | data/activities.yml | 33 | ||||
-rw-r--r-- | data/items.yml | 6 |
2 files changed, 38 insertions, 1 deletions
diff --git a/data/activities.yml b/data/activities.yml index 8187a5f..540ba15 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -206,7 +206,7 @@ craft_pure_iron_ingot: requirements: - type: "hearth_amenity" gid: "forge" - level: 1 + level: 2 duration: base: 90 minimum: 35 @@ -227,6 +227,37 @@ craft_pure_iron_ingot: xp: - gid: "otherforge" value: 12 +craft_arcanite_ingot: + name: "Smelt Arcanite Ingot" + description: "Smelt an arcanite ingot." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "forge" + level: 2 + duration: + base: 100 + minimum: 35 + scaling: + - type: "skill" + gid: "otherforge" + scale_value: 1 + - type: "stat" + gid: "otherforge_speed" + scale_value: 1 + cost: + - type: "item" + gid: "pure_iron_ingot" + quantity: 1 + - type: "item" + gid: "arcane_dust" + quantity: 12 + results: + - type: "item" + gid: "arcanite_ingot" + xp: + - gid: "otherforge" + value: 16 craft_purify_pig_iron_ingot: name: "Purify Pig Iron Ingot" description: "Purify pig iron ingots into an iron ingot." diff --git a/data/items.yml b/data/items.yml index 203fc23..7ef4fb4 100644 --- a/data/items.yml +++ b/data/items.yml @@ -31,6 +31,12 @@ pig_iron_ingot: iron_ingot: name: "iron ingot" description: "A simple bar of iron." +pure_iron_ingot: + name: "pure iron ingot" + description: "A bar of highly-pure iron." +arcanite_ingot: + name: "arcanite ingot" + description: "A bar of arcanite." iron_dagger: name: "iron dagger" description: "A dagger made of iron." |