summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-25 20:00:32 -0400
committerDavid Gay <david@davidgay.org>2021-05-25 20:00:32 -0400
commit5041f03e272e9e1f3726b5f6b21b3d45cd78dd22 (patch)
treefa48400f25952a0c4ed50c4c5f0fe8ce24405284 /data
parentf4122067ce58b595c8ccfbe61cbe082f25648415 (diff)
Improve hearth view and amenity construction process
Diffstat (limited to 'data')
-rw-r--r--data/activities.yml22
-rw-r--r--data/hearth_amenities.yml14
2 files changed, 36 insertions, 0 deletions
diff --git a/data/activities.yml b/data/activities.yml
index fa38999..c169c0f 100644
--- a/data/activities.yml
+++ b/data/activities.yml
@@ -35,6 +35,28 @@ construct_forge_level1:
- type: "hearth_amenity"
gid: "forge"
level: 1
+construct_forge_level2:
+ name: "Construct Forge Level 2"
+ description: "Build a level 2 forge."
+ innate: true
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "foundation"
+ level: 1
+ duration:
+ base: 2400
+ cost:
+ - type: "item"
+ gid: "stone"
+ quantity: 500
+ - type: "item"
+ gid: "iron_ingot"
+ quantity: 50
+ results:
+ - type: "hearth_amenity"
+ gid: "forge"
+ level: 2
construct_labratory_level1:
name: "Construct Labratory Level 1"
description: "Build a level 1 labratory."
diff --git a/data/hearth_amenities.yml b/data/hearth_amenities.yml
index d40fae3..b93070d 100644
--- a/data/hearth_amenities.yml
+++ b/data/hearth_amenities.yml
@@ -1,9 +1,23 @@
foundation:
name: "Foundation"
description: "The foundation is the necessary first step to building anything of value."
+ whatnot:
+ construct_activities:
+ - level: 1
+ gid: "construct_foundation_level1"
forge:
name: "Forge"
description: "A stone furnace. Can be used for practicing the otherforge skill."
+ whatnot:
+ construct_activities:
+ - level: 1
+ gid: "construct_forge_level1"
+ - level: 2
+ gid: "construct_forge_level2"
labratory:
name: "Labratory"
description: "A table and some containers, sufficient for practicing the fluxseethe skill."
+ whatnot:
+ construct_activities:
+ - level: 1
+ gid: "construct_labratory_level1"