diff options
author | David Gay <david@davidgay.org> | 2021-05-31 14:21:32 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-31 14:21:32 -0400 |
commit | c14d178b8733997155135f872419b997d8b8b124 (patch) | |
tree | 394e9b53a380cbf3496f92d0c70afa924c7cc484 | |
parent | 6139a4aea628f362cf49bd5b15df9d19addcc01a (diff) |
Trawling draught and the activity to craft it
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | data/activities.yml | 40 | ||||
-rw-r--r-- | data/conditions.yml | 9 | ||||
-rw-r--r-- | data/items.yml | 9 |
4 files changed, 60 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 134663c..2905938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,9 @@ All notable changes to this project will be documented in this file. ### Added - New beastslay activity: the Hopegraves +- New fluxseethe activity: brew trawling draught - New monsters: bollyrot, crypt writhe -- New items: bollyrot acerbic, black gizzard, bollyrot trophy, crypt writhe trophy +- New items: bollyrot acerbic, black gizzard, bollyrot trophy, crypt writhe trophy, trawling draught - Players can now update their email, change their password, or delete their account via a "Manage account" link, temporarily located on their Character page. diff --git a/data/activities.yml b/data/activities.yml index 053dbe0..39487af 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -927,6 +927,40 @@ craft_reaping_draught: xp: - gid: "fluxseethe" value: 30 +craft_trawling_draught: + name: "Brew trawling draught" + description: "Brew a trawling draught." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "labratory" + level: 1 + - type: "skill" + gid: "fluxseethe" + level: 3 + duration: + base: 105 + minimum: 35 + scaling: + - type: "skill" + gid: "fluxseethe" + scale_value: 1 + - type: "stat" + gid: "fluxseethe_speed" + scale_value: 1 + cost: + - type: "item" + gid: "shimmering_essence" + quantity: 2 + - type: "item" + gid: "warped_eyestalk" + quantity: 1 + results: + - type: "item" + gid: "trawling_draught" + xp: + - gid: "fluxseethe" + value: 30 planequarry_floret_mines: name: "Quarry Floret Mines" description: "Planequarry at the Floret Mines." @@ -1238,6 +1272,9 @@ manatrawl_sor_well: - type: "skill" gid: "manatrawl" scale_value: 1 + - type: "stat" + gid: "manatrawl_speed" + scale_value: 1 requirements: - type: "equipment" gid: "aethermesh" @@ -1276,6 +1313,9 @@ manatrawl_sor_well_depths: - type: "skill" gid: "manatrawl" scale_value: 1 + - type: "stat" + gid: "manatrawl_speed" + scale_value: 1 requirements: - type: "skill" gid: "manatrawl" diff --git a/data/conditions.yml b/data/conditions.yml index 559ab7c..0f9a98f 100644 --- a/data/conditions.yml +++ b/data/conditions.yml @@ -16,3 +16,12 @@ reaping_draught: level: 2 gid: "wealdreap_speed" modifier: 5 +trawling_draught: + name: "trawling draught" + description: "Increases the speed of manatrawl for some time." + whatnot: + effects: + - type: "stat_change" + level: 2 + gid: "manatrawl_speed" + modifier: 5 diff --git a/data/items.yml b/data/items.yml index 137e2b8..3d68838 100644 --- a/data/items.yml +++ b/data/items.yml @@ -520,6 +520,15 @@ reaping_draught: gid: "reaping_draught" duration: 3600 # 1 Hour message: "The draught increases your wealdreap speed." +trawling_draught: + name: "trawling draught" + description: "Increases the speed of manatrawl for an hour." + whatnot: + use_effects: + - type: "condition" + gid: "trawling_draught" + duration: 3600 # 1 Hour + message: "The draught increases your manatrawl speed." gem_dust: name: "gem dust" description: "Dust resulting from the crushing of a gem." |