added few new spells

This commit is contained in:
Ben Cook
2019-03-21 14:39:59 -04:00
parent e9f45326cc
commit 9e7b3485b5
2 changed files with 24 additions and 3 deletions
+3 -3
View File
@@ -821,7 +821,7 @@ class VisionsOfDistantRealms(Invocation):
at_will_spells = (spells.ArcaneEye,)
class VoiceOfTheChain(Invocation):
class VoiceOfTheChainMaster(Invocation):
"""You can communicate telepathically with your familiar and perceive through
your familiars senses as long as you are on the same plane of
existence. Additionally, while perceiving through your familiars senses,
@@ -831,7 +831,7 @@ class VoiceOfTheChain(Invocation):
**Prerequisite**: Pact of the Chain
"""
name = "Voice of the Chain"
name = "Voice of the Chain Master"
class WhispersOfTheGrave(Invocation):
@@ -864,7 +864,7 @@ class AspectOfTheMoon(Invocation):
name = "Aspect of the Moon"
class CloakOfFiles(Invocation):
class CloakOfFlies(Invocation):
"""As a bonus action, you can surround yourselfwith a magical aura that looks
like buzzing flies. The aura extends 5 feet from you in every direction,
but not through total cover. It lasts until youre incapacitated or you
+21
View File
@@ -2121,3 +2121,24 @@ class Mending(Spell):
classes = ('Bard', 'Cleric', 'Druid', 'Sorcerer', 'Wizard')
class CloudOfDaggers(Spell):
"""You fill the air with spinning daggers in a cube 5 feet on each side, centered
on a point you choose within range. A creature takes 4d4 slashing damage when it
enters the spells area for the first time on a turn or starts its turn there.
At Higher Levels: When you cast this spell using a spell slot of 3rd level or
higher, the damage increases by 2d4 for each slot level above 2nd.
"""
name = "Cloud Of Daggers"
level = 2
casting_time = "1 action"
casting_range = "60 feet"
components = ('V', 's', 'm')
materials = """A sliver of glass"""
duration = "Concentration, up to 1 minute"
ritual = False
magic_school = "Conjuration"
classes = ('Bard', 'Sorcerer', 'Warlock', 'Wizard')