running cleanyaml.py to clean up armor.yaml, fix #70
parent
996bd1c323
commit
941b54ecd4
|
@ -213,25 +213,37 @@ armorcategory:
|
||||||
- Medium Armor
|
- Medium Armor
|
||||||
- Heavy Armor
|
- Heavy Armor
|
||||||
armorgroup:
|
armorgroup:
|
||||||
- descr: TODO
|
- descr: The armor is so flexible it can bend with a critical hit and absorb some
|
||||||
|
of the blow. Reduce the damage from critical hits by either 4 + the value of the
|
||||||
|
armor’s potency rune for medium armor, or 6 + the value of the armor’s potency
|
||||||
|
rune for heavy armor. This can’t reduce the damage to less than the damage rolled
|
||||||
|
for the hit before doubling for a critical hit.
|
||||||
name: Chain
|
name: Chain
|
||||||
source:
|
source:
|
||||||
- abbr: CRB
|
- abbr: CRB
|
||||||
page_start: 275
|
page_start: 275
|
||||||
page_stop: 275
|
page_stop: 275
|
||||||
- descr: TODO
|
- descr: The numerous overlapping pieces of this armor protect you from piercing attacks.
|
||||||
|
You gain resistance to piercing damage equal to 1 + the value of the armor’s potency
|
||||||
|
rune for medium armor, or 2 + the value of the armor’s potency rune for heavy
|
||||||
|
armor.
|
||||||
name: Composite
|
name: Composite
|
||||||
source:
|
source:
|
||||||
- abbr: CRB
|
- abbr: CRB
|
||||||
page_start: 275
|
page_start: 275
|
||||||
page_stop: 275
|
page_stop: 275
|
||||||
- descr: TODO
|
- descr: The thick second skin of the armor disperses blunt force to reduce bludgeoning
|
||||||
|
damage. You gain resistance to bludgeoning damage equal to 1 + the value of the
|
||||||
|
armor’s potency rune for medium armor, or 2 + the value of the armor’s potency
|
||||||
|
rune for heavy armor.
|
||||||
name: Leather
|
name: Leather
|
||||||
source:
|
source:
|
||||||
- abbr: CRB
|
- abbr: CRB
|
||||||
page_start: 275
|
page_start: 275
|
||||||
page_stop: 275
|
page_stop: 275
|
||||||
- descr: TODO
|
- descr: The sturdy plate provides no purchase for a cutting edge. You gain resistance
|
||||||
|
to slashing damage equal to 1 + the value of the armor’s potency rune for medium
|
||||||
|
armor, or 2 + the value of the armor’s potency rune for heavy armor.
|
||||||
name: Plate
|
name: Plate
|
||||||
source:
|
source:
|
||||||
- abbr: CRB
|
- abbr: CRB
|
||||||
|
|
|
@ -3,23 +3,13 @@
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
yfiles = ["actions.yaml",
|
yfiles = [
|
||||||
"backgrounds.yaml",
|
"actions.yaml", "armor.yaml", "backgrounds.yaml", "basics.yaml",
|
||||||
"basics.yaml",
|
"bulks.yaml", "conditions.yaml", "damage.yaml",
|
||||||
"bulks.yaml",
|
"feats-levels-false-matches.yaml", "feats.yaml", "langs.yaml",
|
||||||
"conditions.yaml",
|
"monsters.yaml", "requirements.yaml", "senses.yaml", "skills.yaml",
|
||||||
"damage.yaml",
|
"sources.yaml", "spells.yaml", "traits.yaml", "triggers.yaml"
|
||||||
"feats-levels-false-matches.yaml",
|
]
|
||||||
"feats.yaml",
|
|
||||||
"langs.yaml",
|
|
||||||
"monsters.yaml",
|
|
||||||
"requirements.yaml",
|
|
||||||
"senses.yaml",
|
|
||||||
"skills.yaml",
|
|
||||||
"sources.yaml",
|
|
||||||
"spells.yaml",
|
|
||||||
"traits.yaml",
|
|
||||||
"triggers.yaml"]
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in New Issue