diff options
author | David Gay <david@davidgay.org> | 2021-06-07 22:03:57 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-07 22:03:57 -0400 |
commit | 2936863258a0339f440acc2d0d02c0701914569e (patch) | |
tree | 7375c669e84b753d1f0a18c3ee36d17b1a74177b | |
parent | 1504450b3c7da4480421302fafc7a6acd67578c6 (diff) |
New item: dusted templis
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | data/activities.yml | 34 | ||||
-rw-r--r-- | data/conditions.yml | 10 | ||||
-rw-r--r-- | data/items.yml | 9 |
4 files changed, 54 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0795437..b94c9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,7 @@ All notable changes to this project will be documented in this file. that if max HP was increased by a patch, the leviathan could become alive again. This is what happened this morning. ### Items -- New items: woodflesh potion, lightblood potion, mercuria potion +- New items: woodflesh potion, lightblood potion, mercuria potion, dusted templis - Tweaked description of midoras spice. ### Monsters diff --git a/data/activities.yml b/data/activities.yml index 1d8a077..ca168a3 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2595,6 +2595,40 @@ craft_midoras_mudtub_mash: xp: - gid: "spicework" value: 10 +craft_dusted_templis: + name: "Craft dusted templis" + description: "Cook up some dusted templis." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "spicebench" + level: 1 + - type: "skill" + gid: "spicework" + level: 4 + duration: + base: 75 + minimum: 35 + scaling: + - type: "skill" + gid: "spicework" + scale_value: 1 + - type: "stat" + gid: "spicework_speed" + scale_value: 1 + cost: + - type: "item" + gid: "templis" + quantity: 1 + - type: "item" + gid: "arcane_dust" + quantity: 12 + results: + - type: "item" + gid: "dusted_templis" + xp: + - gid: "spicework" + value: 16 beastslay_leviathan_floret_region: name: "Hunt a Leviathan in the Floret Region" description: "You are hunting down a leviathan ravaging the Floret Region." diff --git a/data/conditions.yml b/data/conditions.yml index e03d4f8..b691254 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -62,6 +62,16 @@ midoras_mudtub_mash: - type: "stat_change" gid: "accuracy" modifier: 1 +dusted_templis: + name: "dusted templis" + description: "Increases max HP by 2." + whatnot: + tags: + - "food" + effects: + - type: "stat_change" + gid: "max_hp" + modifier: 2 woodflesh: name: "woodflesh" description: "Increases physical resistance." diff --git a/data/items.yml b/data/items.yml index e3490c4..9b14e3f 100644 --- a/data/items.yml +++ b/data/items.yml @@ -964,6 +964,15 @@ midoras_mudtub_mash: gid: "midoras_mudtub_mash" duration: 7200 # 2 hours message: "The mash fills your mouth with a biting tingle." +dusted_templis: + name: "dusted templis" + description: "The fruit of a templis plant, seasoned with a little something extra." + whatnot: + use_effects: + - type: "condition" + gid: "dusted_templis" + duration: 7200 # 2 hours + message: "The dusted templis is strangely complex and delicious." gem_dust: name: "gem dust" description: "Dust resulting from the crushing of a gem." |