From 6ec57509c6f1d44fb80a1cb2ae020b8a033dd370 Mon Sep 17 00:00:00 2001 From: David Gay Date: Wed, 2 Jun 2021 18:45:57 -0400 Subject: Loamspire level 1 and 2 with construct activities --- CHANGELOG.md | 4 ++++ data/activities.yml | 54 +++++++++++++++++++++++++++++++++++++++++++++++ data/hearth_amenities.yml | 10 +++++++++ 3 files changed, 68 insertions(+) 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" -- cgit v1.2.3