2015-09-29 21:16:33 +02:00
|
|
|
# Moar enchantment? ENCHANTMENT!
|
|
|
|
|
|
|
|
# Ability bonuses
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Dexterity
|
2015-09-29 21:16:33 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
|
|
|
spells: ["Cat's Grace"]
|
2015-09-29 21:18:41 +02:00
|
|
|
feats: [Craft Wondrous Item]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 13:19:09 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to dexterity.
|
2015-10-01 13:19:09 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Strength
|
2015-10-01 13:19:09 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
2015-10-01 19:55:12 +02:00
|
|
|
spell: ["Bull's Strength"]
|
2015-10-01 13:19:09 +02:00
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 13:19:09 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to strength.
|
2015-10-01 13:19:09 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Health
|
|
|
|
aliases: ["Constitution"]
|
2015-10-01 13:19:09 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
2015-10-01 19:55:12 +02:00
|
|
|
spell: ["Bear's Endurance"]
|
2015-10-01 13:19:09 +02:00
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 13:19:09 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to constitution.
|
2015-10-01 13:19:09 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Wisdom
|
2015-10-01 13:19:09 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
2015-10-01 19:55:12 +02:00
|
|
|
spell: ["Owl's Wisdom"]
|
2015-10-01 13:19:09 +02:00
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 13:19:09 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to wisdom.
|
2015-10-01 13:19:09 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Intellect
|
|
|
|
aliases: ["Intelligence"]
|
2015-10-01 13:19:09 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
|
|
|
spell: ["Fox's Cunning"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 13:19:09 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to intelligence.
|
2015-10-01 13:19:09 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Charisma
|
2015-10-01 13:19:09 +02:00
|
|
|
school: Transmutation
|
|
|
|
grade: moderate
|
|
|
|
spell: ["Eagle's Splendor"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 15:41:38 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to charisma.
|
2015-10-01 15:41:38 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Protection
|
2015-10-01 15:41:38 +02:00
|
|
|
school: abjuration
|
|
|
|
grade: faint
|
|
|
|
spell: ["Shield of Faith"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 2000)
|
2015-10-01 15:41:38 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants a deflection bonus to armor class.
|
2015-10-01 15:41:38 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Natural Armor
|
2015-10-01 15:41:38 +02:00
|
|
|
school: transmutation
|
|
|
|
grade: faint
|
|
|
|
spell: ["Barkskin"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 2000)
|
2015-10-01 15:41:38 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to natural armor.
|
2015-10-01 15:41:38 +02:00
|
|
|
|
2015-10-01 19:55:12 +02:00
|
|
|
- name: Resistance
|
2015-10-01 15:41:38 +02:00
|
|
|
school: abjuration
|
|
|
|
grade: faint
|
|
|
|
spell: ["Resistance"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 19:55:12 +02:00
|
|
|
has_bonus: true
|
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 1000)
|
2015-10-01 15:41:38 +02:00
|
|
|
description: >-
|
2015-10-01 19:55:12 +02:00
|
|
|
This item grants an enhancement bonus to all saving throws (fortitude,
|
2015-10-01 15:41:38 +02:00
|
|
|
reflex, will).
|
|
|
|
|
2015-10-01 18:05:30 +02:00
|
|
|
- name: Hide
|
|
|
|
school: illusion
|
|
|
|
grade: faint
|
|
|
|
spell: ["Invisibility"]
|
|
|
|
feats: ["Craft Wondrous Item"]
|
2015-10-01 18:08:28 +02:00
|
|
|
has_bonus: true
|
2015-10-01 18:05:30 +02:00
|
|
|
lua:
|
|
|
|
price: (math.pow(ability.bonus, 2) * 100)
|
|
|
|
description: >-
|
|
|
|
This item grants a given enhancement bonus to the skill Hide.
|
|
|
|
|
|
|
|
#EOF
|