Files
dungeon-sheets/dungeonsheets/spells/spells_j.py
T
2019-09-09 12:45:22 -04:00

20 lines
459 B
Python

from .spells import Spell
class Jump(Spell):
"""You touch a creature. The creature's 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 grasshopper's hind leg"""
duration = "1 minute"
ritual = False
magic_school = "Transmutation"
classes = ('Druid', 'Ranger', 'Sorcerer', 'Wizard')