diff --git a/wondrous/abilities.yml b/wondrous/abilities.yml index 5226227..b4dc4c0 100644 --- a/wondrous/abilities.yml +++ b/wondrous/abilities.yml @@ -129,6 +129,48 @@ This item grants an enhancement bonus to all saving throws (fortitude, reflex, will). +- name: Fortitude + school: abjuration + grade: faint + spell: ["Resistance"] + feats: ["Craft Wondrous Item"] + bonus: + required: true + maximium: 10 + minimum: 1 + lua: + price: (math.pow(ability.bonus, 2) * 1000) + description: >- + This item grants an enhancement bonus to fortitude saving throws. + +- name: Will + school: abjuration + grade: faint + spell: ["Resistance"] + feats: ["Craft Wondrous Item"] + bonus: + required: true + maximium: 10 + minimum: 1 + lua: + price: (math.pow(ability.bonus, 2) * 1000) + description: >- + This item grants an enhancement bonus to will saving throws. + +- name: Reflex + school: abjuration + grade: faint + spell: ["Resistance"] + feats: ["Craft Wondrous Item"] + bonus: + required: true + maximium: 10 + minimum: 1 + lua: + price: (math.pow(ability.bonus, 2) * 1000) + description: >- + This item grants an enhancement bonus to reflex saving throws. + - name: Spell resistance school: abjuration grade: moderate @@ -142,6 +184,19 @@ description: >- This item grants the wearer spell resistance. +- name: Power + school: transmutation + grade: strong + feats: ["Craft Wondrous Item"] + bonus: + required: true + minimum: 1 + maximum: 9 + lua: + price: (math.pow(ability.bonus, 2) * 1000) + description: >- + This item grants the power of recalling a spell of the given level. + - name: Hide school: illusion grade: faint