diff options
author | David Gay <david@davidgay.org> | 2021-05-30 14:18:50 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-30 14:18:50 -0400 |
commit | 6420794ed63b746a5a1af2790bba0eca423b1102 (patch) | |
tree | e04b4916f6ef85c02713b5a6954371750f5f3e12 /data | |
parent | 4c6db6056e7c102456395e4355ff6b2f99521a1a (diff) |
Add arcanite axe, arcanite pickaxe, and crafting activities
Diffstat (limited to 'data')
-rw-r--r-- | data/activities.yml | 68 | ||||
-rw-r--r-- | data/items.yml | 40 |
2 files changed, 108 insertions, 0 deletions
diff --git a/data/activities.yml b/data/activities.yml index 76142a4..304bcc9 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -711,6 +711,74 @@ craft_iron_axe: xp: - gid: "otherforge" value: 15 +craft_arcanite_pickaxe: + name: "Craft Arcanite Pickaxe" + description: "Craft an arcanite pickaxe." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "forge" + level: 2 + - type: "skill" + gid: "otherforge" + level: 10 + duration: + base: 140 + minimum: 35 + scaling: + - type: "skill" + gid: "otherforge" + scale_value: 1 + - type: "stat" + gid: "otherforge_speed" + scale_value: 1 + cost: + - type: "item" + gid: "arcanite_ingot" + quantity: 3 + - type: "item" + gid: "wood" + quantity: 2 + results: + - type: "item" + gid: "arcanite_pickaxe" + xp: + - gid: "otherforge" + value: 30 +craft_arcanite_axe: + name: "Craft Arcanite Axe" + description: "Craft an arcanite axe." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "forge" + level: 2 + - type: "skill" + gid: "otherforge" + level: 10 + duration: + base: 140 + minimum: 35 + scaling: + - type: "skill" + gid: "otherforge" + scale_value: 1 + - type: "stat" + gid: "otherforge_speed" + scale_value: 1 + cost: + - type: "item" + gid: "arcanite_ingot" + quantity: 3 + - type: "item" + gid: "wood" + quantity: 2 + results: + - type: "item" + gid: "arcanite_axe" + xp: + - gid: "otherforge" + value: 30 craft_mending_salve: name: "Mix mending salve" description: "Mix a mending salve." diff --git a/data/items.yml b/data/items.yml index b1b08d9..da5e6fb 100644 --- a/data/items.yml +++ b/data/items.yml @@ -444,6 +444,46 @@ iron_axe: - type: "stat_change" gid: "power" modifier: 2 +arcanite_pickaxe: + name: "arcanite pickaxe" + description: "A pickaxe made of arcanite." + whatnot: + equip_slots: + - "mainhand" + equip_requirements: + skills: + - gid: "planequarry" + level: 10 + equip_effects: + - type: "stat_change" + gid: "planequarry_speed" + modifier: 100 + - type: "stat_change" + gid: "accuracy" + modifier: 2 + - type: "stat_change" + gid: "power" + modifier: 3 +arcanite_axe: + name: "arcanite axe" + description: "An axe made of arcanite." + whatnot: + equip_slots: + - "mainhand" + equip_requirements: + skills: + - gid: "wealdreap" + level: 10 + equip_effects: + - type: "stat_change" + gid: "wealdreap_speed" + modifier: 100 + - type: "stat_change" + gid: "accuracy" + modifier: 2 + - type: "stat_change" + gid: "power" + modifier: 3 aethermesh: name: "aethermesh" description: "A tool for manatrawl." |