diff options
author | David Gay <david@davidgay.org> | 2021-06-07 21:51:56 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-07 21:51:56 -0400 |
commit | 6f21e04c3f61feac8f33fd31183eb3fd7742634e (patch) | |
tree | e31943249ba9f28c6e9aaad59615d71e5da40773 | |
parent | 9fab7ceae317d3de7e2d3f7ebee9c52ba7dec4ed (diff) |
New item: mercuria potion
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | data/activities.yml | 37 | ||||
-rw-r--r-- | data/conditions.yml | 8 | ||||
-rw-r--r-- | data/items.yml | 9 |
4 files changed, 55 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 802df5c..5a853c2 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 +- New items: woodflesh potion, lightblood potion, mercuria potion ### Monsters - Stalk beast diff --git a/data/activities.yml b/data/activities.yml index bd89db3..1d8a077 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -1837,6 +1837,43 @@ craft_lightblood_potion: xp: - gid: "fluxseethe" value: 33 +craft_mercuria_potion: + name: "Brew mercuria potion" + description: "Brew a mercuria potion." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "labratory" + level: 1 + - type: "skill" + gid: "fluxseethe" + level: 8 + duration: + base: 125 + minimum: 35 + scaling: + - type: "skill" + gid: "fluxseethe" + scale_value: 1 + - type: "stat" + gid: "fluxseethe_speed" + scale_value: 1 + cost: + - type: "item" + gid: "gem_dust" + quantity: 1 + - type: "item" + gid: "shimmering_essence" + quantity: 2 + - type: "item" + gid: "burstshroom" + quantity: 3 + results: + - type: "item" + gid: "mercuria_potion" + xp: + - gid: "fluxseethe" + value: 38 planequarry_floret_mines: name: "Quarry Floret Mines" description: "Planequarry at the Floret Mines." diff --git a/data/conditions.yml b/data/conditions.yml index 59920a3..e03d4f8 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -78,3 +78,11 @@ lightblood: - type: "stat_change" gid: "necrotic_resistance" modifier: 4 +mercuria: + name: "mercuria" + description: "Increases evasion." + whatnot: + effects: + - type: "stat_change" + gid: "evasion" + modifier: 1 diff --git a/data/items.yml b/data/items.yml index 1a86248..6755dfd 100644 --- a/data/items.yml +++ b/data/items.yml @@ -1057,3 +1057,12 @@ lightblood_potion: gid: "lightblood" duration: 600 # 10 minutes message: "You feel an inner glow." +mercuria_potion: + name: "mercuria potion" + description: "A magic potion that causes you to become slightly less tangible, increasing your evasion." + whatnot: + use_effects: + - type: "condition" + gid: "mercuria" + duration: 600 # 10 minutes + message: "You feel elusive." |