summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-06-02 18:45:57 -0400
committerDavid Gay <david@davidgay.org>2021-06-02 18:45:57 -0400
commit6ec57509c6f1d44fb80a1cb2ae020b8a033dd370 (patch)
tree6bdda73916057e64068621bd1db83b231dcb7068
parent08278642a09e374fa42f746f85a877ac959522a6 (diff)
Loamspire level 1 and 2 with construct activities
-rw-r--r--CHANGELOG.md4
-rw-r--r--data/activities.yml54
-rw-r--r--data/hearth_amenities.yml10
3 files changed, 68 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8ec529..de1ecd9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - 2021-06-02
+### Added
+- New hearth amenities: loamspire level 1, loamspire level 2
+- New activities: Construct Loamspire Level 1, Construct Loamspire Level 2
+
### Changed
- Initiative rolls are now made with a d20 instead of a d10. Therefore, speed is now more important. Previously, once a
combatant had a decent speed stat advantage, the roll was fairly easy to call. So this is a buff, but also a nerf.
diff --git a/data/activities.yml b/data/activities.yml
index a8cec7c..8208d26 100644
--- a/data/activities.yml
+++ b/data/activities.yml
@@ -149,6 +149,60 @@ construct_listern_font_level2:
- type: "hearth_amenity"
gid: "listern_font"
level: 2
+construct_loamspire_level1:
+ name: "Construct Loamspire Level 1"
+ description: "Build a level 1 loamspire."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "foundation"
+ level: 1
+ duration:
+ base: 1000
+ cost:
+ - type: "item"
+ gid: "stone"
+ quantity: 100
+ - type: "item"
+ gid: "wood"
+ quantity: 200
+ - type: "item"
+ gid: "arcane_dust"
+ quantity: 200
+ results:
+ - type: "hearth_amenity"
+ gid: "loamspire"
+ level: 1
+construct_loamspire_level2:
+ name: "Construct Loamspire Level 2"
+ description: "Upgrade your loamspire to level 2."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "loamspire"
+ level: 1
+ duration:
+ base: 3600
+ cost:
+ - type: "item"
+ gid: "stone"
+ quantity: 100
+ - type: "item"
+ gid: "wood"
+ quantity: 200
+ - type: "item"
+ gid: "arcane_dust"
+ quantity: 200
+ - type: "item"
+ gid: "burstshroom"
+ quantity: 100
+ - type: "item"
+ gid: "wisp_of_the_current"
+ quantity: 1
+ results:
+ - type: "hearth_amenity"
+ gid: "loamspire"
+ level: 2
craft_pig_iron_ingot:
name: "Smelt Pig Iron Ingot"
description: "Smelt a pig iron ingot."
diff --git a/data/hearth_amenities.yml b/data/hearth_amenities.yml
index fd090c8..bb60d3f 100644
--- a/data/hearth_amenities.yml
+++ b/data/hearth_amenities.yml
@@ -52,3 +52,13 @@ listern_font:
level: 2
gid: "max_wounds"
modifier: 1
+loamspire:
+ name: "Loamspire"
+ description: >-
+ A tower of teired planting areas filled with imbued soil. Fruits, vegetables, roots, and herbs can be grown here.
+ whatnot:
+ construct_activities:
+ - level: 1
+ gid: "construct_loamspire_level1"
+ - level: 2
+ gid: "construct_loamspire_level2"