diff options
author | David Gay <david@davidgay.org> | 2021-06-07 21:38:12 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-07 21:38:12 -0400 |
commit | 73a43a66cc92d917e80a26938db435084150e38d (patch) | |
tree | 5b66dcf1d91a99f292e2b2781cd71831ee42a831 /data | |
parent | 39178217ecf722fbd902e07a053e35fa290488f8 (diff) |
New item: woodflesh potion
Diffstat (limited to 'data')
-rw-r--r-- | data/activities.yml | 34 | ||||
-rw-r--r-- | data/conditions.yml | 8 | ||||
-rw-r--r-- | data/items.yml | 9 |
3 files changed, 51 insertions, 0 deletions
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." |