mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-05 20:38:26 +02:00
Merge branch 'master' of https://github.com/rkubosz/dungeon-sheets into rkubosz-master
This commit is contained in:
@@ -34,7 +34,7 @@ class MoonCircle(SubClass):
|
|||||||
haunt the deepest parts of the wilderness, where they might go for weeks on
|
haunt the deepest parts of the wilderness, where they might go for weeks on
|
||||||
end before crossing paths with another humanoid creature, let alone another
|
end before crossing paths with another humanoid creature, let alone another
|
||||||
druid.
|
druid.
|
||||||
|
|
||||||
Changeable as the moon, a druid of this circle might prowl as a great cat
|
Changeable as the moon, a druid of this circle might prowl as a great cat
|
||||||
one night, soar over the treetops as an eagle the next day, and crash
|
one night, soar over the treetops as an eagle the next day, and crash
|
||||||
through the undergrowth in bear form to drive off a trespassing
|
through the undergrowth in bear form to drive off a trespassing
|
||||||
@@ -99,6 +99,33 @@ class ShepherdCircle(SubClass):
|
|||||||
features_by_level[14] = [features.FaithfulSummons]
|
features_by_level[14] = [features.FaithfulSummons]
|
||||||
|
|
||||||
|
|
||||||
|
#GGTR
|
||||||
|
class SporesCircle(SubClass):
|
||||||
|
"""Druids of the Circle of Spores find beauty in decay. They see within
|
||||||
|
mold and other fungi the ability to transform lifeless material into
|
||||||
|
abundant, ableit somewhat strange, life.
|
||||||
|
|
||||||
|
These druids believe that life and death are parts of a grand cycle, with
|
||||||
|
one leading to the other and then back again. Death isn't the end of life,
|
||||||
|
but instead a change of state that sees life shift into a new form.
|
||||||
|
|
||||||
|
Druids of this circle have a complex relationship with the undead. Unlike
|
||||||
|
most other druids, they see nothing inherently wrong with undeath, which
|
||||||
|
they consider to be a companion to life and death. But these druids believe
|
||||||
|
that the natural cycle is heathiest when each segment of it is vibrant and
|
||||||
|
changing. Undead that seek to replace all life with undeath, or that try to
|
||||||
|
avoid passing to a final rest, violate the cycle and must be thwarted.
|
||||||
|
"""
|
||||||
|
|
||||||
|
name = "Circle of Spores"
|
||||||
|
circle = "spores"
|
||||||
|
features_by_level = defaultdict(list)
|
||||||
|
features_by_level[2] = [features.CircleSpells, features.HaloOfSpores, features.SymbioticEntity]
|
||||||
|
features_by_level[6] = [features.FungalInfestation]
|
||||||
|
features_by_level[10] = [features.SpreadingSpores]
|
||||||
|
features_by_level[14] = [features.FungalBody]
|
||||||
|
|
||||||
|
|
||||||
class Druid(CharClass):
|
class Druid(CharClass):
|
||||||
name = 'Druid'
|
name = 'Druid'
|
||||||
_wild_shapes = ()
|
_wild_shapes = ()
|
||||||
@@ -129,7 +156,7 @@ class Druid(CharClass):
|
|||||||
features_by_level[18] = [features.TimelessBody, features.BeastSpells]
|
features_by_level[18] = [features.TimelessBody, features.BeastSpells]
|
||||||
features_by_level[20] = [features.Archdruid]
|
features_by_level[20] = [features.Archdruid]
|
||||||
subclasses_available = (LandCircle, MoonCircle, DreamsCircle,
|
subclasses_available = (LandCircle, MoonCircle, DreamsCircle,
|
||||||
ShepherdCircle)
|
ShepherdCircle, SporesCircle)
|
||||||
spellcasting_ability = 'wisdom'
|
spellcasting_ability = 'wisdom'
|
||||||
spell_slots_by_level = {
|
spell_slots_by_level = {
|
||||||
1: (2, 2, 0, 0, 0, 0, 0, 0, 0, 0),
|
1: (2, 2, 0, 0, 0, 0, 0, 0, 0, 0),
|
||||||
@@ -181,7 +208,7 @@ class Druid(CharClass):
|
|||||||
def all_wild_shapes(self):
|
def all_wild_shapes(self):
|
||||||
"""Return all wild shapes, regardless of validity."""
|
"""Return all wild shapes, regardless of validity."""
|
||||||
return self._wild_shapes
|
return self._wild_shapes
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def wild_shapes(self):
|
def wild_shapes(self):
|
||||||
"""Return a list of valid wild shapes for this Druid."""
|
"""Return a list of valid wild shapes for this Druid."""
|
||||||
@@ -191,7 +218,7 @@ class Druid(CharClass):
|
|||||||
if self.can_assume_shape(shape):
|
if self.can_assume_shape(shape):
|
||||||
valid_shapes.append(shape)
|
valid_shapes.append(shape)
|
||||||
return valid_shapes
|
return valid_shapes
|
||||||
|
|
||||||
@wild_shapes.setter
|
@wild_shapes.setter
|
||||||
def wild_shapes(self, new_shapes):
|
def wild_shapes(self, new_shapes):
|
||||||
actual_shapes = []
|
actual_shapes = []
|
||||||
@@ -211,23 +238,23 @@ class Druid(CharClass):
|
|||||||
actual_shapes.append(new_shape)
|
actual_shapes.append(new_shape)
|
||||||
# Save the updated list for later
|
# Save the updated list for later
|
||||||
self._wild_shapes = actual_shapes
|
self._wild_shapes = actual_shapes
|
||||||
|
|
||||||
def can_assume_shape(self, shape: monsters.Monster)-> bool:
|
def can_assume_shape(self, shape: monsters.Monster)-> bool:
|
||||||
"""Determine if a given shape meets the requirements for transforming.
|
"""Determine if a given shape meets the requirements for transforming.
|
||||||
|
|
||||||
See Pg 66 of player's handbook.
|
See Pg 66 of player's handbook.
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
==========
|
==========
|
||||||
shape
|
shape
|
||||||
A monster that the Druid wishes to transform into.
|
A monster that the Druid wishes to transform into.
|
||||||
|
|
||||||
Returns
|
Returns
|
||||||
=======
|
=======
|
||||||
can_assume
|
can_assume
|
||||||
True if the monster meets the C/R, swim and flying speed
|
True if the monster meets the C/R, swim and flying speed
|
||||||
restrictions.
|
restrictions.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
# Determine acceptable states based on druid level
|
# Determine acceptable states based on druid level
|
||||||
if self.level < 2:
|
if self.level < 2:
|
||||||
@@ -258,11 +285,11 @@ class Druid(CharClass):
|
|||||||
valid_fly = (max_fly is None or shape.fly_speed <= max_fly)
|
valid_fly = (max_fly is None or shape.fly_speed <= max_fly)
|
||||||
can_assume = shape.is_beast and valid_cr and valid_swim and valid_fly
|
can_assume = shape.is_beast and valid_cr and valid_swim and valid_fly
|
||||||
return can_assume
|
return can_assume
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def spells(self):
|
def spells(self):
|
||||||
return tuple(S() for S in self.spells_prepared)
|
return tuple(S() for S in self.spells_prepared)
|
||||||
|
|
||||||
@spells.setter
|
@spells.setter
|
||||||
def spells(self, val):
|
def spells(self, val):
|
||||||
if len(val) > 0:
|
if len(val) > 0:
|
||||||
|
|||||||
+139
-28
@@ -13,7 +13,7 @@ class WildShape(Feature):
|
|||||||
flying or swimming speed.
|
flying or swimming speed.
|
||||||
|
|
||||||
2nd Level: Max CR 1/4, No Flying/Swimming (ex: Wolf)
|
2nd Level: Max CR 1/4, No Flying/Swimming (ex: Wolf)
|
||||||
|
|
||||||
4th Level: Max CR 1/2, No Flying (ex: Crocodile)
|
4th Level: Max CR 1/2, No Flying (ex: Crocodile)
|
||||||
|
|
||||||
8th Level: Max CR 1 (ex: Giant Eagle)
|
8th Level: Max CR 1 (ex: Giant Eagle)
|
||||||
@@ -92,7 +92,7 @@ class BeastSpells(Feature):
|
|||||||
name = "Beast Spells"
|
name = "Beast Spells"
|
||||||
source = "Druid"
|
source = "Druid"
|
||||||
|
|
||||||
|
|
||||||
class Archdruid(Feature):
|
class Archdruid(Feature):
|
||||||
"""At 20th level, you can use your Wild Shape an unlimited number of times.
|
"""At 20th level, you can use your Wild Shape an unlimited number of times.
|
||||||
|
|
||||||
@@ -167,7 +167,7 @@ class _CircleSpells(Feature):
|
|||||||
self.spells_known.extend(sps)
|
self.spells_known.extend(sps)
|
||||||
self.spells_prepared.extend(sps)
|
self.spells_prepared.extend(sps)
|
||||||
super().__init__(owner=owner)
|
super().__init__(owner=owner)
|
||||||
|
|
||||||
|
|
||||||
class ArcticSpells(_CircleSpells):
|
class ArcticSpells(_CircleSpells):
|
||||||
"""Your mystical connection to the land infuses you with the ability to cast
|
"""Your mystical connection to the land infuses you with the ability to cast
|
||||||
@@ -281,6 +281,22 @@ class UnderdarkSpells(_CircleSpells):
|
|||||||
9: [spells.Cloudkill, spells.InsectPlague]}
|
9: [spells.Cloudkill, spells.InsectPlague]}
|
||||||
|
|
||||||
|
|
||||||
|
class SporesSpells(_CircleSpells):
|
||||||
|
"""Your symbiotic link do fungus and your ability to tap into the cycle of
|
||||||
|
life and death grants you access to certain spells.
|
||||||
|
|
||||||
|
These spells are included in your Spell Sheet.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
_name = 'Spores'
|
||||||
|
_spells = {2: [spells.ChillTouch],
|
||||||
|
3: [spells.BlindnessDeafness, spells.GentleRepose],
|
||||||
|
5: [spells.AnimateDead, spells.GaseousForm],
|
||||||
|
7: [spells.Blight, spells.Confusion],
|
||||||
|
9: [spells.Cloudkill, spells.Contagion]}
|
||||||
|
|
||||||
|
|
||||||
class CircleSpells(FeatureSelector, _CircleSpells):
|
class CircleSpells(FeatureSelector, _CircleSpells):
|
||||||
"""
|
"""
|
||||||
Select a land where you became a druid in feature_choices in your .py file:
|
Select a land where you became a druid in feature_choices in your .py file:
|
||||||
@@ -300,7 +316,9 @@ class CircleSpells(FeatureSelector, _CircleSpells):
|
|||||||
swamp
|
swamp
|
||||||
|
|
||||||
underdark
|
underdark
|
||||||
|
|
||||||
|
spores
|
||||||
|
|
||||||
"""
|
"""
|
||||||
options = {'arctic': ArcticSpells,
|
options = {'arctic': ArcticSpells,
|
||||||
'coast': CoastSpells,
|
'coast': CoastSpells,
|
||||||
@@ -309,9 +327,10 @@ class CircleSpells(FeatureSelector, _CircleSpells):
|
|||||||
'grassland': GrasslandSpells,
|
'grassland': GrasslandSpells,
|
||||||
'mountain': MountainSpells,
|
'mountain': MountainSpells,
|
||||||
'swamp': SwampSpells,
|
'swamp': SwampSpells,
|
||||||
'underdark': UnderdarkSpells}
|
'underdark': UnderdarkSpells,
|
||||||
|
'spores': SporesSpells}
|
||||||
name = "Circle Spells (Select One)"
|
name = "Circle Spells (Select One)"
|
||||||
source = "Druid (Circle of the Land)"
|
source = "Druid (Circle of the Land/Spores)"
|
||||||
|
|
||||||
|
|
||||||
class LandsStride(Feature):
|
class LandsStride(Feature):
|
||||||
@@ -456,7 +475,7 @@ class HiddenPaths(Feature):
|
|||||||
fey use to traverse space in the blink of an eye. As a bonus action on your
|
fey use to traverse space in the blink of an eye. As a bonus action on your
|
||||||
turn, you can teleport up to 60 feet to an unoccupied space you can
|
turn, you can teleport up to 60 feet to an unoccupied space you can
|
||||||
see.
|
see.
|
||||||
|
|
||||||
Alternatively, you can use your action to teleport one willing creature you
|
Alternatively, you can use your action to teleport one willing creature you
|
||||||
touch up to 30 feet to an unoccupied space you can see. You can use this
|
touch up to 30 feet to an unoccupied space you can see. You can use this
|
||||||
feature a number of times equal to your Wisdom modifier (minimum of once),
|
feature a number of times equal to your Wisdom modifier (minimum of once),
|
||||||
@@ -466,7 +485,7 @@ class HiddenPaths(Feature):
|
|||||||
name = "Hidden Paths"
|
name = "Hidden Paths"
|
||||||
source = "Druid (Circle of the Moon)"
|
source = "Druid (Circle of the Moon)"
|
||||||
|
|
||||||
|
|
||||||
class WalkerInDreams(Feature):
|
class WalkerInDreams(Feature):
|
||||||
"""At 14th level, the magic of the Feywild grants you the ability to travel
|
"""At 14th level, the magic of the Feywild grants you the ability to travel
|
||||||
mentally or physically through dreamlands. When you finish a short rest,
|
mentally or physically through dreamlands. When you finish a short rest,
|
||||||
@@ -545,12 +564,14 @@ class MightySummoner(Feature):
|
|||||||
than normal. Any beast or fey summoned or created by a spell that you cast
|
than normal. Any beast or fey summoned or created by a spell that you cast
|
||||||
gains the. following benefits:
|
gains the. following benefits:
|
||||||
|
|
||||||
• The creature appears with more hit points than normal: 2 extra hit
|
- The creature appears with more hit points than normal: 2 extra hit
|
||||||
points per Hit Die it has.
|
|
||||||
|
- The creature appears with more hit points than normal: 2 extra hit
|
||||||
• The damage from its natural weapons is considered magical for the
|
points per Hit Die it has.
|
||||||
purpose of overcoming immunity and resistance to nonmagical attacks and
|
|
||||||
damage.
|
- The damage from its natural weapons is considered magical for the
|
||||||
|
purpose of overcoming immunity and resistance to nonmagical attacks and
|
||||||
|
damage.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Mighty Summoner"
|
name = "Mighty Summoner"
|
||||||
@@ -558,10 +579,11 @@ class MightySummoner(Feature):
|
|||||||
|
|
||||||
|
|
||||||
class GuardianSpirit(Feature):
|
class GuardianSpirit(Feature):
|
||||||
"""Beginning at 10th level, your Spirit Totem safeguards the beasts and fey
|
"""Beginning at 10th level, your Spirit Totem safeguards the beasts
|
||||||
that you call forth with your magic. When a beast or fey that you summoned
|
and fey that you call forth with your magic. When a beast or fey
|
||||||
or created with a spell ends its turn in your Spirit Totem aura, that crea-
|
that you summoned or created with a spell ends its turn in your
|
||||||
ture regains a number of hit points equal to halfyour druid level.
|
Spirit Totem aura, that creature regains a number of hit points
|
||||||
|
equal to half your druid level.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Guardian Spirit"
|
name = "Guardian Spirit"
|
||||||
@@ -569,19 +591,108 @@ class GuardianSpirit(Feature):
|
|||||||
|
|
||||||
|
|
||||||
class FaithfulSummons(Feature):
|
class FaithfulSummons(Feature):
|
||||||
"""Starting at 14th level, the nature spirits you commune with protect you
|
"""Starting at 14th level, the nature spirits you commune with protect
|
||||||
when you are the most defenseless. Ifyou are reduced to 0 hit points or are
|
you when you are the most defenseless. Ifyou are reduced to 0 hit
|
||||||
incapacitated against your will, you can immediately gain the benefits of
|
points or are incapacitated against your will, you can immediately
|
||||||
conjure animals as if it were cast using a 9th-level spell slot. It summons
|
gain the benefits of conjure animals as if it were cast using a
|
||||||
four beasts of your choice that are challenge rating 2 or lower. The
|
9th-level spell slot. It summons four beasts of your choice that
|
||||||
conjured beasts appear within 20 feet of you. If they receive no commands
|
are challenge rating 2 or lower. The conjured beasts appear within
|
||||||
from you, they protect you from harm and attack your foes. The spell lasts
|
20 feet of you. If they receive no commands from you, they protect
|
||||||
for 1 hour, requiring no concentration, or until you dismiss it (no action
|
you from harm and attack your foes. The spell lasts for 1 hour,
|
||||||
required). Once you use this feature, you can't use it again until you
|
requiring no concentration, or until you dismiss it (no action
|
||||||
finish a long rest
|
required). Once you use this feature, you can't use it again until
|
||||||
|
you finish a long rest
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Faithful Summons"
|
name = "Faithful Summons"
|
||||||
source = "Druid (Circle of the Shepherd)"
|
source = "Druid (Circle of the Shepherd)"
|
||||||
|
|
||||||
|
|
||||||
|
#Circle of Spores
|
||||||
|
class HaloOfSpores(Feature):
|
||||||
|
"""Starting at 2nd level, you are surrounded by invisible, necrotic spores
|
||||||
|
that are harmless until you unleash them on a creature nearby. When a
|
||||||
|
creature you can see moves into a space within 10 feet of you or starts its
|
||||||
|
turn there, you can use your reaction to deal 1d4 necrotic damage to that
|
||||||
|
creature unless it succeeds on a Constitution saving throw against your
|
||||||
|
spell save DC. The necrotic damage increases to 1d6 at 6th level, 1d8 at
|
||||||
|
10th level, and 1d10 at 14th level
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Halo of Spores"
|
||||||
|
source = "Druid (Cirlce of Spores)"
|
||||||
|
|
||||||
|
|
||||||
|
class SymbioticEntity(Feature):
|
||||||
|
"""At 2nd level, you gain the ability to channel magic into your spores. As
|
||||||
|
an action, you can expend a use of your Wild Shape feature to awaken those
|
||||||
|
spores, rather than transforming into a beast form, and you gain 4
|
||||||
|
temporary hit points for each level you have in this class. While this
|
||||||
|
feature is active, you gain the following benefits:
|
||||||
|
|
||||||
|
-- When you deal your Halo of Spores damage, roll the damage die a second
|
||||||
|
time and add it to the total.
|
||||||
|
|
||||||
|
-- Your melee weapon attacks deal an extra 1d6 poison damage to any target
|
||||||
|
they hit.
|
||||||
|
|
||||||
|
These benefits last for 10 minutes, until you lose all these temporary hit
|
||||||
|
points, or until you use your Wild Shape again.
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Symbiotic Entity"
|
||||||
|
source = "Druid (Circle of Spores)"
|
||||||
|
|
||||||
|
|
||||||
|
class FungalInfestation(Feature):
|
||||||
|
"""At 6th level, your spores gain the ability to infest a corpse and
|
||||||
|
animate it. If a beast or a humanoid that ist Small or Medium dies within
|
||||||
|
10 feet of you, you can use your reaction to animate it, causing it to
|
||||||
|
stand up immediately with 1 hit point. The creature uses the zombie stat
|
||||||
|
block in the _Monster Manual_. It remains animate for 1 hour, after which
|
||||||
|
time it collapses and dies.
|
||||||
|
|
||||||
|
In combat, the zombie's turn comes immediately after yours. It obeys your
|
||||||
|
mental commands, and the only action it can take is the Attack action,
|
||||||
|
making one melee attack.
|
||||||
|
|
||||||
|
You can use this feature a number of times equal to your Wisdom modifier
|
||||||
|
(minimum of once), and you regain all expended uses of it when you finish a
|
||||||
|
long rest.
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Fungal Infestation"
|
||||||
|
source = "Druid (Circle of Spores)"
|
||||||
|
|
||||||
|
|
||||||
|
class SpreadingSpores(Feature):
|
||||||
|
"""At 10th level, you gain the ability to seed an area with deadly spores.
|
||||||
|
As a bonus action while your Symbiotic Entity feature is active, you can
|
||||||
|
hurl spores up to 30 feet away, where they swirl in a 10-foot cube for 1
|
||||||
|
minute. The spores disappear early if you use this feature again, if you
|
||||||
|
dismiss them as a bonus action, or if your Symbiotic Entity feature is no
|
||||||
|
longer active.
|
||||||
|
|
||||||
|
Whenever a creature moves into the cube or starts its turn there, that
|
||||||
|
creature takes your Halo of Spores damage, unless the creature succeeds on
|
||||||
|
a Constitution saving throw against your spell save DC. A creature can take
|
||||||
|
this damage nbo mre than once per turn.
|
||||||
|
|
||||||
|
While the cube of sproes persists, you can't use your Halo of Spores
|
||||||
|
reaction.
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Spreading Spores"
|
||||||
|
source = "Druid (Circle of Spores)"
|
||||||
|
|
||||||
|
|
||||||
|
class FungalBody(Feature):
|
||||||
|
"""At 14th level, the fungal spores in your body alter you: you can't be
|
||||||
|
blinded, deafened, frightened, or poisoned, and any critical hit against
|
||||||
|
you counts as a normal hit instead, unless you're incapacitated.
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Fungal Body"
|
||||||
|
source = "Druid (Circle of Spores)"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class PowerfulBuild(Feature):
|
|||||||
name = "Powerful Build"
|
name = "Powerful Build"
|
||||||
source = "Race"
|
source = "Race"
|
||||||
|
|
||||||
|
|
||||||
class Amphibious(Feature):
|
class Amphibious(Feature):
|
||||||
"""
|
"""
|
||||||
You can breath air and water
|
You can breath air and water
|
||||||
@@ -41,7 +41,7 @@ class Amphibious(Feature):
|
|||||||
name = "Amphibious"
|
name = "Amphibious"
|
||||||
source = "Race"
|
source = "Race"
|
||||||
|
|
||||||
|
|
||||||
# Dwarves
|
# Dwarves
|
||||||
class DwarvenResilience(Feature):
|
class DwarvenResilience(Feature):
|
||||||
"""You have advantage on saving throws against poison, and you have resistance
|
"""You have advantage on saving throws against poison, and you have resistance
|
||||||
@@ -62,7 +62,7 @@ class Stonecunning(Feature):
|
|||||||
name = "Stonecunning"
|
name = "Stonecunning"
|
||||||
source = "Race (Dwarf)"
|
source = "Race (Dwarf)"
|
||||||
|
|
||||||
|
|
||||||
class DwarvenToughness(Feature):
|
class DwarvenToughness(Feature):
|
||||||
"""
|
"""
|
||||||
Your hit point maximum
|
Your hit point maximum
|
||||||
@@ -73,7 +73,7 @@ class DwarvenToughness(Feature):
|
|||||||
source = "Race (Hill Dwarf)"
|
source = "Race (Hill Dwarf)"
|
||||||
needs_implementation = True
|
needs_implementation = True
|
||||||
|
|
||||||
|
|
||||||
# Elves
|
# Elves
|
||||||
class FeyAncestry(Feature):
|
class FeyAncestry(Feature):
|
||||||
"""You have advantage on saving throws against being charmed, and magic can't
|
"""You have advantage on saving throws against being charmed, and magic can't
|
||||||
@@ -163,7 +163,7 @@ class HalflingNimbleness(Feature):
|
|||||||
name = "Halfling Nimbleness"
|
name = "Halfling Nimbleness"
|
||||||
source = "Race (Halfling)"
|
source = "Race (Halfling)"
|
||||||
|
|
||||||
|
|
||||||
class NaturallyStealthy(Feature):
|
class NaturallyStealthy(Feature):
|
||||||
"""You can attempt to hide even when you are obscured only by a creature that
|
"""You can attempt to hide even when you are obscured only by a creature that
|
||||||
is at least one size larger than you.
|
is at least one size larger than you.
|
||||||
@@ -283,7 +283,7 @@ class ArtificersLore(Feature):
|
|||||||
name = "Artificer's Lore"
|
name = "Artificer's Lore"
|
||||||
source = "Race (Rock Gnome)"
|
source = "Race (Rock Gnome)"
|
||||||
|
|
||||||
|
|
||||||
class Tinker(Feature):
|
class Tinker(Feature):
|
||||||
"""You have proficiency with artisan's tools (tinker's tools). Using those
|
"""You have proficiency with artisan's tools (tinker's tools). Using those
|
||||||
tools, you can spend 1 hour and 10 gp worth of materials to construct a
|
tools, you can spend 1 hour and 10 gp worth of materials to construct a
|
||||||
@@ -316,8 +316,28 @@ class StoneCamouflage(Feature):
|
|||||||
source = "Race (Deep Gnome)"
|
source = "Race (Deep Gnome)"
|
||||||
|
|
||||||
|
|
||||||
|
# Goblins
|
||||||
|
class FuryOfTheSmall(Feature):
|
||||||
|
"""
|
||||||
|
When you damage a creature with an attack or a spell and the creature's
|
||||||
|
size is larger than yours, you can cause the attack or spell to deal extra
|
||||||
|
damage to the creature. The extra damage equals your level. Once you use
|
||||||
|
this trait, you can't use it again until you finish a short or long rest.
|
||||||
|
"""
|
||||||
|
name = "Fury of the Small"
|
||||||
|
source = "Race (Goblin)"
|
||||||
|
|
||||||
|
|
||||||
|
class NimbleEscape(Feature):
|
||||||
|
"""
|
||||||
|
You can take the Disengage or Hide action as a bonus action on each of your
|
||||||
|
turns.
|
||||||
|
"""
|
||||||
|
name = "Nimble Escape"
|
||||||
|
source = "Race (Goblin)"
|
||||||
|
|
||||||
# Half-Elves
|
# Half-Elves
|
||||||
|
|
||||||
# Half-Orcs
|
# Half-Orcs
|
||||||
class RelentlessEndurance(Feature):
|
class RelentlessEndurance(Feature):
|
||||||
"""When you are reduced to 0 hit points but not killed outright, you can drop
|
"""When you are reduced to 0 hit points but not killed outright, you can drop
|
||||||
@@ -353,7 +373,7 @@ class InfernalLegacy(Feature):
|
|||||||
the hellish rebuke spell once per day as a 2nd-level spell. Once you reach
|
the hellish rebuke spell once per day as a 2nd-level spell. Once you reach
|
||||||
5th level, you can also cast the darkness spell once per day. Charisma is
|
5th level, you can also cast the darkness spell once per day. Charisma is
|
||||||
your spellcasting ability for these spells.
|
your spellcasting ability for these spells.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Infernal Legacy"
|
name = "Infernal Legacy"
|
||||||
source = "Race (Tiefling)"
|
source = "Race (Tiefling)"
|
||||||
@@ -422,7 +442,7 @@ class RadiantConsumption(Feature):
|
|||||||
|
|
||||||
Once you use this trait, you can't use it again until you finish a long
|
Once you use this trait, you can't use it again until you finish a long
|
||||||
rest.
|
rest.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Radiant Consumption"
|
name = "Radiant Consumption"
|
||||||
source = "Race (Scourge Aasimar)"
|
source = "Race (Scourge Aasimar)"
|
||||||
@@ -519,7 +539,7 @@ class ExpertForgery(Feature):
|
|||||||
name = "Expert Forgery"
|
name = "Expert Forgery"
|
||||||
source = "Race (Kenku)"
|
source = "Race (Kenku)"
|
||||||
|
|
||||||
|
|
||||||
class Mimicry(Feature):
|
class Mimicry(Feature):
|
||||||
"""You can mimic sounds you have heard, including voices. A creature that
|
"""You can mimic sounds you have heard, including voices. A creature that
|
||||||
hears the sounds you make can tell they are imitations with a successful
|
hears the sounds you make can tell they are imitations with a successful
|
||||||
@@ -529,7 +549,7 @@ class Mimicry(Feature):
|
|||||||
name = "Mimicry"
|
name = "Mimicry"
|
||||||
source = "Race (Kenku)"
|
source = "Race (Kenku)"
|
||||||
|
|
||||||
|
|
||||||
# Lizardfolk
|
# Lizardfolk
|
||||||
class CunningArtisan(Feature):
|
class CunningArtisan(Feature):
|
||||||
"""As part of a short rest, you can harvest bone and hide from a slain
|
"""As part of a short rest, you can harvest bone and hide from a slain
|
||||||
@@ -695,7 +715,7 @@ class ReachToTheBlaze(Feature):
|
|||||||
class AcidResistance(Feature):
|
class AcidResistance(Feature):
|
||||||
"""
|
"""
|
||||||
You have resistance to acid damage.
|
You have resistance to acid damage.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Acid Resistance"
|
name = "Acid Resistance"
|
||||||
source = "Race (Water Genasi)"
|
source = "Race (Water Genasi)"
|
||||||
|
|||||||
+21
-8
@@ -39,10 +39,10 @@ class Race():
|
|||||||
@property
|
@property
|
||||||
def spells_prepared(self):
|
def spells_prepared(self):
|
||||||
return self.spells_known
|
return self.spells_known
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "\"{:s}\"".format(self.name)
|
return "\"{:s}\"".format(self.name)
|
||||||
|
|
||||||
@@ -129,7 +129,7 @@ class LightfootHalfling(_Halfling):
|
|||||||
name = "Lightfoot Halfling"
|
name = "Lightfoot Halfling"
|
||||||
charisma_bonus = 1
|
charisma_bonus = 1
|
||||||
features = _Halfling.features + (feats.NaturallyStealthy,)
|
features = _Halfling.features + (feats.NaturallyStealthy,)
|
||||||
|
|
||||||
|
|
||||||
class StoutHalfling(_Halfling):
|
class StoutHalfling(_Halfling):
|
||||||
name = "Stout Halfling"
|
name = "Stout Halfling"
|
||||||
@@ -183,7 +183,7 @@ class ForestGnome(_Gnome):
|
|||||||
features = _Gnome.features + (feats.NaturalIllusionist,
|
features = _Gnome.features + (feats.NaturalIllusionist,
|
||||||
feats.SpeakWithSmallBeasts)
|
feats.SpeakWithSmallBeasts)
|
||||||
spells_known = (spells.MinorIllusion,)
|
spells_known = (spells.MinorIllusion,)
|
||||||
|
|
||||||
|
|
||||||
class RockGnome(_Gnome):
|
class RockGnome(_Gnome):
|
||||||
name = "Rock Gnome"
|
name = "Rock Gnome"
|
||||||
@@ -252,7 +252,7 @@ class _Aasimar(Race):
|
|||||||
feats.HealingHands, feats.LightBearer)
|
feats.HealingHands, feats.LightBearer)
|
||||||
spells_known = (spells.Light,)
|
spells_known = (spells.Light,)
|
||||||
|
|
||||||
|
|
||||||
# Protector Aasimar
|
# Protector Aasimar
|
||||||
class ProtectorAasimar(_Aasimar):
|
class ProtectorAasimar(_Aasimar):
|
||||||
name = "Protector Aasimar"
|
name = "Protector Aasimar"
|
||||||
@@ -397,7 +397,7 @@ class AirGenasi(_Genasi):
|
|||||||
features = (feats.UnendingBreath,
|
features = (feats.UnendingBreath,
|
||||||
feats.MingleWithTheWind)
|
feats.MingleWithTheWind)
|
||||||
|
|
||||||
|
|
||||||
class EarthGenasi(_Genasi):
|
class EarthGenasi(_Genasi):
|
||||||
name = "Earth Genasi"
|
name = "Earth Genasi"
|
||||||
strength_bonus = 1
|
strength_bonus = 1
|
||||||
@@ -493,6 +493,16 @@ class PureBlood(Race):
|
|||||||
languages = ("Common", "Abyssal", "Draconic")
|
languages = ("Common", "Abyssal", "Draconic")
|
||||||
|
|
||||||
|
|
||||||
|
class Goblin(Race):
|
||||||
|
name = "Goblin"
|
||||||
|
size = "small"
|
||||||
|
dexterity_bonus = 2
|
||||||
|
constitution_bonus = 1
|
||||||
|
speed = 30
|
||||||
|
languages = ("Common", "Goblin")
|
||||||
|
features = (feats.Darkvision, feats.FuryOfTheSmall, feats.NimbleEscape)
|
||||||
|
|
||||||
|
|
||||||
PHB_races = [HillDwarf, MountainDwarf, HighElf, WoodElf, DarkElf,
|
PHB_races = [HillDwarf, MountainDwarf, HighElf, WoodElf, DarkElf,
|
||||||
LightfootHalfling, StoutHalfling, Rashemi, Dragonborn,
|
LightfootHalfling, StoutHalfling, Rashemi, Dragonborn,
|
||||||
ForestGnome, RockGnome, HalfElf, HalfOrc, Tiefling]
|
ForestGnome, RockGnome, HalfElf, HalfOrc, Tiefling]
|
||||||
@@ -507,7 +517,10 @@ MONSTER_races = [BugBear, Goblin, HobGoblin, Kobold, Orc, PureBlood]
|
|||||||
|
|
||||||
RFTLW_races = [Kalashtar]
|
RFTLW_races = [Kalashtar]
|
||||||
|
|
||||||
available_races = PHB_races + VOLO_races + EE_races + MONSTER_races + RFTLW_races
|
# Guildmaster's Guide to Ravnica
|
||||||
|
GGTR_races = [Goblin]
|
||||||
|
|
||||||
|
available_races = PHB_races + VOLO_races + EE_races + MONSTER_races + RFTLW_races + GGTR_races
|
||||||
|
|
||||||
__all__ = tuple([r.name for r in available_races]) + (
|
__all__ = tuple([r.name for r in available_races]) + (
|
||||||
'available_races', 'PHB_races', 'VOLO_races', 'EE_races', 'MONSTER_races', 'RFTLW_races')
|
'available_races', 'PHB_races', 'VOLO_races', 'EE_races', 'MONSTER_races', 'RFTLW_races', 'GGTR_races')
|
||||||
|
|||||||
+321
-266
@@ -6,19 +6,21 @@ class GaseousForm(Spell):
|
|||||||
and carrying, into a misty cloud for the duration. The spell ends if the
|
and carrying, into a misty cloud for the duration. The spell ends if the
|
||||||
creature drops to 0 hit points. An incorporeal creature isn't affected.
|
creature drops to 0 hit points. An incorporeal creature isn't affected.
|
||||||
|
|
||||||
While
|
While in this form, the target's only method of movement is a
|
||||||
in this form, the target's only method of movement is a flying speed of 10 feet.
|
flying speed of 10 feet. The target can enter and occupy the
|
||||||
The target can enter and occupy the space of another creature. The target has
|
space of another creature. The target has resistance to nonmagical
|
||||||
resistance to nonmagical damage, and it has advantage on Strength, Dexterity,
|
damage, and it has advantage on Strength, Dexterity, and
|
||||||
and Constitution saving throws. The target can pass through small holes, narrow
|
Constitution saving throws. The target can pass through small
|
||||||
openings, and even mere cracks, though it treats liquids as though they were
|
holes, narrow openings, and even mere cracks, though it treats
|
||||||
solid surfaces. The target can't fall and remains hovering in the air even when
|
liquids as though they were solid surfaces. The target can't fall
|
||||||
stunned or otherwise incapacitated.
|
and remains hovering in the air even when stunned or otherwise
|
||||||
|
incapacitated.
|
||||||
|
|
||||||
While in the form of a misty cloud, the
|
While in the form of a misty cloud, the target can't talk or
|
||||||
target can't talk or manipulate objects, and any objects it was carrying or
|
manipulate objects, and any objects it was carrying or holding
|
||||||
holding can't be dropped, used, or otherwise interacted with. The target can't
|
can't be dropped, used, or otherwise interacted with. The target
|
||||||
attack or cast spells.
|
can't attack or cast spells.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Gaseous Form"
|
name = "Gaseous Form"
|
||||||
level = 3
|
level = 3
|
||||||
@@ -33,27 +35,31 @@ class GaseousForm(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Gate(Spell):
|
class Gate(Spell):
|
||||||
"""You conjure a portal linking an unoccupied space you can see within range to a
|
"""You conjure a portal linking an unoccupied space you can see within
|
||||||
precise location on a different plane of existence. The portal is a circular
|
range to a precise location on a different plane of existence. The
|
||||||
opening, which you can make 5 to 20 feet in diameter. You can orient the portal
|
portal is a circular opening, which you can make 5 to 20 feet in
|
||||||
in any direction you choose. The portal lasts for the duration.
|
diameter. You can orient the portal in any direction you
|
||||||
|
choose. The portal lasts for the duration.
|
||||||
|
|
||||||
The portal has
|
The portal has a front and a back on each plane where it
|
||||||
a front and a back on each plane where it appears. Travel through the portal is
|
appears. Travel through the portal is possible only by moving
|
||||||
possible only by moving through its front. Anything that does so is instantly
|
through its front. Anything that does so is instantly transported
|
||||||
transported to the other plane, appearing in the unoccupied space nearest to the
|
to the other plane, appearing in the unoccupied space nearest to
|
||||||
portal.
|
the portal.
|
||||||
|
|
||||||
Deities and other planar rulers can prevent portals created by this
|
Deities and other planar rulers can prevent portals created by
|
||||||
spell from opening in their presence or anywhere within their domains.
|
this spell from opening in their presence or anywhere within their
|
||||||
|
domains.
|
||||||
|
|
||||||
When you
|
When you cast this spell, you can speak the name of a specific
|
||||||
cast this spell, you can speak the name of a specific creature (a pseudonym,
|
creature (a pseudonym, title, or nickname doesn't work). If that
|
||||||
title, or nickname doesn't work). If that creature is on a plane other than the
|
creature is on a plane other than the one you are on, the portal
|
||||||
one you are on, the portal opens in the named creature's immediate vicinity and
|
opens in the named creature's immediate vicinity and draws the
|
||||||
draws the creature through it to the nearest unoccupied space on your side of
|
creature through it to the nearest unoccupied space on your side
|
||||||
the portal. You gain no special power over the creature, and it is free to act
|
of the portal. You gain no special power over the creature, and it
|
||||||
as the Dm deems appropriate. It might leave, attack you, or help you.
|
is free to act as the Dm deems appropriate. It might leave, attack
|
||||||
|
you, or help you.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Gate"
|
name = "Gate"
|
||||||
level = 9
|
level = 9
|
||||||
@@ -68,26 +74,28 @@ class Gate(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Geas(Spell):
|
class Geas(Spell):
|
||||||
"""You place a magical command on a creature that you can see within range, forcing
|
"""You place a magical command on a creature that you can see within
|
||||||
it to carry out some service or refrain from some action or course of actiity
|
range, forcing it to carry out some service or refrain from some
|
||||||
as you decide.
|
action or course of actiity as you decide.
|
||||||
If the creature can understand you, it must succeed on a Wisdom
|
|
||||||
saving throw or become charmed by you for the duration. While the creature is
|
|
||||||
charmed by you, it takes 5d10 psychic damage each time it acts in a manner
|
|
||||||
directly counter to your instructions, but no more than once each day. A
|
|
||||||
creature that can't understand you is unaffected by the spell.
|
|
||||||
|
|
||||||
You can issue
|
If the creature can understand you, it must succeed on a Wisdom
|
||||||
any command you choose, short of an activity that would result in certain death.
|
saving throw or become charmed by you for the duration. While the
|
||||||
Should you issue a suicidal command, the spell ends. You can end the spell
|
creature is charmed by you, it takes 5d10 psychic damage each time
|
||||||
early by using an action to dismiss it. A remove curse, greater restoration, or
|
it acts in a manner directly counter to your instructions, but no
|
||||||
wish spell also ends it.
|
more than once each day. A creature that can't understand you is
|
||||||
|
unaffected by the spell.
|
||||||
|
|
||||||
At Higher Levels: When you cast this spell usinga
|
You can issue any command you choose, short of an activity that
|
||||||
spell slot of 7th or 8th level, the duration is 1 year.
|
would result in certain death. Should you issue a suicidal
|
||||||
When you cast this
|
command, the spell ends. You can end the spell early by using an
|
||||||
spell using a spell slot of 9th level, the spell lasts until it is ended by one
|
action to dismiss it. A remove curse, greater restoration, or wish
|
||||||
of the spells mentioned above.
|
spell also ends it.
|
||||||
|
|
||||||
|
**At Higher Levels:** When you cast this spell usinga spell slot of
|
||||||
|
7th or 8th level, the duration is 1 year. When you cast this
|
||||||
|
spell using a spell slot of 9th level, the spell lasts until it is
|
||||||
|
ended by one of the spells mentioned above.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Geas"
|
name = "Geas"
|
||||||
level = 5
|
level = 5
|
||||||
@@ -105,9 +113,11 @@ class GentleRepose(Spell):
|
|||||||
"""You touch a corpse or other remains. For the duration, the target is protected
|
"""You touch a corpse or other remains. For the duration, the target is protected
|
||||||
from decay and can't become undead.
|
from decay and can't become undead.
|
||||||
|
|
||||||
The spell also effectively extends the time
|
The spell also effectively extends the time limit on raising the
|
||||||
limit on raising the target from the dead, since days spent under the influence
|
target from the dead, since days spent under the influence of this
|
||||||
of this spell don't count against the time limit of spells such as raise dead.
|
spell don't count against the time limit of spells such as raise
|
||||||
|
dead.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Gentle Repose"
|
name = "Gentle Repose"
|
||||||
level = 2
|
level = 2
|
||||||
@@ -122,21 +132,21 @@ class GentleRepose(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GiantInsect(Spell):
|
class GiantInsect(Spell):
|
||||||
"""You transform up to ten centipedes, three spiders, five wasps, or one scorpion
|
"""You transform up to ten centipedes, three spiders, five wasps, or one scorpion
|
||||||
within range into giant versions of their natural forms for the duration. A
|
within range into giant versions of their natural forms for the duration. A
|
||||||
centipede becomes a giant centipede, a spider becaomes a giant spider, a wasp
|
centipede becomes a giant centipede, a spider becaomes a giant spider, a wasp
|
||||||
becomes a giant wasp, and a scorpion becomes a giant scorpion.
|
becomes a giant wasp, and a scorpion becomes a giant scorpion.
|
||||||
|
|
||||||
Each creature
|
Each creature
|
||||||
obeys your verbal commands, and in combat, they act on your turn each round. The
|
obeys your verbal commands, and in combat, they act on your turn each round. The
|
||||||
DM has the statistics for these creatures and resolves their actions and
|
DM has the statistics for these creatures and resolves their actions and
|
||||||
movement.
|
movement.
|
||||||
|
|
||||||
A creature remains in its giant size for the duration, until it drops
|
A creature remains in its giant size for the duration, until it drops
|
||||||
to 0 hit points, or until you use an action to dismiss the effect on it.
|
to 0 hit points, or until you use an action to dismiss the effect on it.
|
||||||
|
|
||||||
The
|
The
|
||||||
DM might allow you to choose different targets. For example, if you transform a
|
DM might allow you to choose different targets. For example, if you transform a
|
||||||
bee, its giant version might have the same statistics as a giant wasp.
|
bee, its giant version might have the same statistics as a giant wasp.
|
||||||
"""
|
"""
|
||||||
name = "Giant Insect"
|
name = "Giant Insect"
|
||||||
@@ -153,7 +163,7 @@ class GiantInsect(Spell):
|
|||||||
|
|
||||||
class Glibness(Spell):
|
class Glibness(Spell):
|
||||||
"""Until the spell ends, when you make a Charisma check, you can replace the number
|
"""Until the spell ends, when you make a Charisma check, you can replace the number
|
||||||
you roll with a 15. Additionally, no matter what you say, magic that would
|
you roll with a 15. Additionally, no matter what you say, magic that would
|
||||||
determine if you are telling the truth indicates that you are being truthful.
|
determine if you are telling the truth indicates that you are being truthful.
|
||||||
"""
|
"""
|
||||||
name = "Glibness"
|
name = "Glibness"
|
||||||
@@ -169,19 +179,20 @@ class Glibness(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GlobeOfInvulnerability(Spell):
|
class GlobeOfInvulnerability(Spell):
|
||||||
"""An immobile, faintly shimmering barrier springs into existence in a 10-foot
|
"""An immobile, faintly shimmering barrier springs into existence in a
|
||||||
radius around you and remains for the duration.
|
10-foot radius around you and remains for the duration.
|
||||||
|
|
||||||
Any spell of 5th level or lower
|
Any spell of 5th level or lower cast from outside the barrier
|
||||||
cast from outside the barrier can't affect creatures or objects within it, even
|
can't affect creatures or objects within it, even if the spell is
|
||||||
if the spell is cast using a higher level spell slot. Such a spell can target
|
cast using a higher level spell slot. Such a spell can target
|
||||||
creatures and objects within the barrier, but the spell has no effect on them.
|
creatures and objects within the barrier, but the spell has no
|
||||||
Similarly, the area within the barrier is excluded from the areas affected by
|
effect on them. Similarly, the area within the barrier is
|
||||||
such spells.
|
excluded from the areas affected by such spells.
|
||||||
|
|
||||||
At Higher Levels: When you cast this spell using a spell slot of
|
**At Higher Levels:** When you cast this spell using a spell slot
|
||||||
7th level or higher, the barrier blocks spells of one level higher for each slot
|
of 7th level or higher, the barrier blocks spells of one level
|
||||||
level above 6th.
|
higher for each slot level above 6th.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Globe Of Invulnerability"
|
name = "Globe Of Invulnerability"
|
||||||
level = 6
|
level = 6
|
||||||
@@ -196,59 +207,68 @@ class GlobeOfInvulnerability(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GlyphOfWarding(Spell):
|
class GlyphOfWarding(Spell):
|
||||||
"""When you cast this spell, you inscribe a glyph that harms other creatures,
|
"""When you cast this spell, you inscribe a glyph that harms other
|
||||||
either upon a surface (such as a table or a section of floor or wall) or within
|
creatures, either upon a surface (such as a table or a section of
|
||||||
an object that can be closed (such as a book, a scroll, or a treasure chest) to
|
floor or wall) or within an object that can be closed (such as a
|
||||||
conceal the glyph.
|
book, a scroll, or a treasure chest) to conceal the glyph.
|
||||||
If you choose a surface, the glyph can cover an area of the
|
|
||||||
surface no larger than 10 feet in diameter. If you choose an object, that object
|
|
||||||
must remain in its place; if the object is moved more than 10 feet from where
|
|
||||||
you cast this spell, the glyph is broken, and the spell ends without being
|
|
||||||
triggered.
|
|
||||||
|
|
||||||
The glyph is nearly invisible and requires a successful Intelligence
|
If you choose a surface, the glyph can cover an area of the
|
||||||
(Investigation) check against your spell save DC to be found.
|
surface no larger than 10 feet in diameter. If you choose an
|
||||||
|
object, that object must remain in its place; if the object is
|
||||||
|
moved more than 10 feet from where you cast this spell, the glyph
|
||||||
|
is broken, and the spell ends without being triggered.
|
||||||
|
|
||||||
You decide what
|
The glyph is nearly invisible and requires a successful
|
||||||
triggers the glyph when you cast the spell. For glyphs inscribed on a surface,
|
Intelligence (Investigation) check against your spell save DC to
|
||||||
the most typical triggers include touching or standing on the glyph, removing
|
be found.
|
||||||
another object covering the glyph, approaching within a certain distance of the
|
|
||||||
glyph, or manipulating the object on which the glyph is inscribed. For glyphs
|
|
||||||
inscribed within an object, the most common triggers include opening that
|
|
||||||
object, approaching within a certain distance of the object, or seeing or
|
|
||||||
reading the glyph. Once a glyph is triggered, this spell ends.
|
|
||||||
|
|
||||||
You can further
|
You decide what triggers the glyph when you cast the spell. For
|
||||||
refine the trigger so the spell activates only under certain circumstances or
|
glyphs inscribed on a surface, the most typical triggers include
|
||||||
according to physical characteristics (such as height or weight), creature kind
|
touching or standing on the glyph, removing another object
|
||||||
(for example, the ward could be set to affect aberrations or drow), or
|
covering the glyph, approaching within a certain distance of the
|
||||||
alignment. You can also set conditions for creatures that don't trigger the
|
glyph, or manipulating the object on which the glyph is
|
||||||
glyph, such as those who say a certain password.
|
inscribed. For glyphs inscribed within an object, the most common
|
||||||
|
triggers include opening that object, approaching within a certain
|
||||||
|
distance of the object, or seeing or reading the glyph. Once a
|
||||||
|
glyph is triggered, this spell ends.
|
||||||
|
|
||||||
When you inscribe the glyph,
|
You can further refine the trigger so the spell activates only
|
||||||
choose explosive runes or a spell glyph.
|
under certain circumstances or according to physical
|
||||||
|
characteristics (such as height or weight), creature kind (for
|
||||||
|
example, the ward could be set to affect aberrations or drow), or
|
||||||
|
alignment. You can also set conditions for creatures that don't
|
||||||
|
trigger the glyph, such as those who say a certain password.
|
||||||
|
|
||||||
Explosive Runes
|
When you inscribe the glyph, choose explosive runes or a spell
|
||||||
When triggered, the
|
glyph.
|
||||||
glyph erupts with magical energy in a 20-foot-radius sphere centered on the
|
|
||||||
glyph. The sphere spreads around corners. Each creature in the area must make a
|
|
||||||
Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or
|
|
||||||
thunder damage on a failed saving throw (your choice when you create the glyph),
|
|
||||||
or half as much damage on a successful one.
|
|
||||||
|
|
||||||
Spell Glyph
|
**Explosive Runes**
|
||||||
You can store a
|
When triggered, the glyph erupts with magical energy in a
|
||||||
prepared spell of 3rd level or lower in the glyph by casting it as part of
|
20-foot-radius sphere centered on the glyph. The sphere spreads
|
||||||
creating the glyph. The spell must target a single creature or an area. The
|
around corners. Each creature in the area must make a Dexterity
|
||||||
spell being stored has no immediate effect when cast in this way. When the glyph
|
saving throw. A creature takes 5d8 acid, cold, fire, lightning, or
|
||||||
is triggered, the stored spell is cast. If the spell has a target, it targets
|
thunder damage on a failed saving throw (your choice when you
|
||||||
the creature that triggered the glyph. If the spell affects an area, the area is
|
create the glyph), or half as much damage on a successful one.
|
||||||
centered on that creature. If the spell summons hostile creatures or creates
|
|
||||||
harmful objects or traps, they appear as close as possible to the intruder and
|
|
||||||
attack it. If the spell requires concentration, it lasts until the end of its
|
|
||||||
full duration.
|
|
||||||
|
|
||||||
At Higher Levels:
|
**Spell Glyph**
|
||||||
|
You can store a prepared spell of 3rd level or lower in the glyph
|
||||||
|
by casting it as part of creating the glyph. The spell must target
|
||||||
|
a single creature or an area. The spell being stored has no
|
||||||
|
immediate effect when cast in this way. When the glyph is
|
||||||
|
triggered, the stored spell is cast. If the spell has a target, it
|
||||||
|
targets the creature that triggered the glyph. If the spell
|
||||||
|
affects an area, the area is centered on that creature. If the
|
||||||
|
spell summons hostile creatures or creates harmful objects or
|
||||||
|
traps, they appear as close as possible to the intruder and attack
|
||||||
|
it. If the spell requires concentration, it lasts until the end of
|
||||||
|
its full duration.
|
||||||
|
|
||||||
|
**At Higher Levels:** When you cast this spell using a spell slot
|
||||||
|
of 4th Level or higher, the damage of an explosive runes glyph
|
||||||
|
increases by 1d8 for each slot level above 3rd. If you create a
|
||||||
|
spell glyph, you can store any spell of up to the same level as
|
||||||
|
the slot you use for the glyph of warding.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Glyph Of Warding"
|
name = "Glyph Of Warding"
|
||||||
level = 3
|
level = 3
|
||||||
@@ -263,11 +283,11 @@ class GlyphOfWarding(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Goodberry(Spell):
|
class Goodberry(Spell):
|
||||||
"""Up to ten berries appear in your hand and are infused with magic for the
|
"""Up to ten berries appear in your hand and are infused with magic for the
|
||||||
duration. A creature can use its action to eat one berry. Eating a berry
|
duration. A creature can use its action to eat one berry. Eating a berry
|
||||||
restores 1 hit point, and the berry provides enough nourishment to sustain a
|
restores 1 hit point, and the berry provides enough nourishment to sustain a
|
||||||
creature for one day.
|
creature for one day.
|
||||||
The berries lose their potency if they have not been
|
The berries lose their potency if they have not been
|
||||||
consumed within 24 hours of the casting of this spell.
|
consumed within 24 hours of the casting of this spell.
|
||||||
"""
|
"""
|
||||||
name = "Goodberry"
|
name = "Goodberry"
|
||||||
@@ -283,13 +303,13 @@ class Goodberry(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GraspingVine(Spell):
|
class GraspingVine(Spell):
|
||||||
"""You conjure a vine that sprouts from the ground in an unoccupied space of your
|
"""You conjure a vine that sprouts from the ground in an unoccupied space of your
|
||||||
choice that you can see within range. When you cast this spell, you can direct
|
choice that you can see within range. When you cast this spell, you can direct
|
||||||
the vine to lash out at a creature within 30 feet of it that you can see. That
|
the vine to lash out at a creature within 30 feet of it that you can see. That
|
||||||
creature must succeed on a Dexterity saving throw or be pulled 20 feet directly
|
creature must succeed on a Dexterity saving throw or be pulled 20 feet directly
|
||||||
toward the vine.
|
toward the vine.
|
||||||
|
|
||||||
Until the spell ends, you can direct the vine to lash out at
|
Until the spell ends, you can direct the vine to lash out at
|
||||||
the same creature or another one as a bonus action on each of your turns.
|
the same creature or another one as a bonus action on each of your turns.
|
||||||
"""
|
"""
|
||||||
name = "Grasping Vine"
|
name = "Grasping Vine"
|
||||||
@@ -305,11 +325,11 @@ class GraspingVine(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Grease(Spell):
|
class Grease(Spell):
|
||||||
"""Slick grease covers the ground in a 10-foot square centered on a point within
|
"""Slick grease covers the ground in a 10-foot square centered on a point within
|
||||||
range and turns it into difficult terrain for the duration.
|
range and turns it into difficult terrain for the duration.
|
||||||
|
|
||||||
When the grease
|
When the grease
|
||||||
appears, each creature standing in its area must succeed on a Dexterity saving
|
appears, each creature standing in its area must succeed on a Dexterity saving
|
||||||
throw or fall prone. A creature that enters the area or ends its turn there must
|
throw or fall prone. A creature that enters the area or ends its turn there must
|
||||||
also succeed on a Dexterity saving throw or fall prone.
|
also succeed on a Dexterity saving throw or fall prone.
|
||||||
"""
|
"""
|
||||||
@@ -326,9 +346,10 @@ class Grease(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GreaterInvisibility(Spell):
|
class GreaterInvisibility(Spell):
|
||||||
"""You or a creature you touch becomes invisible until the spell ends. Anything the
|
"""You or a creature you touch becomes invisible until the spell
|
||||||
target is wearing or carrying is invisible as long as it is on the target's
|
ends. Anything the target is wearing or carrying is invisible as
|
||||||
person.
|
long as it is on the target's person.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Greater Invisibility"
|
name = "Greater Invisibility"
|
||||||
level = 4
|
level = 4
|
||||||
@@ -343,16 +364,15 @@ class GreaterInvisibility(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GreaterRestoration(Spell):
|
class GreaterRestoration(Spell):
|
||||||
"""You imbue a creature you touch with positive energy to undo a debilitating
|
"""You imbue a creature you touch with positive energy to undo a
|
||||||
effect. You can reduce the target's exhaustion level by one, or end one of the
|
debilitating effect. You can reduce the target's exhaustion level
|
||||||
following effects on the target:
|
by one, or end one of the following effects on the target:
|
||||||
* One effect that charmed or petrified the
|
|
||||||
target
|
- One effect that charmed or petrified the target
|
||||||
* One curse, including the target's attunement to a cursed magic item
|
- One curse, including the target's attunement to a cursed magic item
|
||||||
*
|
- Any reduction to one of the target's ability scores
|
||||||
Any reduction to one of the target's ability scores
|
- One effect reducing the target's hit point maximum
|
||||||
* One effect reducing the
|
|
||||||
target's hit point maximum
|
|
||||||
"""
|
"""
|
||||||
name = "Greater Restoration"
|
name = "Greater Restoration"
|
||||||
level = 5
|
level = 5
|
||||||
@@ -368,16 +388,16 @@ class GreaterRestoration(Spell):
|
|||||||
|
|
||||||
class GreenFlameBlade(Spell):
|
class GreenFlameBlade(Spell):
|
||||||
"""As part of the action used to cast this spell, you must make a melee attack with
|
"""As part of the action used to cast this spell, you must make a melee attack with
|
||||||
a weapon against one creature within the spell's range, otherwise the spell
|
a weapon against one creature within the spell's range, otherwise the spell
|
||||||
fails. On a hit, the target suffers the attack's normal effects, and green fire
|
fails. On a hit, the target suffers the attack's normal effects, and green fire
|
||||||
leaps from the target to a different creature of your choice that you can see
|
leaps from the target to a different creature of your choice that you can see
|
||||||
within 5 feet of it. The second creature takes fire damage equal to your
|
within 5 feet of it. The second creature takes fire damage equal to your
|
||||||
spellcasting ability modifier. This spell's damage increases when you reach
|
spellcasting ability modifier. This spell's damage increases when you reach
|
||||||
higher levels.
|
higher levels.
|
||||||
|
|
||||||
At Higher Levels: At 5th level, the melee attack deals an extra
|
At Higher Levels: At 5th level, the melee attack deals an extra
|
||||||
1d8 fire damage to the target, and the fire damage to the second creature
|
1d8 fire damage to the target, and the fire damage to the second creature
|
||||||
increases to 1d8 + your spellcasting ability modifier. Both damage rolls
|
increases to 1d8 + your spellcasting ability modifier. Both damage rolls
|
||||||
increase by 1d8 at 11th level and 17th level.
|
increase by 1d8 at 11th level and 17th level.
|
||||||
"""
|
"""
|
||||||
name = "Green-Flame Blade"
|
name = "Green-Flame Blade"
|
||||||
@@ -393,15 +413,15 @@ class GreenFlameBlade(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GuardianOfFaith(Spell):
|
class GuardianOfFaith(Spell):
|
||||||
"""A Large spectral guardian appears and hovers for the duration in an unoccupied
|
"""A Large spectral guardian appears and hovers for the duration in an unoccupied
|
||||||
space of your choice that you can see within range. The guardian occupies that
|
space of your choice that you can see within range. The guardian occupies that
|
||||||
space and is indistinct except for a gleaming sword and shield emblazoned with
|
space and is indistinct except for a gleaming sword and shield emblazoned with
|
||||||
the symbol of your deity.
|
the symbol of your deity.
|
||||||
|
|
||||||
Any creature hostile to you that moves to a space
|
Any creature hostile to you that moves to a space
|
||||||
within 10 feet of the guardian for the firs time on a turn must succeed on a
|
within 10 feet of the guardian for the firs time on a turn must succeed on a
|
||||||
Dexterity saving throw. The creature takes 20 radiant damage on a failed save,
|
Dexterity saving throw. The creature takes 20 radiant damage on a failed save,
|
||||||
or half as much damage on a successful one. The guardian vanishes when it has
|
or half as much damage on a successful one. The guardian vanishes when it has
|
||||||
dealt a total of 60 damage.
|
dealt a total of 60 damage.
|
||||||
"""
|
"""
|
||||||
name = "Guardian Of Faith"
|
name = "Guardian Of Faith"
|
||||||
@@ -417,28 +437,29 @@ class GuardianOfFaith(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GuardianOfNature(Spell):
|
class GuardianOfNature(Spell):
|
||||||
"""A nature spirit answers your call and transforms you into a powerful guardian.
|
"""A nature spirit answers your call and transforms you into a
|
||||||
The transformation lasts until the spell ends. You choose one of the following
|
powerful guardian. The transformation lasts until the spell
|
||||||
forms to assume: Primal Beast or Great Tree.
|
ends. You choose one of the following forms to assume: Primal
|
||||||
Primal Beast. Bestial fur covers
|
Beast or Great Tree.
|
||||||
your body, your facial features become feral, and you gain the following
|
|
||||||
benefits:
|
**Primal Beast.** Bestial fur covers your body, your facial
|
||||||
|
features become feral, and you gain the following benefits:
|
||||||
|
|
||||||
- Your walking speed increases by 10 feet.
|
- Your walking speed increases by 10 feet.
|
||||||
- You gain darkvision with
|
- You gain darkvision with a range of 120 feet.
|
||||||
a range of 120 feet.
|
|
||||||
- You make Strength-based attack rolls with advantage.
|
- You make Strength-based attack rolls with advantage.
|
||||||
-
|
- Your melee weapon attacks deal an extra 1d6 force damage on a
|
||||||
Your melee weapon attacks deal an extra 1d6 force damage on a hit.
|
hit.
|
||||||
Great Tree.
|
|
||||||
Your skin appears barky, leaves sprout from your hair, and you gain the
|
**Great Tree.** Your skin appears barky, leaves sprout from your
|
||||||
following benefits:
|
hair, and you gain the following benefits:
|
||||||
. You gain 10 temporary hit points.
|
|
||||||
- You make Constitution
|
- You gain 10 temporary hit points.
|
||||||
saving throws with advantage.
|
- You make Constitution saving throws with advantage.
|
||||||
- You make Dexterity- and Wisdom-based attack
|
- You make Dexterity- and Wisdom-based attack rolls with advantage.
|
||||||
rolls with advantage.
|
- While you are on the ground, the ground within 15 feet of you is
|
||||||
- While you are on the ground, the ground within 15 feet
|
difficult terrain for your enemies.
|
||||||
of you is difficult terrain for your enemies.
|
|
||||||
"""
|
"""
|
||||||
name = "Guardian Of Nature"
|
name = "Guardian Of Nature"
|
||||||
level = 4
|
level = 4
|
||||||
@@ -453,70 +474,70 @@ class GuardianOfNature(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GuardsAndWards(Spell):
|
class GuardsAndWards(Spell):
|
||||||
"""You create a ward that protects up to 2,500 square feet of floor space (an area
|
"""You create a ward that protects up to 2,500 square feet of floor
|
||||||
50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares).
|
space (an area 50 feet square, or one hundred 5-foot squares or
|
||||||
The warded area can be up to 20 feet tall, and shaped as you desire. You can
|
twenty-five 10-foot squares). The warded area can be up to 20 feet
|
||||||
ward several stories of a stronghold by dividing the area among them, as long as
|
tall, and shaped as you desire. You can ward several stories of a
|
||||||
you can walk into each contiguous area while you are casting the spell.
|
stronghold by dividing the area among them, as long as you can
|
||||||
|
walk into each contiguous area while you are casting the spell.
|
||||||
|
|
||||||
When
|
When you cast this spell, you can specify individuals that are
|
||||||
you cast this spell, you can specify individuals that are unaffected by any or
|
unaffected by any or all of the effects that you choose. You can
|
||||||
all of the effects that you choose. You can also specify a password that, when
|
also specify a password that, when spoken aloud, makes the speaker
|
||||||
spoken aloud, makes the speaker immune to these effects.
|
immune to these effects.
|
||||||
|
|
||||||
Guards and wards
|
Guards and wards creates the following effects within the warded
|
||||||
creates the following effects within the warded area.
|
area.
|
||||||
|
|
||||||
Corridors
|
Corridors: Fog fills all the warded corridors, making them heavily
|
||||||
Fog fills all
|
obscured. In addition, at each intersection or branching passage
|
||||||
the warded corridors, making them heavily obscured. In addition, at each
|
offering a choice of direction, there is a 50 percent chance that
|
||||||
intersection or branching passage offering a choice of direction, there is a 50
|
a creature other than you will believe it is going in the opposite
|
||||||
percent chance that a creature other than you will believe it is going in the
|
direction from the one it chooses.
|
||||||
opposite direction from the one it chooses.
|
|
||||||
|
|
||||||
Doors
|
Doors: All doors in the warded area are magically locked, as if
|
||||||
All doors in the warded area
|
sealed by an arcane lock spell. In addition, you can cover up to
|
||||||
are magically locked, as if sealed by an arcane lock spell. In addition, you can
|
ten doors with an illusion (equivalent to the illusory object
|
||||||
cover up to ten doors with an illusion (equivalent to the illusory object
|
function of the m inor illusion spell) to make them appear as
|
||||||
function of the m inor illusion spell) to make them appear as plain sections of
|
plain sections of wall.
|
||||||
wall.
|
|
||||||
|
|
||||||
Stairs
|
Stairs: Webs fill all stairs in the warded area from top to
|
||||||
Webs fill all stairs in the warded area from top to bottom, as the
|
bottom, as the web spell. These strands regrow in 10 minutes if
|
||||||
web spell. These strands regrow in 10 minutes if they are burned or torn away
|
they are burned or torn away while guards and wards lasts.
|
||||||
while guards and wards lasts.
|
|
||||||
|
Other Spell Effect: You can place your choice of one of the
|
||||||
|
following magical effects within the warded area of the
|
||||||
|
stronghold.
|
||||||
|
|
||||||
|
- Place dancing lights in four corridors. You can designate a
|
||||||
|
simple program that the lights repeat as long as guards and
|
||||||
|
wards lasts.
|
||||||
|
|
||||||
|
- Place magic mouth in two locations.
|
||||||
|
|
||||||
|
- Place stinking cloud in two locations. The vapors appear in the
|
||||||
|
places you designate; they return within 10 minutes if dispersed
|
||||||
|
by wind while guards and wards lasts.
|
||||||
|
|
||||||
Other Spell Effect
|
|
||||||
You can place your choice of
|
|
||||||
one of the following magical effects within the warded area of the stronghold.
|
|
||||||
-
|
|
||||||
Place dancing lights in four corridors. You can designate a simple program that
|
|
||||||
the lights repeat as long as
|
|
||||||
guards and wards lasts.
|
|
||||||
- Place magic mouth in two
|
|
||||||
locations.
|
|
||||||
- Place stinking cloud in two locations. The vapors appear in the
|
|
||||||
places you designate; they return within 10 minutes if dispersed by wind while
|
|
||||||
guards and wards lasts.
|
|
||||||
- Place a constant gust of wind in one corridor or room.
|
- Place a constant gust of wind in one corridor or room.
|
||||||
|
|
||||||
- Place a suggestion in one location. You select an area of up to 5 feet
|
- Place a suggestion in one location. You select an area of up to
|
||||||
square, and any creature that enters
|
5 feet square, and any creature that enters or passes through
|
||||||
or passes through the area receives the
|
the area receives the suggestion mentally.
|
||||||
suggestion mentally.
|
|
||||||
|
|
||||||
The whole warded area radiates magic. A dispel magic cast
|
The whole warded area radiates magic. A dispel magic cast on a
|
||||||
on a specific effect, if successful, removes only that effect.
|
specific effect, if successful, removes only that effect.
|
||||||
You can create a
|
|
||||||
permanently guarded and warded structure by casting this spell there every
|
You can create a permanently guarded and warded structure by
|
||||||
day for one year.
|
casting this spell there every day for one year.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Guards And Wards"
|
name = "Guards And Wards"
|
||||||
level = 6
|
level = 6
|
||||||
casting_time = "10 minutes"
|
casting_time = "10 minutes"
|
||||||
casting_range = "Touch"
|
casting_range = "Touch"
|
||||||
components = ('V', 'S', 'M')
|
components = ('V', 'S', 'M')
|
||||||
materials = """Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp"""
|
materials = "Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp"
|
||||||
duration = "24 hours"
|
duration = "24 hours"
|
||||||
ritual = False
|
ritual = False
|
||||||
magic_school = "Abjuration"
|
magic_school = "Abjuration"
|
||||||
@@ -524,8 +545,8 @@ class GuardsAndWards(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Guidance(Spell):
|
class Guidance(Spell):
|
||||||
"""You touch one willing creature. Once before the spell ends, the target can roll
|
"""You touch one willing creature. Once before the spell ends, the target can roll
|
||||||
a d4 and add the number rolled to one ability check of its choice. It can roll
|
a d4 and add the number rolled to one ability check of its choice. It can roll
|
||||||
the die before or after making the ability check. The spell then ends.
|
the die before or after making the ability check. The spell then ends.
|
||||||
"""
|
"""
|
||||||
name = "Guidance"
|
name = "Guidance"
|
||||||
@@ -542,14 +563,14 @@ class Guidance(Spell):
|
|||||||
|
|
||||||
class GuidingBolt(Spell):
|
class GuidingBolt(Spell):
|
||||||
"""A flash of light streaks toward a creature of your choice within range.
|
"""A flash of light streaks toward a creature of your choice within range.
|
||||||
Make a
|
Make a
|
||||||
ranged spell attack against the target. On a hit, the target takes 4d6 radiant
|
ranged spell attack against the target. On a hit, the target takes 4d6 radiant
|
||||||
damage, and the next attack roll made against this target before the end of your
|
damage, and the next attack roll made against this target before the end of your
|
||||||
next turn has advantage, thanks to the mystical dim light glittering on the
|
next turn has advantage, thanks to the mystical dim light glittering on the
|
||||||
target until then.
|
target until then.
|
||||||
|
|
||||||
At Higher Levels: When you cast this spell using a spell
|
At Higher Levels: When you cast this spell using a spell
|
||||||
slot of 2nd level or higher, the damage increases by 1d6 for each slot level
|
slot of 2nd level or higher, the damage increases by 1d6 for each slot level
|
||||||
above 1st.
|
above 1st.
|
||||||
"""
|
"""
|
||||||
name = "Guiding Bolt"
|
name = "Guiding Bolt"
|
||||||
@@ -564,18 +585,53 @@ class GuidingBolt(Spell):
|
|||||||
classes = ('Cleric',)
|
classes = ('Cleric',)
|
||||||
|
|
||||||
|
|
||||||
class Gust(Spell):
|
class GuidingHand(Spell):
|
||||||
"""You seize the air and compel it to create one of the following effects at a
|
"""You create a Tiny incorporeal hand of shimmering light in an
|
||||||
point you can see within range:
|
unoccupied space you can see within range. The hand exists for the
|
||||||
- One Medium or smaller creature that you choose
|
duration, but it disappears if you teleport or you travel to a
|
||||||
must succeed on a Strength saving throw or be pushed up to 5 feet away from
|
different plane of existence.
|
||||||
|
|
||||||
|
When the hand appears, you name one major landmark, such as a
|
||||||
|
city, mountain, castle, or battlefield on the same plane of
|
||||||
|
existence as you. Someone in history must have visited the site
|
||||||
|
and mapped it. If the landmark appears on no map in existence, the
|
||||||
|
spell fails. Otherwise, whenever you move toward the hand, it
|
||||||
|
moves away from you at the same speed you moved, and it moves in
|
||||||
|
the direction of the landmark, always remaining 5 feet away from
|
||||||
you.
|
you.
|
||||||
- You create a small blast of air capable of moving one object that is
|
|
||||||
neither held nor carried and that weighs no more than 5 pounds. The object is
|
If you don't move toward the hand, it remains in place until you
|
||||||
pushed up to 10 feet away from you. It isn't pushed with enough force to cause
|
do and beckons for you to follow once every 1d4 minutes.
|
||||||
damage.
|
|
||||||
- You create a harmless sensory affect using air, such as causing leaves
|
"""
|
||||||
to rustle, wind to slam shutters shut, or your clothing to ripple in a breeze.
|
name = "Guiding Hand"
|
||||||
|
level = 1
|
||||||
|
casting_time = "1 minute"
|
||||||
|
casting_range = "5 feet"
|
||||||
|
components = ('V', 'S')
|
||||||
|
materials = """"""
|
||||||
|
duration = "Concentration, up to 8 hours"
|
||||||
|
ritual = True
|
||||||
|
magic_scool = "Divination"
|
||||||
|
classes = ('Bard', 'Cleric', 'Druid', 'Wizard')
|
||||||
|
|
||||||
|
|
||||||
|
class Gust(Spell):
|
||||||
|
"""You seize the air and compel it to create one of the following
|
||||||
|
effects at a point you can see within range:
|
||||||
|
|
||||||
|
- One Medium or smaller creature that you choose must succeed on a
|
||||||
|
Strength saving throw or be pushed up to 5 feet away from you.
|
||||||
|
|
||||||
|
- You create a small blast of air capable of moving one object
|
||||||
|
that is neither held nor carried and that weighs no more than 5
|
||||||
|
pounds. The object is pushed up to 10 feet away from you. It
|
||||||
|
isn't pushed with enough force to cause damage.
|
||||||
|
|
||||||
|
- You create a harmless sensory affect using air, such as causing
|
||||||
|
leaves to rustle, wind to slam shutters shut, or your clothing
|
||||||
|
to ripple in a breeze.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Gust"
|
name = "Gust"
|
||||||
level = 0
|
level = 0
|
||||||
@@ -590,22 +646,23 @@ class Gust(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class GustOfWind(Spell):
|
class GustOfWind(Spell):
|
||||||
"""A line of strong wind 60 feet long and 10 feet wide blasts from you in a
|
"""A line of strong wind 60 feet long and 10 feet wide blasts from you
|
||||||
direction you choose for the spell's duration. Each creature that starts its
|
in a direction you choose for the spell's duration. Each creature
|
||||||
turn in the line must succeed on a Strength saving throw or be pushed 15 feet
|
that starts its turn in the line must succeed on a Strength saving
|
||||||
away from you in a direction following the line.
|
throw or be pushed 15 feet away from you in a direction following
|
||||||
|
the line.
|
||||||
|
|
||||||
Any creature in the line must
|
Any creature in the line must spend 2 feet of movement for every 1
|
||||||
spend 2 feet of movement for every 1 foot it moves when moving closer to you.
|
foot it moves when moving closer to you.
|
||||||
|
|
||||||
|
The gust disperses gas or vapor, and it extinguishes candles,
|
||||||
|
torches, and similar unprotected flames in the area. It causes
|
||||||
|
protected flames, such as those of lanterns, to dance wildly and
|
||||||
|
has a 50 percent chance to extinguish them.
|
||||||
|
|
||||||
The gust disperses gas or vapor, and it extinguishes candles, torches, and
|
As a bonus action on each of your turns before the spell ends, you
|
||||||
similar unprotected flames in the area. It causes protected flames, such as
|
can change the direction in which the line blasts from you.
|
||||||
those of lanterns, to dance wildly and has a 50 percent chance to extinguish
|
|
||||||
them.
|
|
||||||
|
|
||||||
As a bonus action on each of your turns before the spell ends, you can
|
|
||||||
change the direction in which the line blasts from you.
|
|
||||||
"""
|
"""
|
||||||
name = "Gust Of Wind"
|
name = "Gust Of Wind"
|
||||||
level = 2
|
level = 2
|
||||||
@@ -617,5 +674,3 @@ class GustOfWind(Spell):
|
|||||||
ritual = False
|
ritual = False
|
||||||
magic_school = "Evocation"
|
magic_school = "Evocation"
|
||||||
classes = ('Druid', 'Sorcerer', 'Wizard')
|
classes = ('Druid', 'Sorcerer', 'Wizard')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+420
-341
@@ -3,22 +3,22 @@ from .spells import Spell
|
|||||||
|
|
||||||
class WallOfFire(Spell):
|
class WallOfFire(Spell):
|
||||||
"""You create a wall of fire on a solid surface within range. You can make the wall
|
"""You create a wall of fire on a solid surface within range. You can make the wall
|
||||||
up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20
|
up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20
|
||||||
feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts
|
feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts
|
||||||
for the duration.
|
for the duration.
|
||||||
|
|
||||||
When the wall appears, each creature within its area must
|
When the wall appears, each creature within its area must
|
||||||
make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire
|
make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire
|
||||||
damage, or half as much damage on a successful save.
|
damage, or half as much damage on a successful save.
|
||||||
|
|
||||||
One side of the wall,
|
One side of the wall,
|
||||||
selected by you when you cast this spell, deals 5d8 fire damage to each creature
|
selected by you when you cast this spell, deals 5d8 fire damage to each creature
|
||||||
that ends its turn within 10 feet of that side or inside the wall. A creature
|
that ends its turn within 10 feet of that side or inside the wall. A creature
|
||||||
takes the same damage when it enters the wall for the first time on a turn or
|
takes the same damage when it enters the wall for the first time on a turn or
|
||||||
ends its turn there. The other side of the wall deals no damage.
|
ends its turn there. The other side of the wall deals no damage.
|
||||||
|
|
||||||
At Higher
|
At Higher
|
||||||
Levels: When you cast this spell using a spell slot of 5th level or higher, the
|
Levels: When you cast this spell using a spell slot of 5th level or higher, the
|
||||||
damage increases by 1d8 for each slot level above 4th.
|
damage increases by 1d8 for each slot level above 4th.
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Fire"
|
name = "Wall Of Fire"
|
||||||
@@ -34,21 +34,24 @@ class WallOfFire(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfForce(Spell):
|
class WallOfForce(Spell):
|
||||||
"""An invisible wall of force springs into existence at a point you choose within
|
"""An invisible wall of force springs into existence at a point you
|
||||||
range.
|
choose within range. The wall appears in any orientation you
|
||||||
The wall appears in any orientation you choose, as a horizontal or
|
choose, as a horizontal or vertical barrier or at an angle. It can
|
||||||
vertical barrier or at an angle. It can be free floating or resting on a solid
|
be free floating or resting on a solid surface. You can form it
|
||||||
surface. You can form it into a hemispherical dome or a sphere with a radius of
|
into a hemispherical dome or a sphere with a radius of up to 10
|
||||||
up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot
|
feet, or you can shape a flat surface made up of ten
|
||||||
panels. Each panel must be continguous with another panel. In any form, the
|
10-foot-by-10-foot panels. Each panel must be continguous with
|
||||||
wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a
|
another panel. In any form, the wall is 1/4 inch thick. It lasts
|
||||||
creature's space when it appears, the creature is pushed to one side of the wall
|
for the duration. If the wall cuts through a creature's space when
|
||||||
(your choice which side).
|
it appears, the creature is pushed to one side of the wall (your
|
||||||
|
choice which side).
|
||||||
|
|
||||||
Nothing can physically pass through the wall. It is
|
Nothing can physically pass through the wall. It is immune to all
|
||||||
immune to all damage and can't be dispelled by dispel magic. A disintegrate
|
damage and can't be dispelled by dispel magic. A disintegrate
|
||||||
spell destroys the wall instantly, however. The wall also extends into the
|
spell destroys the wall instantly, however. The wall also extends
|
||||||
Ethereal Plane, blocking ethereal travel through the wall.
|
into the Ethereal Plane, blocking ethereal travel through the
|
||||||
|
wall.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Force"
|
name = "Wall Of Force"
|
||||||
level = 5
|
level = 5
|
||||||
@@ -63,30 +66,33 @@ class WallOfForce(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfIce(Spell):
|
class WallOfIce(Spell):
|
||||||
"""You create a wall of ice on a solid surface within range. You can form it into a
|
"""You create a wall of ice on a solid surface within range. You can
|
||||||
hemispherical dome or a sphere with radius of up to 10 feet, or you can shape a
|
form it into a hemispherical dome or a sphere with radius of up to
|
||||||
flat surfcae made up of ten 10-foot-square panels. Each panel must be
|
10 feet, or you can shape a flat surfcae made up of ten
|
||||||
contiguous with another panel. In any form, the wall is 1 foot thick and lasts
|
10-foot-square panels. Each panel must be contiguous with another
|
||||||
for the duration.
|
panel. In any form, the wall is 1 foot thick and lasts for the
|
||||||
|
duration.
|
||||||
|
|
||||||
If the wall cuts through a creature's space when it appears,
|
If the wall cuts through a creature's space when it appears, the
|
||||||
the creature within its area is pushed to one side of the wall and must make a
|
creature within its area is pushed to one side of the wall and
|
||||||
Dexterity saving throw. On a failed save, the creature takes 10d6 cold damage,
|
must make a Dexterity saving throw. On a failed save, the creature
|
||||||
or half as much damage on a successful save.
|
takes 10d6 cold damage, or half as much damage on a successful
|
||||||
|
save.
|
||||||
|
|
||||||
The wall is an object that can be
|
The wall is an object that can be damaged and thus breached. It
|
||||||
damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section,
|
has AC 12 and 30 hit points per 10-foot section, and it is
|
||||||
and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit
|
vulnerable to fire damage. Reducing a 10-foot section of wall to 0
|
||||||
points destroys it and leaves behind a sheet of frigid air int he space the
|
hit points destroys it and leaves behind a sheet of frigid air int
|
||||||
wall occupied. A creature moving through the sheet of frigid air for the first
|
he space the wall occupied. A creature moving through the sheet of
|
||||||
time on a turn must make a Constitution saaving throw. The creature takes 5f6
|
frigid air for the first time on a turn must make a Constitution
|
||||||
cold damage on a failed save, or half as much damage on a successful one.
|
saaving throw. The creature takes 5f6 cold damage on a failed
|
||||||
|
save, or half as much damage on a successful one.
|
||||||
|
|
||||||
At
|
**At Higher Levels:** When you cast this spell using a spell slot
|
||||||
Higher Levels: When you cast this spell using a spell slot of 7th level or
|
of 7th level or higher, the damage the wall deals when it appears
|
||||||
higher, the damage the wall deals when it appears increases by 2d6, and the
|
increases by 2d6, and the damage from passing through the sheet of
|
||||||
damage from passing through the sheet of frigid air increases by 1d6, for each
|
frigid air increases by 1d6, for each slot level above 6th.
|
||||||
slot level above 6th.
|
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Ice"
|
name = "Wall Of Ice"
|
||||||
level = 6
|
level = 6
|
||||||
@@ -101,29 +107,34 @@ class WallOfIce(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfLight(Spell):
|
class WallOfLight(Spell):
|
||||||
"""A shimmering wall of bright light appears at a point you choose within range.
|
"""A shimmering wall of bright light appears at a point you choose
|
||||||
The wall appears in any orientation you choose: horizontally, vertically, or
|
within range. The wall appears in any orientation you choose:
|
||||||
diagonally. It can be free floating, or it can rest on a solid surface. The wall
|
horizontally, vertically, or diagonally. It can be free floating,
|
||||||
can be up to 60 feet long, 10 feet high, and 5 feet thick. The wall blocks line
|
or it can rest on a solid surface. The wall can be up to 60 feet
|
||||||
of sight, but creatures and objects can pass through it. It emits bright light
|
long, 10 feet high, and 5 feet thick. The wall blocks line of
|
||||||
out to 120 feet and dim light for an additional 120 feet.
|
sight, but creatures and objects can pass through it. It emits
|
||||||
When the wall appears,
|
bright light out to 120 feet and dim light for an additional 120
|
||||||
each creature in its area must make a Constitution saving throw. On a failed
|
feet.
|
||||||
save, a creature takes 4d8 radiant damage, and it is blinded for 1 minute. On a
|
|
||||||
successful save, it takes half as much damage and isn't blinded. A blinded
|
|
||||||
creature can make a Constitution saving throw at the end of each of its turns,
|
|
||||||
ending the effect on itself on a success.
|
|
||||||
A creature that ends its turn in the
|
|
||||||
wall's area takes 4d8 radiant damage.
|
|
||||||
Until the spell ends, you can use an
|
|
||||||
action to launch a beam of radiance from the wall at one creature you can see
|
|
||||||
within 60 feet of it. Make a ranged spell attack. On a hit, the target takes 4d8
|
|
||||||
radiant damage. Whether you hit or miss, reduce the length of the wall by 10
|
|
||||||
feet. If the wall's length drops to 0 feet, the spell ends.
|
|
||||||
|
|
||||||
At Higher Levels:
|
When the wall appears, each creature in its area must make a
|
||||||
When you cast this spell using a spell slot of 6th level or higher, the damage
|
Constitution saving throw. On a failed save, a creature takes 4d8
|
||||||
increases by 1d8 for each slot level above 5th.
|
radiant damage, and it is blinded for 1 minute. On a successful
|
||||||
|
save, it takes half as much damage and isn't blinded. A blinded
|
||||||
|
creature can make a Constitution saving throw at the end of each
|
||||||
|
of its turns, ending the effect on itself on a success.
|
||||||
|
|
||||||
|
A creature that ends its turn in the wall's area takes 4d8 radiant
|
||||||
|
damage. Until the spell ends, you can use an action to launch a
|
||||||
|
beam of radiance from the wall at one creature you can see within
|
||||||
|
60 feet of it. Make a ranged spell attack. On a hit, the target
|
||||||
|
takes 4d8 radiant damage. Whether you hit or miss, reduce the
|
||||||
|
length of the wall by 10 feet. If the wall's length drops to 0
|
||||||
|
feet, the spell ends.
|
||||||
|
|
||||||
|
**At Higher Levels:** When you cast this spell using a spell slot
|
||||||
|
of 6th level or higher, the damage increases by 1d8 for each slot
|
||||||
|
level above 5th.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Light"
|
name = "Wall Of Light"
|
||||||
level = 5
|
level = 5
|
||||||
@@ -138,8 +149,8 @@ class WallOfLight(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfSand(Spell):
|
class WallOfSand(Spell):
|
||||||
"""You conjure up a wall of swirling sand on the ground at a point you can see
|
"""You conjure up a wall of swirling sand on the ground at a point you can see
|
||||||
within range. You can make the wall up to 30 feet long, 10 feet high, and 10
|
within range. You can make the wall up to 30 feet long, 10 feet high, and 10
|
||||||
feet thick, and it vanishes when the spell ends. It blocks line of sight but not
|
feet thick, and it vanishes when the spell ends. It blocks line of sight but not
|
||||||
movement. A creature is blinded while in the wall's space and must spend 3 feet
|
movement. A creature is blinded while in the wall's space and must spend 3 feet
|
||||||
of movement for every 1 foot it moves there.
|
of movement for every 1 foot it moves there.
|
||||||
@@ -157,38 +168,38 @@ class WallOfSand(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfStone(Spell):
|
class WallOfStone(Spell):
|
||||||
"""A nonmagical wall of solid stone springs into existence at a point you choose
|
"""A nonmagical wall of solid stone springs into existence at a point
|
||||||
within range.
|
you choose within range. The wall is 6 inches thick and is
|
||||||
The wall is 6 inches thick and is composed of ten 10-foot-
|
composed of ten 10-foot- by-10-foot panels. Each panel must be
|
||||||
by-10-foot panels. Each panel must be contiguous with at least on other panel.
|
contiguous with at least on other panel. Alternatively, you can
|
||||||
Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches
|
create 10-foot-by-20-foot panels that are only 3 inches thick.
|
||||||
thick.
|
|
||||||
|
|
||||||
If the wall cuts through a creature's space when it appears, the
|
If the wall cuts through a creature's space when it appears, the
|
||||||
creature is pushed to one side of the wall (your choice). If a creature would be
|
creature is pushed to one side of the wall (your choice). If a
|
||||||
surrounded on all sides by the wall (or the wall and another solid surface),
|
creature would be surrounded on all sides by the wall (or the wall
|
||||||
that creature can make a Dexterity saving throw. On a success, it can use its
|
and another solid surface), that creature can make a Dexterity
|
||||||
reaction to move up to its speed so that it is no longer enclosed by the wall.
|
saving throw. On a success, it can use its reaction to move up to
|
||||||
|
its speed so that it is no longer enclosed by the wall.
|
||||||
|
|
||||||
|
The wall can have any shape you desire, though it can't occupy the
|
||||||
|
same space as a creature or object. the wall doesn't need to be
|
||||||
|
vertical or resting on any firm foundation. It must, however,
|
||||||
|
merge with and be solidly supported by existing stone. Thus you
|
||||||
|
can use this spell to bridge a chasm or create a ramp.
|
||||||
|
|
||||||
The wall can have any shape you desire, though it can't occupy the same space as
|
If you create a span greater than 20 feet in length, you must
|
||||||
a creature or object. the wall doesn't need to be vertical or resting on any
|
halve the size of each panel to create supports. You can crudely
|
||||||
firm foundation. It must, however, merge with and be solidly supported by
|
shape the wall to create crenellations, battlements, and so on.
|
||||||
existing stone. Thus you can use this spell to bridge a chasm or create a ramp.
|
|
||||||
|
|
||||||
|
The wall is an object made of stone that can be damaged and thus
|
||||||
|
breached. Each panel has AC 15 and 30 hit points per inch of
|
||||||
|
thickness. Reducing a panel to 0 hit points destroys it and might
|
||||||
|
cause connected panels to collapse at the DM's discretion.
|
||||||
|
|
||||||
If you create a span greater than 20 feet in length, you must halve the size
|
If you maintain your concentration on this spell for its whole
|
||||||
of each panel to create supports. You can crudely shape the wall to create
|
duration, the wall becomes permanent and can't be
|
||||||
crenellations, battlements, and so on.
|
dispelled. Otherwise, the wall disappears when the spell ends.
|
||||||
|
|
||||||
The wall is an object made of stone that
|
|
||||||
can be damaged and thus breached. Each panel has AC 15 and 30 hit points per
|
|
||||||
inch of thickness. Reducing a panel to 0 hit points destroys it and might cause
|
|
||||||
connected panels to collapse at the DM's discretion.
|
|
||||||
|
|
||||||
If you maintain your
|
|
||||||
concentration on this spell for its whole duration, the wall becomes permanent
|
|
||||||
and can't be dispelled. Otherwise, the wall disappears when the spell ends.
|
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Stone"
|
name = "Wall Of Stone"
|
||||||
level = 5
|
level = 5
|
||||||
@@ -203,25 +214,25 @@ class WallOfStone(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WallOfThorns(Spell):
|
class WallOfThorns(Spell):
|
||||||
"""You create a wall of tough, pliable, tangled brush bristling with needle-sharp
|
"""You create a wall of tough, pliable, tangled brush bristling with needle-sharp
|
||||||
thorns. The wall appears within range on a solid surface and lasts for the
|
thorns. The wall appears within range on a solid surface and lasts for the
|
||||||
duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5
|
duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5
|
||||||
feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and
|
feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and
|
||||||
5 feet thick. The wall blocks line of sight.
|
5 feet thick. The wall blocks line of sight.
|
||||||
|
|
||||||
When the wall appears, each
|
When the wall appears, each
|
||||||
creature within its area must make a Dexterity saving throw. On a failed save, a
|
creature within its area must make a Dexterity saving throw. On a failed save, a
|
||||||
creature takes 7d8 piercing damage, or half as much damage on a successful
|
creature takes 7d8 piercing damage, or half as much damage on a successful
|
||||||
save.
|
save.
|
||||||
|
|
||||||
A creature can move through the wall, albeit slowly and painfully. For
|
A creature can move through the wall, albeit slowly and painfully. For
|
||||||
every 1 foot a creature moves through the wall, it must spend 4 feet of
|
every 1 foot a creature moves through the wall, it must spend 4 feet of
|
||||||
movement. Furthermore, the first time a creature enters the wall on a turn or
|
movement. Furthermore, the first time a creature enters the wall on a turn or
|
||||||
ends its turn there, the creature must make a Dexterity saving throw. It takes
|
ends its turn there, the creature must make a Dexterity saving throw. It takes
|
||||||
7d8 slashing damage on a failed save, or half as much on a successful save.
|
7d8 slashing damage on a failed save, or half as much on a successful save.
|
||||||
|
|
||||||
At
|
At
|
||||||
Higher Levels: When you cast this spell using a spell slot of 7th level or
|
Higher Levels: When you cast this spell using a spell slot of 7th level or
|
||||||
higher, both types o f damage increase by 1d8 for each slot level above 6th.
|
higher, both types o f damage increase by 1d8 for each slot level above 6th.
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Thorns"
|
name = "Wall Of Thorns"
|
||||||
@@ -238,20 +249,24 @@ class WallOfThorns(Spell):
|
|||||||
|
|
||||||
class WallOfWater(Spell):
|
class WallOfWater(Spell):
|
||||||
"""(a drop of water)
|
"""(a drop of water)
|
||||||
You conjure up a wall of water on the ground at a point you
|
|
||||||
can see within range. You can make the wall up to 30 feet long, 10 feet high,
|
You conjure up a wall of water on the ground at a point you can
|
||||||
and 1 foot thick, or you can make a ringed wall up to 20 feet in diameter, 20
|
see within range. You can make the wall up to 30 feet long, 10
|
||||||
feet high, and 1 foot thick. The wall vanishes when the spell ends. The wall's
|
feet high, and 1 foot thick, or you can make a ringed wall up to
|
||||||
space is difficult terrain.
|
20 feet in diameter, 20 feet high, and 1 foot thick. The wall
|
||||||
Any ranged weapon attack that enters the wall's
|
vanishes when the spell ends. The wall's space is difficult
|
||||||
space has disadvantage on the attack roll, and fire damage
|
terrain.
|
||||||
is halved if the fire
|
|
||||||
effect passes through the wall to reach its target. Spells that deal cold
|
Any ranged weapon attack that enters the wall's space has
|
||||||
damage that pass through the wall cause the area of the wall they pass through
|
disadvantage on the attack roll, and fire damage is halved if the
|
||||||
to freeze solid (at least a 5-foot square section is frozen). Each 5-foot-square
|
fire effect passes through the wall to reach its target. Spells
|
||||||
frozen section has AC 5 and 15 hit points. Reducing a frozen section to 0 hit
|
that deal cold damage that pass through the wall cause the area of
|
||||||
points destroys it. When a section is destroyed, the wall's water doesn't fill
|
the wall they pass through to freeze solid (at least a 5-foot
|
||||||
it.
|
square section is frozen). Each 5-foot-square frozen section has
|
||||||
|
AC 5 and 15 hit points. Reducing a frozen section to 0 hit points
|
||||||
|
destroys it. When a section is destroyed, the wall’s water doesn’t
|
||||||
|
fill it.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wall Of Water"
|
name = "Wall Of Water"
|
||||||
level = 3
|
level = 3
|
||||||
@@ -266,17 +281,17 @@ class WallOfWater(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WardingBond(Spell):
|
class WardingBond(Spell):
|
||||||
"""This spell wards a willing creature you touch and creates a mystic connection
|
"""This spell wards a willing creature you touch and creates a mystic connection
|
||||||
between you and the target until the spell ends.
|
between you and the target until the spell ends.
|
||||||
|
|
||||||
While the target is within 60
|
While the target is within 60
|
||||||
feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance
|
feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance
|
||||||
to all damage. Also, each time it takes damage, you take the same amount of
|
to all damage. Also, each time it takes damage, you take the same amount of
|
||||||
damage.
|
damage.
|
||||||
|
|
||||||
The spell ends if you drop to 0 hit points or if you and the target
|
The spell ends if you drop to 0 hit points or if you and the target
|
||||||
become separated by more than 60 feet. It also ends if the spell is cast again
|
become separated by more than 60 feet. It also ends if the spell is cast again
|
||||||
on either of the connected creatures. You can also dismiss the spell as an
|
on either of the connected creatures. You can also dismiss the spell as an
|
||||||
action.
|
action.
|
||||||
"""
|
"""
|
||||||
name = "Warding Bond"
|
name = "Warding Bond"
|
||||||
@@ -292,20 +307,20 @@ class WardingBond(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WardingWind(Spell):
|
class WardingWind(Spell):
|
||||||
"""A strong wind (20 miles per hour) blows around you in a 10-foot radius and moves
|
"""A strong wind (20 miles per hour) blows around you in a 10-foot
|
||||||
with you, remaining centered on you. The wind lasts for the spell's duration.
|
radius and moves with you, remaining centered on you. The wind
|
||||||
|
lasts for the spell's duration.
|
||||||
|
|
||||||
The wind has the following effects:
|
The wind has the following effects:
|
||||||
- It deafens you and other creatures in its
|
- It deafens you and other creatures in its area.
|
||||||
area.
|
- It extinguishes unprotected flames in its area that are
|
||||||
- It extinguishes unprotected flames in its area that are torch-sized or
|
torch-sized or smaller.
|
||||||
smaller.
|
|
||||||
- The area is difficult terrain for creatures other than you.
|
- The area is difficult terrain for creatures other than you.
|
||||||
- The
|
- The attack rolls of ranged weapon attacks have disadvantage if
|
||||||
attack rolls of ranged weapon attacks have disadvantage if they pass in or out
|
they pass in or out of the wind.
|
||||||
of the wind.
|
- It hedges out vapor, gas, and fog that can be dispersed by
|
||||||
- It hedges out vapor, gas, and fog that can be dispersed by strong
|
strong wind.
|
||||||
wind.
|
|
||||||
"""
|
"""
|
||||||
name = "Warding Wind"
|
name = "Warding Wind"
|
||||||
level = 2
|
level = 2
|
||||||
@@ -320,8 +335,8 @@ class WardingWind(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WaterBreathing(Spell):
|
class WaterBreathing(Spell):
|
||||||
"""This spell grants up to ten willing creatures you can see within range the
|
"""This spell grants up to ten willing creatures you can see within range the
|
||||||
ability to breathe underwater until the spell ends. Affected creatures also
|
ability to breathe underwater until the spell ends. Affected creatures also
|
||||||
retain their normal mode of respiration.
|
retain their normal mode of respiration.
|
||||||
"""
|
"""
|
||||||
name = "Water Breathing"
|
name = "Water Breathing"
|
||||||
@@ -338,13 +353,13 @@ class WaterBreathing(Spell):
|
|||||||
|
|
||||||
class WaterWalk(Spell):
|
class WaterWalk(Spell):
|
||||||
"""This spell grants the ability to move across any liquid surface – such as water,
|
"""This spell grants the ability to move across any liquid surface – such as water,
|
||||||
acid, mud, snow, quicksand, or lava – as if it were harmless solid ground
|
acid, mud, snow, quicksand, or lava – as if it were harmless solid ground
|
||||||
(creatures crossing molten lava can still take damage from the heat).
|
(creatures crossing molten lava can still take damage from the heat).
|
||||||
Up to ten
|
Up to ten
|
||||||
willing creatures you can see within range gain this ability for the duration.
|
willing creatures you can see within range gain this ability for the duration.
|
||||||
|
|
||||||
|
|
||||||
If you target a creature submerged in a liquid, the spell carries the target to
|
If you target a creature submerged in a liquid, the spell carries the target to
|
||||||
the surface of the liquid at a rate of 60 feet per round.
|
the surface of the liquid at a rate of 60 feet per round.
|
||||||
"""
|
"""
|
||||||
name = "Water Walk"
|
name = "Water Walk"
|
||||||
@@ -360,29 +375,37 @@ class WaterWalk(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WaterySphere(Spell):
|
class WaterySphere(Spell):
|
||||||
"""You conjure up a sphere of water with a 5-foot radius on a point you can see
|
"""You conjure up a sphere of water with a 5-foot radius on a point
|
||||||
within range. The sphere can hover in the air, but no more than 10 feet off the
|
you can see within range. The sphere can hover in the air, but no
|
||||||
ground. The sphere remains for the spell's duration.
|
more than 10 feet off the ground. The sphere remains for the
|
||||||
Any creature in the
|
spell's duration.
|
||||||
sphere's space must make a Strength saving throw. On a successful save, a
|
|
||||||
creature is ejected from that space to the nearest unoccupied space outside it.
|
Any creature in the sphere's space must make a Strength saving
|
||||||
A Huge or larger creature succeeds on the saving throw automatically. On a
|
throw. On a successful save, a creature is ejected from that space
|
||||||
failed save, a creature is restrained by the sphere and is engulfed by the
|
to the nearest unoccupied space outside it. A Huge or larger
|
||||||
water. At the end of each of its turns, a restrained target can repeat the
|
creature succeeds on the saving throw automatically. On a failed
|
||||||
saving throw.
|
save, a creature is restrained by the sphere and is engulfed by
|
||||||
The sphere can restrain a maximum of four Medium or smaller
|
the water. At the end of each of its turns, a restrained target
|
||||||
creatures or one Large creature. If the sphere restrains a creature in excess of
|
can repeat the saving throw.
|
||||||
these numbers, a random creature that was already restrained by the sphere
|
|
||||||
falls out of it and lands prone in a space within 5 feet of it.
|
The sphere can restrain a maximum of four Medium or smaller
|
||||||
As an action,
|
creatures or one Large creature. If the sphere restrains a
|
||||||
you can move the sphere up to 30 feet in a straight line. If it moves over a
|
creature in excess of these numbers, a random creature that was
|
||||||
pit, cliff, or other drop, it safely descends until it is hovering 10 feet over
|
already restrained by the sphere falls out of it and lands prone
|
||||||
ground. Any creature restrained by the sphere moves with it. You can ram the
|
in a space within 5 feet of it.
|
||||||
sphere into creatures, forcing them to make the saving throw, but no more than
|
|
||||||
once per turn.
|
As an action, you can move the sphere up to 30 feet in a straight
|
||||||
When the spell ends, the sphere falls to the ground and
|
line. If it moves over a pit, cliff, or other drop, it safely
|
||||||
extinguishes all normal flames within 30 feet of it. Any creature restrained by
|
descends until it is hovering 10 feet over ground. Any creature
|
||||||
the sphere is knocked prone in the space where it falls.
|
restrained by the sphere moves with it. You can ram the sphere
|
||||||
|
into creatures, forcing them to make the saving throw, but no more
|
||||||
|
than once per turn.
|
||||||
|
|
||||||
|
When the spell ends, the sphere falls to the ground and
|
||||||
|
extinguishes all normal flames within 30 feet of it. Any creature
|
||||||
|
restrained by the sphere is knocked prone in the space where it
|
||||||
|
falls.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Watery Sphere"
|
name = "Watery Sphere"
|
||||||
level = 4
|
level = 4
|
||||||
@@ -397,28 +420,30 @@ class WaterySphere(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Web(Spell):
|
class Web(Spell):
|
||||||
"""You conjure a mass of thick, sticky webbing at a point of your choice within
|
"""You conjure a mass of thick, sticky webbing at a point of your
|
||||||
range.
|
choice within range. The webs fill a 20-foot cube from that point
|
||||||
The webs fill a 20-foot cube from that point for the duration. The webs
|
for the duration. The webs are difficult terrain and lightly
|
||||||
are difficult terrain and lightly obscure their area.
|
obscure their area.
|
||||||
|
|
||||||
If the webs aren't
|
If the webs aren't anchored between two solid masses (such as
|
||||||
anchored between two solid masses (such as walls or trees) or layered across a
|
walls or trees) or layered across a floor, wall, or ceiling, the
|
||||||
floor, wall, or ceiling, the conjured web collapses on itself, and the spell
|
conjured web collapses on itself, and the spell ends at the start
|
||||||
ends at the start of your next turn. Webs layered over a flat surface have a
|
of your next turn. Webs layered over a flat surface have a depth
|
||||||
depth of 5 feet.
|
of 5 feet.
|
||||||
|
|
||||||
Each creature that starts its turn in the webs or that enters
|
Each creature that starts its turn in the webs or that enters them
|
||||||
them during its turn must make a Dexterity saving throw. On a failed save, the
|
during its turn must make a Dexterity saving throw. On a failed
|
||||||
creature is restrained as long as it remains in the webs or until it breaks
|
save, the creature is restrained as long as it remains in the webs
|
||||||
free.
|
or until it breaks free.
|
||||||
|
|
||||||
A creature restrained by the webs can use its action to make a Strength
|
A creature restrained by the webs can use its action to make a
|
||||||
check against your spell save DC. If it succeeds, it is no longer restrained.
|
Strength check against your spell save DC. If it succeeds, it is
|
||||||
|
no longer restrained.
|
||||||
|
|
||||||
|
The webs are flammable. Any 5-foot cube of webs exposed to fire
|
||||||
The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1
|
burns away in 1 round, dealing 2d4 fire damage to any creature
|
||||||
round, dealing 2d4 fire damage to any creature that starts its turn in the fire.
|
that starts its turn in the fire.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Web"
|
name = "Web"
|
||||||
level = 2
|
level = 2
|
||||||
@@ -433,16 +458,18 @@ class Web(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Weird(Spell):
|
class Weird(Spell):
|
||||||
"""Drawing on the deepest fears of a group of creatures, you create illusory
|
"""Drawing on the deepest fears of a group of creatures, you create
|
||||||
creatures in their minds, visible only to them.
|
illusory creatures in their minds, visible only to them. Each
|
||||||
Each creature in a 30-foot-
|
creature in a 30-foot-radius sphere centered on a point of your
|
||||||
radius sphere centered on a point of your choice within range must make a Wisdom
|
choice within range must make a Wisdom saving throw. On a failed
|
||||||
saving throw. On a failed save, a creature becomes frightened for the duration.
|
save, a creature becomes frightened for the duration.
|
||||||
|
|
||||||
The illusion calls on the creature's deepest fears, manifesting its worst
|
The illusion calls on the creature's deepest fears, manifesting
|
||||||
nightmares as an implacable threat. At the end of each of the frightened
|
its worst nightmares as an implacable threat. At the end of each
|
||||||
creature's turns, it must succeed on a Wisdom saving throw or take 4d10 psychic
|
of the frightened creature's turns, it must succeed on a Wisdom
|
||||||
damage. On a successful save, the spell ends for that creature.
|
saving throw or take 4d10 psychic damage. On a successful save,
|
||||||
|
the spell ends for that creature.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Weird"
|
name = "Weird"
|
||||||
level = 9
|
level = 9
|
||||||
@@ -457,27 +484,32 @@ class Weird(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Whirlwind(Spell):
|
class Whirlwind(Spell):
|
||||||
"""A whirlwind howls down to a point that you can see on the ground within range.
|
"""A whirlwind howls down to a point that you can see on the ground
|
||||||
The whirlwind is a 10-foot-radius, 30-foot-high cylinder centered on that point.
|
within range. The whirlwind is a 10-foot-radius, 30-foot-high
|
||||||
Until the spell ends, you can use your action to move the whirlwind up to 30
|
cylinder centered on that point. Until the spell ends, you can
|
||||||
feet in any direction along the ground. The whirlwind sucks up any Medium or
|
use your action to move the whirlwind up to 30 feet in any
|
||||||
smaller objects that aren't secured to anything and that aren't worn or carried
|
direction along the ground. The whirlwind sucks up any Medium or
|
||||||
by anyone.
|
smaller objects that aren't secured to anything and that aren't
|
||||||
A creature must make a Dexterity saving throw the first time on a
|
worn or carried by anyone.
|
||||||
turn that it enters the
|
|
||||||
whirlwind or that the whirlwind enters its space,
|
A creature must make a Dexterity saving throw the first time on a
|
||||||
including when the whirlwind first appears. A creature takes 10d6 bludgeoning
|
turn that it enters the whirlwind or that the whirlwind enters its
|
||||||
damage on a failed save, or half as much damage on a successful one. In
|
space, including when the whirlwind first appears. A creature
|
||||||
addition, a Large or smaller creature that fails the save must succeed on a
|
takes 10d6 bludgeoning damage on a failed save, or half as much
|
||||||
Strength saving throw or become restrained in the whirlwind until the spell
|
damage on a successful one. In addition, a Large or smaller
|
||||||
ends. When a creature starts its turn restrained by the whirlwind, the creature
|
creature that fails the save must succeed on a Strength saving
|
||||||
is pulled 5 feet higher inside it, unless the creature is at the top.
|
throw or become restrained in the whirlwind until the spell
|
||||||
A
|
ends. When a creature starts its turn restrained by the whirlwind,
|
||||||
restrained creature moves with the whirlwind and falls when the spell ends,
|
the creature is pulled 5 feet higher inside it, unless the
|
||||||
unless the creature has some means to stay aloft. A restrained creature can use
|
creature is at the top.
|
||||||
an action to make a Strength or Dexterity check against your spell save DC. If
|
|
||||||
successful, the creature is no longer restrained by the whirlwind and is hurled
|
A restrained creature moves with the whirlwind and falls when the
|
||||||
|
spell ends, unless the creature has some means to stay aloft. A
|
||||||
|
restrained creature can use an action to make a Strength or
|
||||||
|
Dexterity check against your spell save DC. If successful, the
|
||||||
|
creature is no longer restrained by the whirlwind and is hurled
|
||||||
3d6 x 10 feet away from it in a random direction.
|
3d6 x 10 feet away from it in a random direction.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Whirlwind"
|
name = "Whirlwind"
|
||||||
level = 7
|
level = 7
|
||||||
@@ -491,22 +523,57 @@ class Whirlwind(Spell):
|
|||||||
classes = ('Druid', 'Wizard', 'Sorcerer')
|
classes = ('Druid', 'Wizard', 'Sorcerer')
|
||||||
|
|
||||||
|
|
||||||
|
class WildCunning(Spell):
|
||||||
|
"""You call out to the spirits of nature to aid you. When you cast this
|
||||||
|
spell, choose one of the following effects:
|
||||||
|
-- If there are any tracks on the ground within range, you know where they
|
||||||
|
are, and you make Wisdom (Survival) checks to follow these tracks with
|
||||||
|
advantage for 1 hour or until you cast this spell again.
|
||||||
|
|
||||||
|
-- If there is edible forage within range, you know it and where to find
|
||||||
|
it.
|
||||||
|
|
||||||
|
-- If there is clean drinking water within range, you know it and where to
|
||||||
|
find it.
|
||||||
|
|
||||||
|
-- If there is suitable shelter for you and your companions with range, you
|
||||||
|
know it and where to find it.
|
||||||
|
|
||||||
|
-- Send the spirits to bring back wood for a fire and to set up a campsite
|
||||||
|
in the area using your supplies. The spirits build the fire in a circle of
|
||||||
|
stones, put up tents, unroll bedrolls, and put out any rations and water
|
||||||
|
for consumption.
|
||||||
|
|
||||||
|
-- Have the spirits instantly break down a campsite, which includes putting
|
||||||
|
out a fire, taking down tents, packing up bags, and burying any rubbish.
|
||||||
|
"""
|
||||||
|
name = "Wild Cunning"
|
||||||
|
level = 1
|
||||||
|
casting_time = "1 action"
|
||||||
|
casting_range = "120 feet"
|
||||||
|
components = ('V', 'S')
|
||||||
|
materials = """"""
|
||||||
|
duration = "Insantaneous"
|
||||||
|
magic_school = "Transmutation"
|
||||||
|
classes = ('Druid', 'Ranger')
|
||||||
|
|
||||||
|
|
||||||
class WindWalk(Spell):
|
class WindWalk(Spell):
|
||||||
"""You and up to ten willing creatures you can see within range assume a gaseous
|
"""You and up to ten willing creatures you can see within range assume
|
||||||
form for the duration, appearing as wisps of cloud.
|
a gaseous form for the duration, appearing as wisps of cloud.
|
||||||
While in this cloud form, a
|
While in this cloud form, a creature has a flying speed of 300
|
||||||
creature has a flying speed of 300 feet and has resistance to damage from
|
feet and has resistance to damage from nonmagical weapons. The
|
||||||
nonmagical weapons. The only actions a creature can take in this form are the
|
only actions a creature can take in this form are the Dash action
|
||||||
Dash action or to revert to its normal form.
|
or to revert to its normal form. Reverting takes 1 minute, during
|
||||||
Reverting takes 1 minute, during
|
which time a creature is incapacitated and can't move. Until the
|
||||||
which time a creature is incapacitated and can't move. Until the spell ends, a
|
spell ends, a creature can revert to cloud form, which also
|
||||||
creature can revert to cloud form, which also requires the 1-minute
|
requires the 1-minute transformation.
|
||||||
transformation.
|
|
||||||
|
|
||||||
If a creature is in cloud form and flying when the effect ends,
|
If a creature is in cloud form and flying when the effect ends,
|
||||||
the creature descends 60 feet per round for 1 minute until it lands, which it
|
the creature descends 60 feet per round for 1 minute until it
|
||||||
does safely. If it can't land after 1 minute, the creature falls the remaining
|
lands, which it does safely. If it can't land after 1 minute, the
|
||||||
distance.
|
creature falls the remaining distance.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wind Walk"
|
name = "Wind Walk"
|
||||||
level = 6
|
level = 6
|
||||||
@@ -521,23 +588,27 @@ class WindWalk(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WindWall(Spell):
|
class WindWall(Spell):
|
||||||
"""A wall of strong wind rises from the ground at a point you choose within range.
|
"""A wall of strong wind rises from the ground at a point you choose
|
||||||
|
within range.
|
||||||
|
|
||||||
You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You
|
You can make the wall up to 50 feet long, 15 feet high, and 1 foot
|
||||||
can shape the wall in any way you choose so long as it makes one continuous path
|
thick. You can shape the wall in any way you choose so long as it
|
||||||
along the ground. The wall lasts for the duration.
|
makes one continuous path along the ground. The wall lasts for the
|
||||||
|
duration.
|
||||||
|
|
||||||
When the wall appears, each
|
When the wall appears, each creature within its area must make a
|
||||||
creature within its area must make a Strength saving throw. A creature takes
|
Strength saving throw. A creature takes 3d8 bludgeoning damage on
|
||||||
3d8 bludgeoning damage on a failed save, or half as much damage on a successful
|
a failed save, or half as much damage on a successful one.
|
||||||
one.
|
|
||||||
|
|
||||||
The strong wind keeps fog, smoke, and other gases at bay. Small or smaller
|
The strong wind keeps fog, smoke, and other gases at bay. Small or
|
||||||
flying creatures or objects can't pass through the wall. Loose, lightweight
|
smaller flying creatures or objects can't pass through the
|
||||||
materials brought into the wall fly upward. Arrows, bolts, and other ordinary
|
wall. Loose, lightweight materials brought into the wall fly
|
||||||
projectiles launched at targets behind the wall are deflected upward and
|
upward. Arrows, bolts, and other ordinary projectiles launched at
|
||||||
automatically miss. (Boulders hurled by giants or siege engines, and similar
|
targets behind the wall are deflected upward and automatically
|
||||||
projectiles, are unaffected.) Creatures in gaseous form can't pass through it.
|
miss. (Boulders hurled by giants or siege engines, and similar
|
||||||
|
projectiles, are unaffected.) Creatures in gaseous form can't pass
|
||||||
|
through it.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wind Wall"
|
name = "Wind Wall"
|
||||||
level = 3
|
level = 3
|
||||||
@@ -552,61 +623,65 @@ class WindWall(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class Wish(Spell):
|
class Wish(Spell):
|
||||||
"""Wish is the mightiest spell a mortal creature can cast. By simply speaking
|
"""Wish is the mightiest spell a mortal creature can cast. By simply
|
||||||
aloud, you can alter the very foundations of reality in accord with your
|
speaking aloud, you can alter the very foundations of reality in
|
||||||
desires.
|
accord with your desires.
|
||||||
|
|
||||||
The basic use of this spell is to duplicate any other spell of 8th
|
The basic use of this spell is to duplicate any other spell of 8th
|
||||||
level or lower. You don't need to meet any requirements in that spell, including
|
level or lower. You don't need to meet any requirements in that
|
||||||
costly components. The spell simply takes effect.
|
spell, including costly components. The spell simply takes effect.
|
||||||
Alternatively, you can create
|
Alternatively, you can create one of the following effects of your
|
||||||
one of the following effects of your choice:
|
choice:
|
||||||
|
|
||||||
- You create one object of up to
|
- You create one object of up to 25,000 gp in value that isn't a
|
||||||
25,000 gp in value that isn't a magic item. The object can be no more than 300
|
magic item. The object can be no more than 300 feet in any
|
||||||
feet in any dimension, and it appears in an unoccupied space you can see on the
|
dimension, and it appears in an unoccupied space you can see on
|
||||||
ground.
|
the ground.
|
||||||
|
|
||||||
- You allow up to twenty creatures that you can see to regain all hit
|
- You allow up to twenty creatures that you can see to regain all
|
||||||
points, and you end all effects on them described in the greater restoration
|
hit points, and you end all effects on them described in the
|
||||||
spell.
|
greater restoration spell.
|
||||||
|
|
||||||
- You grant up to ten creatures that you can see resistance to a damage
|
- You grant up to ten creatures that you can see resistance to a
|
||||||
type you choose.
|
damage type you choose.
|
||||||
|
|
||||||
- You grant up to ten creatures you can see immunity to a
|
- You grant up to ten creatures you can see immunity to a single
|
||||||
single spell or other magical effect for 8 hours. For instance, you could make
|
spell or other magical effect for 8 hours. For instance, you
|
||||||
yourself and all your com panions immune to a lich's life drain attack.
|
could make yourself and all your com panions immune to a lich's
|
||||||
|
life drain attack.
|
||||||
|
|
||||||
- You
|
- You undo a single recent event by forcing a reroll of any roll
|
||||||
undo a single recent event by forcing a reroll of any roll made within the last
|
made within the last round (including your last turn). Reality
|
||||||
round (including your last turn). Reality reshapes itself to accommodate the new
|
reshapes itself to accommodate the new result. For example, a
|
||||||
result. For example, a wish spell could undo an opponent's successful save, a
|
wish spell could undo an opponent's successful save, a foe's
|
||||||
foe's critical hit, or a friend's failed save. You can force the reroll to be
|
critical hit, or a friend's failed save. You can force the
|
||||||
made with advantage or disadvantage, and you can choose whether to use the
|
reroll to be made with advantage or disadvantage, and you can
|
||||||
reroll or the original roll.
|
choose whether to use the reroll or the original roll.
|
||||||
|
|
||||||
You might be able to achieve something beyond the
|
You might be able to achieve something beyond the scope of the
|
||||||
scope of the above examples. State your wish to the DM as precisely as possible.
|
above examples. State your wish to the DM as precisely as
|
||||||
The DM has great latitude in ruling what occurs in such an instance; the
|
possible. The DM has great latitude in ruling what occurs in such
|
||||||
greater the wish, the greater the likelihood that something goes wrong. This
|
an instance; the greater the wish, the greater the likelihood that
|
||||||
spell might simply fail, the effect you desire
|
something goes wrong. This spell might simply fail, the effect you
|
||||||
mightonlybepartlyachieved,oryoumightsuffersome unforeseen consequence as a
|
desire might only be partly achieved, or you might suffer some
|
||||||
result of how you worded the wish. For example, wishing that a villain were dead
|
unforeseen consequence as a result of how you worded the wish. For
|
||||||
might propel you forward in time to a period when that villain is no longer
|
example, wishing that a villain were dead might propel you forward
|
||||||
alive, effectively removing you from the game. Similarly, wishing for a
|
in time to a period when that villain is no longer alive,
|
||||||
legendary magic item or artifact might instantly transport you to the presence
|
effectively removing you from the game. Similarly, wishing for a
|
||||||
of the item's current owner.
|
legendary magic item or artifact might instantly transport you to
|
||||||
|
the presence of the item's current owner.
|
||||||
|
|
||||||
The stress of casting this spell to produce any
|
The stress of casting this spell to produce any effect other than
|
||||||
effect other than duplicating another spell weakens you. After enduring that
|
duplicating another spell weakens you. After enduring that stress,
|
||||||
stress, each time you cast a spell until you finish a long rest, you take 1d10
|
each time you cast a spell until you finish a long rest, you take
|
||||||
necrotic damage per level of that spell. This damage can't be reduced or
|
1d10 necrotic damage per level of that spell. This damage can't be
|
||||||
prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or
|
reduced or prevented in any way. In addition, your Strength drops
|
||||||
lower already, for 2d4 days. For each of those days that you spend resting and
|
to 3, if it isn't 3 or lower already, for 2d4 days. For each of
|
||||||
doing nothing more than light activity, your remaining recovery time decreases
|
those days that you spend resting and doing nothing more than
|
||||||
by 2 days. Finally, there is a 33 percent chance that you are unable to cast
|
light activity, your remaining recovery time decreases by 2
|
||||||
wish ever again if you suffer this stress.
|
days. Finally, there is a 33 percent chance that you are unable to
|
||||||
|
cast wish ever again if you suffer this stress.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wish"
|
name = "Wish"
|
||||||
level = 9
|
level = 9
|
||||||
@@ -621,18 +696,20 @@ class Wish(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WitchBolt(Spell):
|
class WitchBolt(Spell):
|
||||||
"""A beam of crackling, blue energy lances out toward a creature within range,
|
"""A beam of crackling, blue energy lances out toward a creature within range,
|
||||||
forming a sustained arc of lightning between you and the target.
|
forming a sustained arc of lightning between you and the target.
|
||||||
Make a ranged
|
|
||||||
spell attack against that creature. On a hit, the target takes 1d12 lightning
|
|
||||||
damage, and on each of your turns for the duration, you can use your action to
|
|
||||||
deal 1d12 lightning damage to the target automatically. The spell ends if you
|
|
||||||
use your action to do anything else. The spell also ends if the target is ever
|
|
||||||
outside the spell's range or if it has total cover from you.
|
|
||||||
|
|
||||||
At Higher Levels:
|
Make a ranged spell attack against that creature. On a hit, the
|
||||||
When you cast this spell using a spell slot of 2nd level or higher, the initial
|
target takes 1d12 lightning damage, and on each of your turns for
|
||||||
damage increases by 1d12 for each slot level above 1st.
|
the duration, you can use your action to deal 1d12 lightning
|
||||||
|
damage to the target automatically. The spell ends if you use your
|
||||||
|
action to do anything else. The spell also ends if the target is
|
||||||
|
ever outside the spell's range or if it has total cover from you.
|
||||||
|
|
||||||
|
**At Higher Levels:** When you cast this spell using a spell slot
|
||||||
|
of 2nd level or higher, the initial damage increases by 1d12 for
|
||||||
|
each slot level above 1st.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Witch Bolt"
|
name = "Witch Bolt"
|
||||||
level = 1
|
level = 1
|
||||||
@@ -647,11 +724,13 @@ class WitchBolt(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WordOfRadiance(Spell):
|
class WordOfRadiance(Spell):
|
||||||
"""You utter a divine word, and burning radiance erupts from you. Each creature of
|
"""You utter a divine word, and burning radiance erupts from you. Each
|
||||||
your choice that you can see within range must succeed on a Constitution saving
|
creature of your choice that you can see within range must succeed
|
||||||
throw or take 1d6 radiant damage.
|
on a Constitution saving throw or take 1d6 radiant damage.
|
||||||
The spell's damage increases by 1d6 when you
|
|
||||||
reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).
|
The spell's damage increases by 1d6 when you reach 5th level
|
||||||
|
(2d6), 11th level (3d6), and 17th level (4d6).
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Word Of Radiance"
|
name = "Word Of Radiance"
|
||||||
level = 0
|
level = 0
|
||||||
@@ -666,17 +745,18 @@ class WordOfRadiance(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WordOfRecall(Spell):
|
class WordOfRecall(Spell):
|
||||||
"""You and up to five willing creatures within 5 feet of you instantly teleport to
|
"""You and up to five willing creatures within 5 feet of you instantly
|
||||||
a previously designated sanctuary.
|
teleport to a previously designated sanctuary. You and any
|
||||||
You and any creatures that teleport with you
|
creatures that teleport with you appear in the nearest unoccupied
|
||||||
appear in the nearest unoccupied space to the spot you designated when you
|
space to the spot you designated when you prepared your sanctuary
|
||||||
prepared your sanctuary (see below). If you cast this spell without first
|
(see below). If you cast this spell without first preparing a
|
||||||
preparing a sanctuary, the spell has no effect.
|
sanctuary, the spell has no effect.
|
||||||
|
|
||||||
You must designate a sanctuary
|
You must designate a sanctuary by casting this spell within a
|
||||||
by casting this spell within a location, such as a temple, dedicated to or
|
location, such as a temple, dedicated to or strongly linked to
|
||||||
strongly linked to your deity. If you attempt to cast the spell in this manner
|
your deity. If you attempt to cast the spell in this manner in an
|
||||||
in an area that isn't dedicated to your deity, the spell has no effect.
|
area that isn’t dedicated to your deity, the spell has no effect.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Word Of Recall"
|
name = "Word Of Recall"
|
||||||
level = 6
|
level = 6
|
||||||
@@ -692,24 +772,24 @@ class WordOfRecall(Spell):
|
|||||||
|
|
||||||
class WrathOfNature(Spell):
|
class WrathOfNature(Spell):
|
||||||
"""You call out to the spirits of nature to rouse them against your enemies. Choose
|
"""You call out to the spirits of nature to rouse them against your enemies. Choose
|
||||||
a point you can see within range. The spirits cause trees, rocks, and grasses
|
a point you can see within range. The spirits cause trees, rocks, and grasses
|
||||||
in a 60-foot cube centered on that point to become animated until the spell
|
in a 60-foot cube centered on that point to become animated until the spell
|
||||||
ends.
|
ends.
|
||||||
Grasses and Undergrowth. Any area of ground in the cube that is covered by
|
Grasses and Undergrowth. Any area of ground in the cube that is covered by
|
||||||
grass or undergrowth is difficult terrain for your enemies.
|
grass or undergrowth is difficult terrain for your enemies.
|
||||||
Trees. At the start
|
Trees. At the start
|
||||||
of each of your turns, each of your enemies within 10 feet of any tree in the
|
of each of your turns, each of your enemies within 10 feet of any tree in the
|
||||||
cube must succeed on a Dexterity saving throw or take 4d6 slashing damage from
|
cube must succeed on a Dexterity saving throw or take 4d6 slashing damage from
|
||||||
whipping branches.
|
whipping branches.
|
||||||
Roots and Vines. At the end of each of your turns, one
|
Roots and Vines. At the end of each of your turns, one
|
||||||
creature of your choice that is on the ground in the cube must succeed on a
|
creature of your choice that is on the ground in the cube must succeed on a
|
||||||
Strength saving throw or become restrained until the spell ends. A restrained
|
Strength saving throw or become restrained until the spell ends. A restrained
|
||||||
creature can use an action to make a Strength (Athletics) check against your
|
creature can use an action to make a Strength (Athletics) check against your
|
||||||
spell save DC, ending the effect on itself on a success.
|
spell save DC, ending the effect on itself on a success.
|
||||||
Rocks. As a bonus
|
Rocks. As a bonus
|
||||||
action on your turn, you can cause a loose rock in the cube to launch at a
|
action on your turn, you can cause a loose rock in the cube to launch at a
|
||||||
creature you can see in the cube. Make a ranged spell attack against the target.
|
creature you can see in the cube. Make a ranged spell attack against the target.
|
||||||
On a hit, the target takes 3d8 nonmagical bludgeoning damage, and it must
|
On a hit, the target takes 3d8 nonmagical bludgeoning damage, and it must
|
||||||
succeed on a Strength saving throw or fall prone.
|
succeed on a Strength saving throw or fall prone.
|
||||||
"""
|
"""
|
||||||
name = "Wrath Of Nature"
|
name = "Wrath Of Nature"
|
||||||
@@ -725,12 +805,13 @@ class WrathOfNature(Spell):
|
|||||||
|
|
||||||
|
|
||||||
class WrathfulSmite(Spell):
|
class WrathfulSmite(Spell):
|
||||||
"""The next time you hit with a melee weapon attack during this spell's duration,
|
"""The next time you hit with a melee weapon attack during this
|
||||||
your attack deals an extra 1d6 psychic damage.
|
spell's duration, your attack deals an extra 1d6 psychic damage.
|
||||||
Additionally, if the target is a
|
Additionally, if the target is a creature, it must make a Wisdom
|
||||||
creature, it must make a Wisdom saving throw or be frightened of you until the
|
saving throw or be frightened of you until the spell ends. As an
|
||||||
spell ends. As an action, the creature can make a Wisdom check against your
|
action, the creature can make a Wisdom check against your spell
|
||||||
spell save DC to steel its resolve and end this spell.
|
save DC to steel its resolve and end this spell.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
name = "Wrathful Smite"
|
name = "Wrathful Smite"
|
||||||
level = 1
|
level = 1
|
||||||
@@ -742,5 +823,3 @@ class WrathfulSmite(Spell):
|
|||||||
ritual = False
|
ritual = False
|
||||||
magic_school = "Evocation"
|
magic_school = "Evocation"
|
||||||
classes = ('Paladin',)
|
classes = ('Paladin',)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user