Ran flake8 and black linters, and other cleanup-related fixes.

Project now passes flake8 and black linter (also including more rst
cleanup). Moved latex related things to dedicated ``latex.py`` module,
and removed the ``makesheets -dF`` call from travis.
This commit is contained in:
Mark Wolfman
2021-04-16 11:10:17 -05:00
parent 9dfc02f3df
commit 30369ce1d4
81 changed files with 7668 additions and 4936 deletions
+8 -8
View File
@@ -9,16 +9,17 @@ class ZephyrStrike(Spell):
damage on a hit. Whether you hit or miss, your walking speed increases by 30
feet until the end of that turn.
"""
name = "Zephyr Strike"
level = 1
casting_time = "1 bonus action"
casting_range = "Self"
components = ('V',)
materials = """"""
components = ("V",)
materials = ""
duration = "Concentration, up to 1 minute"
ritual = False
magic_school = "Transmutation"
classes = ('Ranger',)
classes = ("Ranger",)
class ZoneOfTruth(Spell):
@@ -35,15 +36,14 @@ class ZoneOfTruth(Spell):
with a lie. Such creatures can be evasive in its answers as long as it remains
within the boundaries of the truth.
"""
name = "Zone Of Truth"
level = 2
casting_time = "1 action"
casting_range = "60 feet"
components = ('V', 'S')
materials = """"""
components = ("V", "S")
materials = ""
duration = "10 minutes"
ritual = False
magic_school = "Enchantment"
classes = ('Bard', 'Cleric', 'Paladin')
classes = ("Bard", "Cleric", "Paladin")