diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | data/activities.yml | 68 | ||||
-rw-r--r-- | data/items.yml | 40 |
3 files changed, 110 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d00615..58a5497 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,10 @@ All notable changes to this project will be documented in this file. ### Added - New items: woodrun boom, last breath, silver iris, claritas flower, salt, sea's tear, gaian ore, pure iron ingot, arcanite ingot, arcanite dagger, arcanite short sword, arcanite longsword, arcanite buckler, arcanite shield, - reaping draught + reaping draught, arcanite pickaxe, arcanite axe - New activities: reap twil grove, quarry brine trench, quarry deepshaft, purify iron ingot, smelt pure iron ingot, smelt arcanite ingot, craft arcanite dagger, craft arcanite short sword, craft arcanite longsword, craft - arcanite buckler, craft arcanite shield, brew reaping draught + arcanite buckler, craft arcanite shield, brew reaping draught, craft arcanite pickaxe, craft arcanite axe ### Changed - Increased XP value of iron ore to 15 and pure iron ore to 30 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." |