From 60d197a4917432381c05633913cdce318d6840d9 Mon Sep 17 00:00:00 2001 From: David Gay Date: Thu, 3 Jun 2021 19:02:15 -0400 Subject: New item: bluster powder --- CHANGELOG.md | 6 +++++- data/activities.yml | 31 +++++++++++++++++++++++++++++++ data/conditions.yml | 20 +++++++++++++++++--- data/items.yml | 9 +++++++++ 4 files changed, 62 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab51408..3f87c4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,12 @@ All notable changes to this project will be documented in this file. ## [0.1.6] - 2021-06-04 +Note that from this point foward, I am not explicitly listing the activities required to make the items, hearth +amenities, etc that are added unless they are special in some way. + ### Added -- New hearth amenities: spicebench level 1, spicebench level 2, and their construct activities +- New hearth amenities: spicebench level 1, spicebench level 2 +- New items: bluster powder ## [0.1.5] - 2021-06-03 diff --git a/data/activities.yml b/data/activities.yml index 91ed8a8..083b18f 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2016,3 +2016,34 @@ craft_gem_dust_from_tourmaline: xp: - gid: "fluxseethe" value: 4 +craft_bluster_powder: + name: "Craft bluster powder" + description: "Crush materials and create bluster powder." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "spicebench" + level: 5 + duration: + base: 90 + minimum: 15 + scaling: + - type: "skill" + gid: "spicework" + scale_value: 1 + - type: "stat" + gid: "spicework_speed" + scale_value: 1 + cost: + - type: "item" + gid: "arcane_dust" + quantity: 10 + - type: "item" + gid: "bollyrot_acerbic" + quantity: 2 + results: + - type: "item" + gid: "bluster_powder" + xp: + - gid: "fluxseethe" + value: 17 diff --git a/data/conditions.yml b/data/conditions.yml index 0f9a98f..41af7fe 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -4,7 +4,6 @@ quarrying_draught: whatnot: effects: - type: "stat_change" - level: 2 gid: "planequarry_speed" modifier: 5 reaping_draught: @@ -13,7 +12,6 @@ reaping_draught: whatnot: effects: - type: "stat_change" - level: 2 gid: "wealdreap_speed" modifier: 5 trawling_draught: @@ -22,6 +20,22 @@ trawling_draught: whatnot: effects: - type: "stat_change" - level: 2 gid: "manatrawl_speed" modifier: 5 +bluster_powder: + name: "bluster powder" + description: "Increases power and speed at the cost of accuracy and evasion." + whatnot: + effects: + - type: "stat_change" + gid: "power" + modifier: 1 + - type: "stat_change" + gid: "speed" + modifier: 1 + - type: "stat_change" + gid: "accuracy" + modifier: -2 + - type: "stat_change" + gid: "evasion" + modifier: -1 diff --git a/data/items.yml b/data/items.yml index 1a5c00e..14b103e 100644 --- a/data/items.yml +++ b/data/items.yml @@ -631,6 +631,15 @@ trawling_draught: gid: "trawling_draught" duration: 3600 # 1 Hour message: "The draught increases your manatrawl speed." +bluster_powder: + name: "bluster powder" + description: "A coarse powder that, when inhaled, causes severe pain and rage." + whatnot: + use_effects: + - type: "condition" + gid: "bluster_powder" + duration: 600 # 10 minutes + message: "The powder enrages you, increasing your power and speed but decreasing your accuracy and evasion." gem_dust: name: "gem dust" description: "Dust resulting from the crushing of a gem." -- cgit v1.2.3