summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--data/activities.yml37
-rw-r--r--data/conditions.yml8
-rw-r--r--data/items.yml9
4 files changed, 55 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36e372f..802df5c 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 item: woodflesh potion
+- New items: woodflesh potion, lightblood potion
### Monsters
- Stalk beast
diff --git a/data/activities.yml b/data/activities.yml
index 4e0a7be..bd89db3 100644
--- a/data/activities.yml
+++ b/data/activities.yml
@@ -1800,6 +1800,43 @@ craft_woodflesh_potion:
xp:
- gid: "fluxseethe"
value: 30
+craft_lightblood_potion:
+ name: "Brew lightblood potion"
+ description: "Brew a lightblood potion."
+ whatnot:
+ requirements:
+ - type: "hearth_amenity"
+ gid: "labratory"
+ level: 1
+ - type: "skill"
+ gid: "fluxseethe"
+ level: 7
+ duration:
+ base: 120
+ 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: 10
+ - type: "item"
+ gid: "shimmering_essence"
+ quantity: 1
+ - type: "item"
+ gid: "last_breath"
+ quantity: 10
+ results:
+ - type: "item"
+ gid: "lightblood_potion"
+ xp:
+ - gid: "fluxseethe"
+ value: 33
planequarry_floret_mines:
name: "Quarry Floret Mines"
description: "Planequarry at the Floret Mines."
diff --git a/data/conditions.yml b/data/conditions.yml
index 7139947..59920a3 100644
--- a/data/conditions.yml
+++ b/data/conditions.yml
@@ -70,3 +70,11 @@ woodflesh:
- type: "stat_change"
gid: "physical_resistance"
modifier: 2
+lightblood:
+ name: "lightblood"
+ description: "Increases necrotic resistance."
+ whatnot:
+ effects:
+ - type: "stat_change"
+ gid: "necrotic_resistance"
+ modifier: 4
diff --git a/data/items.yml b/data/items.yml
index 252e4be..1a86248 100644
--- a/data/items.yml
+++ b/data/items.yml
@@ -1048,3 +1048,12 @@ woodflesh_potion:
gid: "woodflesh"
duration: 600 # 10 minutes
message: "Your skin toughens."
+lightblood_potion:
+ name: "lightblood potion"
+ description: "A magic potion that instills an inner radiance, increasing your resistance to necrotic damage."
+ whatnot:
+ use_effects:
+ - type: "condition"
+ gid: "lightblood"
+ duration: 600 # 10 minutes
+ message: "You feel an inner glow."