diff options
author | David Gay <david@davidgay.org> | 2021-06-16 20:36:35 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-16 20:36:35 -0400 |
commit | ee301b49e1615af53057017f25f5fc73951a5f0b (patch) | |
tree | 077dcde11a4ac4389412f4b8c2a93db47e6d71dc | |
parent | 727b174a520425050f5d7bbc2cf1f3e918c0f80a (diff) |
[data] New items and crafting activities: faint forging haste, faint seething haste, faint working haste
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | data/activities.yml | 105 | ||||
-rw-r--r-- | data/items.yml | 36 |
3 files changed, 143 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b8666b..2308752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ All notable changes to this project will be documented in this file. via a link on the Character view. (Hopefully) obviously, kills before this release were not counted. ### Items -- New items: apprentice wand, faint mana, minor mana, simple spellpage +- New items: apprentice wand, faint mana, minor mana, faint forging haste, faint seething haste, faint working haste, + simple spellpage - Iron lockpicks now increase synthsever speed by 10 seconds - Axes, pickaxes, and spades skill speed increase numbers all adjusted to compensate for base timer reductions diff --git a/data/activities.yml b/data/activities.yml index 9a2b7fb..8f2231a 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2851,6 +2851,108 @@ craft_faint_mana: xp: - gid: "omenbind" value: 10 +craft_faint_forging_haste: + name: "Bind faint forging haste" + description: "Bind an omen of faint forging haste." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "binding_array" + level: 1 + - type: "skill" + gid: "omenbind" + level: 5 + duration: + base: 75 + minimum: 35 + scaling: + - type: "skill" + gid: "omenbind" + scale_value: 1 + - type: "stat" + gid: "omenbind_speed" + scale_value: 1 + cost: + - type: "item" + gid: "vestige" + quantity: 10 + - type: "item" + gid: "iron_ingot" + quantity: 1 + results: + - type: "item" + gid: "faint_forging_haste" + xp: + - gid: "omenbind" + value: 20 +craft_faint_seething_haste: + name: "Bind faint seething haste" + description: "Bind an omen of faint seething haste." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "binding_array" + level: 1 + - type: "skill" + gid: "omenbind" + level: 5 + duration: + base: 75 + minimum: 35 + scaling: + - type: "skill" + gid: "omenbind" + scale_value: 1 + - type: "stat" + gid: "omenbind_speed" + scale_value: 1 + cost: + - type: "item" + gid: "vestige" + quantity: 10 + - type: "item" + gid: "burstshroom" + quantity: 10 + results: + - type: "item" + gid: "faint_seething_haste" + xp: + - gid: "omenbind" + value: 20 +craft_faint_working_haste: + name: "Bind faint working haste" + description: "Bind an omen of faint working haste." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "binding_array" + level: 1 + - type: "skill" + gid: "omenbind" + level: 5 + duration: + base: 75 + minimum: 35 + scaling: + - type: "skill" + gid: "omenbind" + scale_value: 1 + - type: "stat" + gid: "omenbind_speed" + scale_value: 1 + cost: + - type: "item" + gid: "vestige" + quantity: 10 + - type: "item" + gid: "salt" + quantity: 20 + results: + - type: "item" + gid: "faint_working_haste" + xp: + - gid: "omenbind" + value: 20 craft_minor_mana: name: "Bind minor mana" description: "Bind an omen of minor mana." @@ -2877,6 +2979,9 @@ craft_minor_mana: gid: "faint_mana" quantity: 2 - type: "item" + gid: "vestige" + quantity: 10 + - type: "item" gid: "shimmering_essence" quantity: 1 results: diff --git a/data/items.yml b/data/items.yml index a47a648..3c07863 100644 --- a/data/items.yml +++ b/data/items.yml @@ -1146,6 +1146,42 @@ minor_mana: - type: "stat_change" gid: "mana" modifier: 2 +faint_forging_haste: + name: "faint forging haste" + description: "A very weak omen that grants a very small increase to otherforge speed." + whatnot: + tags: + - "omen" + infix_skills: + - gid: "otherforge" + infix_effects: + - type: "stat_change" + gid: "otherforge_speed" + modifier: 2 +faint_seething_haste: + name: "faint seething haste" + description: "A very weak omen that grants a very small increase to fluxseethe speed." + whatnot: + tags: + - "omen" + infix_skills: + - gid: "fluxseethe" + infix_effects: + - type: "stat_change" + gid: "fluxseethe_speed" + modifier: 2 +faint_working_haste: + name: "faint working haste" + description: "A very weak omen that grants a very small increase to spicework speed." + whatnot: + tags: + - "omen" + infix_skills: + - gid: "spicework" + infix_effects: + - type: "stat_change" + gid: "spicework_speed" + modifier: 2 simple_spellpage: name: "simple spellpage" description: "An old piece of parchment covered in magical script. Deciphering it can yield knowledge of a spell." |