diff options
author | David Gay <david@davidgay.org> | 2021-06-07 21:44:09 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-07 21:44:09 -0400 |
commit | 9fab7ceae317d3de7e2d3f7ebee9c52ba7dec4ed (patch) | |
tree | 01e106d2c05f9e3edb99baaf2cfac62ffc3cafff /data | |
parent | 73a43a66cc92d917e80a26938db435084150e38d (diff) |
New item: lightblood potion
Diffstat (limited to 'data')
-rw-r--r-- | data/activities.yml | 37 | ||||
-rw-r--r-- | data/conditions.yml | 8 | ||||
-rw-r--r-- | data/items.yml | 9 |
3 files changed, 54 insertions, 0 deletions
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." |