diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/activities.yml | 54 | ||||
-rw-r--r-- | data/hearth_amenities.yml | 10 |
2 files changed, 64 insertions, 0 deletions
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" |