diff options
author | David Gay <david@davidgay.org> | 2021-07-07 22:06:40 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-07-07 22:06:40 -0400 |
commit | 7ae14d1068ae357b2dc923aa04debd9a2cebe133 (patch) | |
tree | bc0c2492f2bdb0530f95a3185519e9a5f6311328 | |
parent | 8f89210599869ab783ee0bc7c3667557c6c4c22b (diff) |
[data] New items: shawl of wiles, alacrity ribbon
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | data/activities.yml | 76 | ||||
-rw-r--r-- | data/items.yml | 28 |
3 files changed, 106 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 139fa6e..3dd360e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. -## [Unreleased] +## [0.1.13] - 2021-07-07 ### General - Characters now have a location. Correspondingly, the "Locations" menu option and view has been replaced @@ -25,7 +25,8 @@ All notable changes to this project will be documented in this file. If you already have a level 2 amenity, you are grandfathered in and can continue using it as normal. ### Items -- New items: pluma moss, laris strand, fine aethermesh, faint weaving haste, lusterlight brand +- New items: pluma moss, laris strand, fine aethermesh, faint weaving haste, lusterlight brand, shawl of wiles, + alacrity ribbon - Aethermesh now increases manatrawl speed by 2, and therefore can now break. - Apprentice wand now requires havencast level 5 to equip. - Lusterlight tincture can now only be distilled during firstlight. diff --git a/data/activities.yml b/data/activities.yml index 886dd21..06f385c 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -1801,6 +1801,80 @@ craft_aethermesh: xp: - gid: "aetherweave" value: 8 +craft_shawl_of_wiles: + name: "Weave shawl of wiles" + description: "Weave a shawl of wiles." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "aetherloom" + level: 1 + - type: "skill" + gid: "aetherweave" + level: 4 + duration: + base: 100 + minimum: 35 + scaling: + - type: "skill" + gid: "aetherweave" + scale_value: 0.5 + - type: "stat" + gid: "aetherweave_speed" + scale_value: 1 + cost: + - type: "item" + gid: "pluma_moss" + quantity: 15 + - type: "item" + gid: "gem_dust" + quantity: 1 + - type: "item" + gid: "arcane_dust" + quantity: 15 + results: + - type: "item" + gid: "shawl_of_wiles" + xp: + - gid: "aetherweave" + value: 10 +craft_alacrity_ribbon: + name: "Weave alacrity ribbon" + description: "Weave an alacrity ribbon." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "aetherloom" + level: 1 + - type: "skill" + gid: "aetherweave" + level: 7 + duration: + base: 100 + minimum: 35 + scaling: + - type: "skill" + gid: "aetherweave" + scale_value: 0.5 + - type: "stat" + gid: "aetherweave_speed" + scale_value: 1 + cost: + - type: "item" + gid: "pluma_moss" + quantity: 15 + - type: "item" + gid: "wisp_of_the_current" + quantity: 1 + - type: "item" + gid: "arcane_dust" + quantity: 10 + results: + - type: "item" + gid: "alacrity_ribbon" + xp: + - gid: "aetherweave" + value: 12 craft_fine_aethermesh: name: "Weave fine aethermesh" description: "Weave a fine aethermesh." @@ -1840,7 +1914,7 @@ craft_fine_aethermesh: gid: "fine_aethermesh" xp: - gid: "aetherweave" - value: 10 + value: 15 craft_mending_salve: name: "Mix mending salve" description: "Mix a mending salve." diff --git a/data/items.yml b/data/items.yml index f54b0f6..cf475e5 100644 --- a/data/items.yml +++ b/data/items.yml @@ -1247,3 +1247,31 @@ simple_spellpage: whatnot: tags: - "material" +alacrity_ribbon: + name: "alacrity ribbon" + description: "A belt that increases the wearer's speed." + whatnot: + equip_slots: + - "waist" + equip_requirements: + - type: "skill" + gid: "beastslay" + level: 5 + equip_effects: + - type: "stat_change" + gid: "speed" + modifier: 1 +shawl_of_wiles: + name: "shawl of wiles" + description: "A garment that increases the wearer's evasion." + whatnot: + equip_slots: + - "back" + equip_requirements: + - type: "skill" + gid: "beastslay" + level: 5 + equip_effects: + - type: "stat_change" + gid: "evasion" + modifier: 1 |