diff options
author | David Gay <david@davidgay.org> | 2021-06-03 19:30:53 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-03 19:30:53 -0400 |
commit | 888bcdc0492ff3587e9f2916993a82b9f27c61f1 (patch) | |
tree | c3aa509e635e10046d780b852cf4462cfa4524ed | |
parent | 7fb0a12d6da2a02c5bf9ca0f9520f3f84de38ca1 (diff) |
New items: midoras spice, midoras mudtub mash
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | data/activities.yml | 65 | ||||
-rw-r--r-- | data/conditions.yml | 15 | ||||
-rw-r--r-- | data/items.yml | 12 |
4 files changed, 91 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ded9d..ea00707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ amenities, etc that are added unless they are special in some way. ### Added - Spicework has been implemented. You can now craft food and drugs in your hearth, once you build a spicebench. - New hearth amenities: spicebench level 1, spicebench level 2 -- New items: bluster powder, mudtub mash +- New items: bluster powder, mudtub mash, midoras spice, midoras mudtub mash ## [0.1.5] - 2021-06-03 diff --git a/data/activities.yml b/data/activities.yml index 1d50805..fafcc6c 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2078,3 +2078,68 @@ craft_mudtub_mash: xp: - gid: "spicework" value: 8 +craft_midoras_spice: + name: "Craft midoras spice" + description: "Craft some midoras spice." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "spicebench" + level: 1 + - type: "skill" + gid: "spicework" + level: 2 + duration: + base: 70 + minimum: 35 + scaling: + - type: "skill" + gid: "spicework" + scale_value: 1 + - type: "stat" + gid: "spicework_speed" + scale_value: 1 + cost: + - type: "item" + gid: "midoras" + quantity: 1 + results: + - type: "item" + gid: "midoras_spice" + xp: + - gid: "spicework" + value: 12 +craft_midoras_mudtub_mash: + name: "Craft midoras mudtub mash" + description: "Cook up some midoras mudtub mash." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "spicebench" + level: 1 + - type: "skill" + gid: "spicework" + level: 2 + duration: + base: 70 + minimum: 35 + scaling: + - type: "skill" + gid: "spicework" + scale_value: 1 + - type: "stat" + gid: "spicework_speed" + scale_value: 1 + cost: + - type: "item" + gid: "midoras_spice" + quantity: 1 + - type: "item" + gid: "mudtub_mash" + quantity: 1 + results: + - type: "item" + gid: "midoras_mudtub_mash" + xp: + - gid: "spicework" + value: 10 diff --git a/data/conditions.yml b/data/conditions.yml index bf255f2..42dc03a 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -43,7 +43,18 @@ mudtub_mash: name: "mudtub mash" description: "Incrases max HP by 1." whatnot: - - effects: - type: "stat_change" + effects: + - type: "stat_change" + gid: "max_hp" + modifier: 1 +midoras_mudtub_mash: + name: "midoras mudtub mash" + description: "Incrases max HP and accuracy by 1." + whatnot: + effects: + - type: "stat_change" gid: "max_hp" modifier: 1 + - type: "stat_change" + gid: "accuracy" + modifier: 1 diff --git a/data/items.yml b/data/items.yml index a6527bb..6e20474 100644 --- a/data/items.yml +++ b/data/items.yml @@ -649,6 +649,18 @@ mudtub_mash: gid: "mudtub_mash" duration: 7200 # 2 hours message: "The mash is bland -- uncomfortably tasteless. But it'll get you through." +midoras_spice: + name: "midoras spice" + description: "A biting spice made from the fruit of the midoras plant." +midoras_mudtub_mash: + name: "midoras mudtub mash" + description: "Spiced mudtub mash. Tastes like spice." + whatnot: + use_effects: + - type: "condition" + gid: "midoras_mudtub_mash" + duration: 7200 # 2 hours + message: "The mash fills your mouth with a biting tingle." gem_dust: name: "gem dust" description: "Dust resulting from the crushing of a gem." |