summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--data/activities.yml154
-rw-r--r--data/items.yml85
3 files changed, 243 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b29d1cb..e80757b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.
+## [0.1.3] - 2021-05-30
+
+### Fixed
+- Crafting an iron shield gave an iron buckler instead
+
## [0.1.2] - 2021-05-29
### Added
diff --git a/data/activities.yml b/data/activities.yml
index 540ba15..4f868a8 100644
--- a/data/activities.yml
+++ b/data/activities.yml
@@ -487,10 +487,162 @@ craft_iron_shield:
quantity: 8
results:
- type: "item"
- gid: "iron_buckler"
+ gid: "iron_shield"
+ xp:
+ - gid: "otherforge"
+ value: 40
+craft_arcanite_dagger:
+ name: "Craft Arcanite Dagger"
+ description: "Craft an arcanite dagger."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
+ - type: "skill"
+ gid: "otherforge"
+ level: 11
+ duration:
+ base: 130
+ 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: 2
+ results:
+ - type: "item"
+ gid: "arcanite_dagger"
+ xp:
+ - gid: "otherforge"
+ value: 30
+craft_arcanite_short_sword:
+ name: "Craft Arcanite Short Sword"
+ description: "Craft an arcanite short sword."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
+ - type: "skill"
+ gid: "otherforge"
+ level: 13
+ duration:
+ base: 145
+ 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: 4
+ results:
+ - type: "item"
+ gid: "arcanite_short_sword"
+ xp:
+ - gid: "otherforge"
+ value: 60
+craft_arcanite_longsword:
+ name: "Craft Arcanite Longsword"
+ description: "Craft an arcanite longsword."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
+ - type: "skill"
+ gid: "otherforge"
+ level: 15
+ duration:
+ base: 170
+ 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: 7
+ results:
+ - type: "item"
+ gid: "arcanite_longsword"
+ xp:
+ - gid: "otherforge"
+ value: 100
+craft_arcanite_buckler:
+ name: "Craft Arcanite Buckler"
+ description: "Craft an arcanite buckler."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
+ duration:
+ base: 130
+ 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: 4
+ results:
+ - type: "item"
+ gid: "arcanite_buckler"
xp:
- gid: "otherforge"
value: 40
+craft_arcanite_shield:
+ name: "Craft Arcanite Shield"
+ description: "Craft an arcanite shield."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
+ - type: "skill"
+ gid: "otherforge"
+ level: 14
+ duration:
+ base: 170
+ 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: 8
+ results:
+ - type: "item"
+ gid: "arcanite_shield"
+ xp:
+ - gid: "otherforge"
+ value: 80
craft_iron_pickaxe:
name: "Craft Iron Pickaxe"
description: "Craft an iron pickaxe."
diff --git a/data/items.yml b/data/items.yml
index 7ef4fb4..5586ab0 100644
--- a/data/items.yml
+++ b/data/items.yml
@@ -114,6 +114,91 @@ iron_shield:
- type: "stat_change"
gid: "block_value"
modifier: 2
+arcanite_dagger:
+ name: "arcanite dagger"
+ description: "A dagger made of arcanite."
+ whatnot:
+ equip_slots:
+ - "mainhand"
+ equip_requirements:
+ skills:
+ - gid: "beastslay"
+ level: 10
+ equip_effects:
+ - type: "stat_change"
+ gid: "accuracy"
+ modifier: 6
+ - type: "stat_change"
+ gid: "power"
+ modifier: 6
+arcanite_short_sword:
+ name: "iron short sword"
+ description: "A short sword made of iron."
+ whatnot:
+ equip_slots:
+ - "mainhand"
+ equip_requirements:
+ skills:
+ - gid: "beastslay"
+ level: 12
+ equip_effects:
+ - type: "stat_change"
+ gid: "accuracy"
+ modifier: 7
+ - type: "stat_change"
+ gid: "power"
+ modifier: 7
+arcanite_longsword:
+ name: "arcanite longsword"
+ description: "A longsword made of arcanite."
+ whatnot:
+ equip_slots:
+ - "mainhand"
+ equip_requirements:
+ skills:
+ - gid: "beastslay"
+ level: 15
+ equip_effects:
+ - type: "stat_change"
+ gid: "accuracy"
+ modifier: 8
+ - type: "stat_change"
+ gid: "power"
+ modifier: 8
+arcanite_buckler:
+ name: "arcanite buckler"
+ description: "A buckler made of arcanite."
+ whatnot:
+ equip_requirements:
+ skills:
+ - gid: "beastslay"
+ level: 10
+ equip_slots:
+ - "offhand"
+ equip_effects:
+ - type: "stat_change"
+ gid: "block"
+ modifier: 4
+ - type: "stat_change"
+ gid: "block_value"
+ modifier: 4
+arcanite_shield:
+ name: "arcanite shield"
+ description: "A shield made of arcanite."
+ whatnot:
+ equip_slots:
+ - "offhand"
+ equip_requirements:
+ skills:
+ - gid: "beastslay"
+ level: 13
+ equip_effects:
+ - type: "stat_change"
+ gid: "block"
+ modifier: 5
+ - type: "stat_change"
+ gid: "block_value"
+ modifier: 5
mending_salve:
name: "mending salve"
description: "A healing mixture capable of closing wounds."