From 73a43a66cc92d917e80a26938db435084150e38d Mon Sep 17 00:00:00 2001 From: David Gay Date: Mon, 7 Jun 2021 21:38:12 -0400 Subject: New item: woodflesh potion --- CHANGELOG.md | 3 +++ data/activities.yml | 34 ++++++++++++++++++++++++++++++++++ data/conditions.yml | 8 ++++++++ data/items.yml | 9 +++++++++ 4 files changed, 54 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 087d604..36e372f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ All notable changes to this project will be documented in this file. ### Leviathans - Leviathan starting HP is now set when the leviathan spawns. Before, it just checked the monster's max HP. This means that if max HP was increased by a patch, the leviathan could become alive again. This is what happened this morning. + +### Items +- New item: woodflesh potion ### Monsters - Stalk beast diff --git a/data/activities.yml b/data/activities.yml index 3a23765..4e0a7be 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -1766,6 +1766,40 @@ craft_trawling_draught: xp: - gid: "fluxseethe" value: 30 +craft_woodflesh_potion: + name: "Brew woodflesh potion" + description: "Brew a woodflesh potion." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "labratory" + level: 1 + - type: "skill" + gid: "fluxseethe" + level: 6 + duration: + base: 115 + minimum: 35 + scaling: + - type: "skill" + gid: "fluxseethe" + scale_value: 1 + - type: "stat" + gid: "fluxseethe_speed" + scale_value: 1 + cost: + - type: "item" + gid: "arcane_dust" + quantity: 20 + - type: "item" + gid: "woodrun_bloom" + quantity: 10 + results: + - type: "item" + gid: "woodflesh_potion" + xp: + - gid: "fluxseethe" + value: 30 planequarry_floret_mines: name: "Quarry Floret Mines" description: "Planequarry at the Floret Mines." diff --git a/data/conditions.yml b/data/conditions.yml index d7c9aef..7139947 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -62,3 +62,11 @@ midoras_mudtub_mash: - type: "stat_change" gid: "accuracy" modifier: 1 +woodflesh: + name: "woodflesh" + description: "Increases physical resistance." + whatnot: + effects: + - type: "stat_change" + gid: "physical_resistance" + modifier: 2 diff --git a/data/items.yml b/data/items.yml index 169a862..252e4be 100644 --- a/data/items.yml +++ b/data/items.yml @@ -1039,3 +1039,12 @@ balgoloth_plate: - type: "stat_change" gid: "power" modifier: 2 +woodflesh_potion: + name: "woodflesh potion" + description: "A magic potion that causes your skin to toughen and better resist physical damage." + whatnot: + use_effects: + - type: "condition" + gid: "woodflesh" + duration: 600 # 10 minutes + message: "Your skin toughens." -- cgit v1.2.3