added ALL spells; can add magic weapons/armor/shields using +X in name

This commit is contained in:
Ben Cook
2019-03-21 16:32:18 -04:00
parent 9e7b3485b5
commit 9f608288cf
42 changed files with 14390 additions and 7098 deletions
+19
View File
@@ -0,0 +1,19 @@
from .spells import Spell
class Jump(Spell):
"""You touch a creature. The creatures jump distance is tripled until the spell
ends.
"""
name = "Jump"
level = 1
casting_time = "1 action"
casting_range = "Touch"
components = ('V', 'S', 'M')
materials = """A grasshoppers hind leg"""
duration = "1 minute"
ritual = False
magic_school = "Transmutation"
classes = ('Druid', 'Ranger', 'Sorcerer', 'Wizard')