diff options
author | David Gay <david@davidgay.org> | 2021-06-16 20:08:39 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-16 20:08:39 -0400 |
commit | cece9dd05cb339dca40470cf1f1729a8a8a355fd (patch) | |
tree | 32baf982dae1ea1feaa171cc5243f3d5cb155036 | |
parent | 5e7d68eda4390a8506c448d709c11509d6756e6d (diff) |
[data] New item and craft activity: minor mana
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | data/activities.yml | 36 | ||||
-rw-r--r-- | data/items.yml | 12 |
3 files changed, 48 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e44e34..fa5e676 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,7 +47,7 @@ All notable changes to this project will be documented in this file. - New spells: Stinging Rays, Flame Whirl ### Items -- New items: apprentice wand, faint mana +- New items: apprentice wand, faint mana, minor mana - 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 9846863..4e18fbc 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2845,7 +2845,41 @@ craft_faint_mana: gid: "faint_mana" xp: - gid: "omenbind" - value: 6 + value: 10 +craft_minor_mana: + name: "Bind minor mana" + description: "Bind an omen of minor mana." + whatnot: + requirements: + - type: "hearth_amenity" + gid: "binding_array" + level: 2 + - type: "skill" + gid: "omenbind" + level: 10 + duration: + base: 90 + minimum: 35 + scaling: + - type: "skill" + gid: "omenbind" + scale_value: 1 + - type: "stat" + gid: "omenbind_speed" + scale_value: 1 + cost: + - type: "item" + gid: "faint_mana" + quantity: 2 + - type: "item" + gid: "shimmering_essence" + quantity: 1 + results: + - type: "item" + gid: "minor_mana" + xp: + - gid: "omenbind" + value: 30 havencast_light: name: "Cast Light" description: "Risk a little light." diff --git a/data/items.yml b/data/items.yml index a89591e..a47a648 100644 --- a/data/items.yml +++ b/data/items.yml @@ -1134,6 +1134,18 @@ faint_mana: - type: "stat_change" gid: "mana" modifier: 1 +minor_mana: + name: "minor mana" + description: "A weak omen that provides a small amount of magical energy." + whatnot: + tags: + - "omen" + infix_skills: + - gid: "havencast" + infix_effects: + - type: "stat_change" + gid: "mana" + 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." |