118 lines
2.7 KiB
YAML
118 lines
2.7 KiB
YAML
# Moar enchantment? ENCHANTMENT!
|
|
|
|
# Ability bonuses
|
|
- name: Dexterity
|
|
school: Transmutation
|
|
grade: moderate
|
|
spells: ["Cat's Grace"]
|
|
feats: [Craft Wondrous Item]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to dexterity.
|
|
|
|
- name: Strength
|
|
school: Transmutation
|
|
grade: moderate
|
|
spell: ["Bull's Strength"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to strength.
|
|
|
|
- name: Health
|
|
aliases: ["Constitution"]
|
|
school: Transmutation
|
|
grade: moderate
|
|
spell: ["Bear's Endurance"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to constitution.
|
|
|
|
- name: Wisdom
|
|
school: Transmutation
|
|
grade: moderate
|
|
spell: ["Owl's Wisdom"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to wisdom.
|
|
|
|
- name: Intellect
|
|
aliases: ["Intelligence"]
|
|
school: Transmutation
|
|
grade: moderate
|
|
spell: ["Fox's Cunning"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to intelligence.
|
|
|
|
- name: Charisma
|
|
school: Transmutation
|
|
grade: moderate
|
|
spell: ["Eagle's Splendor"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to charisma.
|
|
|
|
- name: Protection
|
|
school: abjuration
|
|
grade: faint
|
|
spell: ["Shield of Faith"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 2000)
|
|
description: >-
|
|
This item grants a deflection bonus to armor class.
|
|
|
|
- name: Natural Armor
|
|
school: transmutation
|
|
grade: faint
|
|
spell: ["Barkskin"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 2000)
|
|
description: >-
|
|
This item grants an enhancement bonus to natural armor.
|
|
|
|
- name: Resistance
|
|
school: abjuration
|
|
grade: faint
|
|
spell: ["Resistance"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
|
description: >-
|
|
This item grants an enhancement bonus to all saving throws (fortitude,
|
|
reflex, will).
|
|
|
|
- name: Hide
|
|
school: illusion
|
|
grade: faint
|
|
spell: ["Invisibility"]
|
|
feats: ["Craft Wondrous Item"]
|
|
has_bonus: true
|
|
lua:
|
|
price: (math.pow(ability.bonus, 2) * 100)
|
|
description: >-
|
|
This item grants a given enhancement bonus to the skill Hide.
|
|
|
|
#EOF
|