Fix dash words and some other typos

This commit is contained in:
Tomáš Heger
2020-05-01 01:22:24 +02:00
parent bb23154df8
commit 0df5d50fe5
18 changed files with 1757 additions and 1762 deletions
+19 -19
View File
@@ -18,7 +18,7 @@ class PaladinOath(SubClass):
if self.level >= lvl:
spells.extend(sps)
return spells
# All Oath spells are both known and prepared
@property
def spells_prepared(self):
@@ -69,7 +69,7 @@ class OathOfDevotion(PaladinOath):
features_by_level[15] = [features.PurityOfSpirit]
features_by_level[20] = [features.HolyNimbus]
class OathOfAncients(PaladinOath):
"""The Oath of the Ancients is as old as the race of elves and the rituals of
the druids. Sometimes called fey knights, green knights, or horned knights,
@@ -78,7 +78,7 @@ class OathOfAncients(PaladinOath):
life-giving things of the world, not necessarily because they believe in
principles of honor, courage, and justice. They adorn their armor and
clothing with images of growing things-leaves, antlers, or flowers-to
reflect their commitment to preserving life and light in the world.
reflect their commitment to preserving life and light in the world.
**Tenets of the Ancients**: The tenets of the Oath of the Ancients have
been preserved for uncounted centuries. This oath emphasizes the
@@ -107,16 +107,16 @@ class OathOfAncients(PaladinOath):
13: [spells.IceStorm, spells.Stoneskin],
17: [spells.CommuneWithNature, spells.TreeStride]}
features_by_level = defaultdict(list)
class OathOfVengance(PaladinOath):
"""The Oath of Vengeance is a solemn commitment to punish those who have
committed a grievous sin. When evil forces slaughter helpless villagers,
when an entire people turns against the will of the gods, when a thieves'
guild grows too violent and powerful, when a dragon rampages through the
countryside-at times like these, paladins arise and swear an Oath of
Vengeance to set right that which has gone wrong. To these paladins-
sometimes called avengers or dark knights-their own purity is not as
countryside - at times like these, paladins arise and swear an Oath of
Vengeance to set right that which has gone wrong. To these paladins -
sometimes called avengers or dark knights - their own purity is not as
important as delivering justice.
**Tenets of Vengance**: The tenets of the Oath of Vengeance vary by
@@ -146,8 +146,8 @@ class OathOfVengance(PaladinOath):
13: [spells.Banishment, spells.DimensionDoor],
17: [spells.HoldMonster, spells.Scrying]}
features_by_level = defaultdict(list)
class OathOfCrown(PaladinOath):
"""The Oath of the Crown is sworn to the ideals of civilization, be it the
spirit of a nation, fealty to a sovereign, or service to a deity of law and
@@ -185,8 +185,8 @@ class OathOfCrown(PaladinOath):
13: [spells.Banishment, spells.GuardianOfFaith],
17: [spells.CircleOfPower, spells.Geas]}
features_by_level = defaultdict(list)
class OathOfConquest(PaladinOath):
"""The Oath of Conquest calls to paladins who seek glory in battle and the
subjugation of their enemies. It isn't enough for these paladins to
@@ -213,7 +213,7 @@ class OathOfConquest(PaladinOath):
--Rule with an Iron Fist. Once you have conquered, tolerate no
dissent. Your word is law. Those who obey it shall be favored. Those who
defy it shall be punished as an example to all who might follow.
defy it shall be punished as an example to all who might follow.
--Strength Above All. You shall rule until a stronger one arises. Then you
must grow mightier and meet the challenge, or fall to your own ruin.
@@ -226,8 +226,8 @@ class OathOfConquest(PaladinOath):
13: [spells.DominateBeast, spells.Stoneskin],
17: [spells.Cloudkill, spells.DominatePerson]}
features_by_level = defaultdict(list)
class OathOfRedemption(PaladinOath):
"""The Oath of Redemption sets a paladin on a difficult path, one that requires
a holy warrior to use violence only as a last resort. Paladins who dedicate
@@ -285,7 +285,7 @@ class OathOfRedemption(PaladinOath):
class OathOfZor(PaladinOath):
"""The Oath of Zor
**Tenets of Zor**:
**Tenets of Zor**:
--Courage. Never fear to act, though caution is wise.
@@ -304,7 +304,7 @@ class OathOfZor(PaladinOath):
the seed of righteousness in a creature, you must work day after day to
allow that seed to survive and flourish.
"""
name = "Oath of Zor"
_oath_spells = {3: [spells.Sanctuary, spells.Sleep],
@@ -318,8 +318,8 @@ class OathOfZor(PaladinOath):
features_by_level[7] = [features.AuraOfTheGuardian]
features_by_level[15] = [features.ProtectiveSpirit]
features_by_level[20] = [features.EmissaryOfRedemption]
class Paladin(CharClass):
name = 'Paladin'
hit_dice_faces = 10