mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-07 13:15:53 +02:00
added ALL spells; can add magic weapons/armor/shields using +X in name
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user