Files
dungeon-sheets/dungeonsheets/spells/spells_j.py
T

20 lines
463 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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')