diff options
author | David Gay <david@davidgay.org> | 2021-05-28 14:51:01 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-28 14:51:01 -0400 |
commit | 8f8a80b5692e374bfbe27b7071597ada712c3704 (patch) | |
tree | 854036f203d4cb041eedb038f5b09a14951c5521 | |
parent | b8fe53ce7bf7a0fd279a80d57d62c76c76260a0f (diff) |
Activities to craft `iron_axe` and `iron_pickaxe`
-rw-r--r-- | data/activities.yml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/data/activities.yml b/data/activities.yml index 119dad9..a75651a 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -404,6 +404,68 @@ craft_iron_shield: xp: - gid: "otherforge" value: 40 +craft_iron_pickaxe: + name: "Craft Iron Pickaxe" + description: "Craft an iron pickaxe." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "forge" + level: 1 + duration: + base: 120 + minimum: 35 + scaling: + - type: "skill" + gid: "otherforge" + scale_value: 1 + - type: "stat" + gid: "otherforge_speed" + scale_value: 1 + cost: + - type: "item" + gid: "iron_ingot" + quantity: 3 + - type: "item" + gid: "wood" + quantity: 2 + results: + - type: "item" + gid: "iron_pickaxe" + xp: + - gid: "otherforge" + value: 15 +craft_iron_axe: + name: "Craft Iron Axe" + description: "Craft an iron axe." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "forge" + level: 1 + duration: + base: 120 + minimum: 35 + scaling: + - type: "skill" + gid: "otherforge" + scale_value: 1 + - type: "stat" + gid: "otherforge_speed" + scale_value: 1 + cost: + - type: "item" + gid: "iron_ingot" + quantity: 3 + - type: "item" + gid: "wood" + quantity: 2 + results: + - type: "item" + gid: "iron_axe" + xp: + - gid: "otherforge" + value: 15 craft_mending_salve: name: "Mix mending salve" description: "Mix a mending salve." |