diff --git a/api_v2/migrations/0094_auto_20240618_1604.py b/api_v2/migrations/0094_auto_20240618_1604.py new file mode 100644 index 00000000..de32abd5 --- /dev/null +++ b/api_v2/migrations/0094_auto_20240618_1604.py @@ -0,0 +1,50 @@ +# Generated by Django 3.2.20 on 2024-06-18 16:04 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0093_document_stats_expected'), + ] + + operations = [ + migrations.AddField( + model_name='creature', + name='burrow', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AddField( + model_name='creature', + name='climb', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AddField( + model_name='creature', + name='fly', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AddField( + model_name='creature', + name='hover', + field=models.BooleanField(default=False, help_text='Whether or not the walk movement is hovering.'), + ), + migrations.AddField( + model_name='creature', + name='swim', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AddField( + model_name='creature', + name='unit', + field=models.CharField(choices=[('feet', 'feet')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AddField( + model_name='creature', + name='walk', + field=models.FloatField(default=0, help_text='Used to measure distance.', validators=[django.core.validators.MinValueValidator(0)]), + preserve_default=False, + ), + ] diff --git a/api_v2/migrations/0095_document_distance_unit.py b/api_v2/migrations/0095_document_distance_unit.py new file mode 100644 index 00000000..6024a784 --- /dev/null +++ b/api_v2/migrations/0095_document_distance_unit.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-18 16:12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0094_auto_20240618_1604'), + ] + + operations = [ + migrations.AddField( + model_name='document', + name='distance_unit', + field=models.CharField(choices=[('feet', 'feet')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + ] diff --git a/api_v2/migrations/0096_alter_spell_shape_magnitude.py b/api_v2/migrations/0096_alter_spell_shape_magnitude.py new file mode 100644 index 00000000..005d212a --- /dev/null +++ b/api_v2/migrations/0096_alter_spell_shape_magnitude.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.20 on 2024-06-19 14:17 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0095_document_distance_unit'), + ] + + operations = [ + migrations.AlterField( + model_name='spell', + name='shape_magnitude', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + ] diff --git a/api_v2/migrations/0097_rename_shape_magnitude_spell_shape_size.py b/api_v2/migrations/0097_rename_shape_magnitude_spell_shape_size.py new file mode 100644 index 00000000..2c12d770 --- /dev/null +++ b/api_v2/migrations/0097_rename_shape_magnitude_spell_shape_size.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-19 14:17 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0096_alter_spell_shape_magnitude'), + ] + + operations = [ + migrations.RenameField( + model_name='spell', + old_name='shape_magnitude', + new_name='shape_size', + ), + ] diff --git a/api_v2/migrations/0098_spell_shape_size_unit.py b/api_v2/migrations/0098_spell_shape_size_unit.py new file mode 100644 index 00000000..caafd0a9 --- /dev/null +++ b/api_v2/migrations/0098_spell_shape_size_unit.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-19 14:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0097_rename_shape_magnitude_spell_shape_size'), + ] + + operations = [ + migrations.AddField( + model_name='spell', + name='shape_size_unit', + field=models.CharField(choices=[('feet', 'feet')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + ] diff --git a/api_v2/migrations/0099_rename_range_spell_range_text.py b/api_v2/migrations/0099_rename_range_spell_range_text.py new file mode 100644 index 00000000..ced4c065 --- /dev/null +++ b/api_v2/migrations/0099_rename_range_spell_range_text.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-19 14:22 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0098_spell_shape_size_unit'), + ] + + operations = [ + migrations.RenameField( + model_name='spell', + old_name='range', + new_name='range_text', + ), + ] diff --git a/api_v2/migrations/0100_auto_20240619_1422.py b/api_v2/migrations/0100_auto_20240619_1422.py new file mode 100644 index 00000000..db54d6c8 --- /dev/null +++ b/api_v2/migrations/0100_auto_20240619_1422.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.20 on 2024-06-19 14:22 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0099_rename_range_spell_range_text'), + ] + + operations = [ + migrations.AddField( + model_name='spell', + name='range', + field=models.FloatField(help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AddField( + model_name='spell', + name='range_unit', + field=models.CharField(choices=[('feet', 'feet')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + ] diff --git a/api_v2/migrations/0101_auto_20240627_1246.py b/api_v2/migrations/0101_auto_20240627_1246.py new file mode 100644 index 00000000..14ae9bf7 --- /dev/null +++ b/api_v2/migrations/0101_auto_20240627_1246.py @@ -0,0 +1,179 @@ +# Generated by Django 3.2.20 on 2024-06-27 12:46 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0100_auto_20240619_1422'), + ] + + operations = [ + migrations.AlterField( + model_name='creature', + name='burrow', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creature', + name='climb', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creature', + name='fly', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_acrobatics', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to acrobatics skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_animal_handling', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to animal handling skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_arcana', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to arcana skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_athletics', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to athletics skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_deception', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to deception skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_history', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to history skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_insight', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to insight skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_intimidation', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to intimidation skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_investigation', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to investigation skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_medicine', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to medicine skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_nature', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to nature skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_perception', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to perception skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_performance', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to performance skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_persuasion', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to persuasion skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_religion', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to religion skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_sleight_of_hand', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to sleight of hand skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_stealth', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to stealth skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='skill_bonus_survival', + field=models.SmallIntegerField(blank=True, help_text='Signed integer added to survival skill checks.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]), + ), + migrations.AlterField( + model_name='creature', + name='swim', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creature', + name='unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AlterField( + model_name='creature', + name='walk', + field=models.FloatField(blank=True, help_text='Used to measure distance.', validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='document', + name='distance_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AlterField( + model_name='spell', + name='damage_types', + field=models.JSONField(blank=True, default=list, help_text='The types of damage done by the spell in a list.'), + ), + migrations.AlterField( + model_name='spell', + name='duration', + field=models.TextField(choices=[('instantaneous', 'instantaneous'), ('instantaneous or special', 'instantaneous or special'), ('1 turn', '1 turn'), ('1 round', '1 round'), ('concentration + 1 round', 'concentration + 1 round'), ('2 rounds', '2 rounds'), ('3 rounds', '3 rounds'), ('4 rounds', '4 rounds'), ('1d4+2 rounds', '1d4+2 rounds'), ('5 rounds', '5 rounds'), ('6 rounds', '6 rounds'), ('10 rounds', '10 rounds'), ('up to 1 minute', 'up to 1 minute'), ('1 minute', '1 minute'), ('1 minute, or until expended', '1 minute, or until expended'), ('1 minute, until expended', '1 minute, until expended'), ('1 minute', '1 minute'), ('5 minutes', '5 minutes'), ('10 minutes', '10 minutes'), ('1 minute or 1 hour', '1 minute or 1 hour'), ('up to 1 hour', 'up to 1 hour'), ('1 hour', '1 hour'), ('1 hour or until triggered', '1 hour or until triggered'), ('2 hours', '2 hours'), ('3 hours', '3 hours'), ('1d10 hours', '1d10 hours'), ('6 hours', '6 hours'), ('2-12 hours', '2-12 hours'), ('up to 8 hours', 'up to 8 hours'), ('8 hours', '8 hours'), ('1 hour/caster level', '1 hour/caster level'), ('10 hours', '10 hours'), ('12 hours', '12 hours'), ('24 hours or until the target attempts a third death saving throw', '24 hours or until the target attempts a third death saving throw'), ('24 hours', '24 hours'), ('1 day', '1 day'), ('3 days', '3 days'), ('5 days', '5 days'), ('7 days', '7 days'), ('10 days', '10 days'), ('13 days', '13 days'), ('30 days', '30 days'), ('1 year', '1 year'), ('special', 'special'), ('until dispelled or destroyed', 'until dispelled or destroyed'), ('until destroyed', 'until destroyed'), ('until dispelled', 'until dispelled'), ('until cured or dispelled', 'until cured or dispelled'), ('until dispelled or triggered', 'until dispelled or triggered'), ('permanent until discharged', 'permanent until discharged'), ('permanent; one generation', 'permanent; one generation'), ('permanent', 'permanent')], help_text='Description of the duration of the effect such as "instantaneous" or "1 minute"'), + ), + migrations.AlterField( + model_name='spell', + name='higher_level', + field=models.TextField(blank=True, help_text='Description of casting the spell at a different level.'), + ), + migrations.AlterField( + model_name='spell', + name='range', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='spell', + name='range_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AlterField( + model_name='spell', + name='shape_size', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='spell', + name='shape_size_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AlterField( + model_name='spell', + name='shape_type', + field=models.TextField(blank=True, choices=[('cone', 'Cone'), ('cube', 'Cube'), ('cylinder', 'Cylinder'), ('line', 'Line'), ('sphere', 'sphere')], help_text='The shape of the area of effect.', null=True), + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 641c4a0d..154faff4 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -52,4 +52,6 @@ from .size import Size -from .environment import Environment \ No newline at end of file +from .environment import Environment + +from .speed import HasSpeed \ No newline at end of file diff --git a/api_v2/models/abilities.py b/api_v2/models/abilities.py index a6578d7e..e391649a 100644 --- a/api_v2/models/abilities.py +++ b/api_v2/models/abilities.py @@ -34,6 +34,7 @@ def ability_modifier(score): # Define a field representing a saving throw def saving_throw_field(help_text): return models.SmallIntegerField( + blank=True, null=True, validators=[ MinValueValidator(SAVING_THROW_MINIMUM), @@ -43,6 +44,7 @@ def saving_throw_field(help_text): # Define a field representing a skill bonus def skill_bonus_field(help_text): return models.SmallIntegerField( + blank=True, null=True, validators=[ MinValueValidator(SKILL_BONUS_MINIMUM), diff --git a/api_v2/models/abstracts.py b/api_v2/models/abstracts.py index 2134f06d..b4ff36c5 100644 --- a/api_v2/models/abstracts.py +++ b/api_v2/models/abstracts.py @@ -1,9 +1,10 @@ """Abstract models to be used in Game Content items.""" from django.db import models -from .enums import MODIFICATION_TYPES from django.core.validators import MaxValueValidator, MinValueValidator -from .enums import DIE_TYPES + +from .enums import MODIFICATION_TYPES, DIE_TYPES +from .enums import DISTANCE_UNIT_TYPES # FIELDS USED ACROSS MULTIPLE MODELS @@ -36,6 +37,24 @@ def key_field(): help_text="Unique key for the Document." ) +def distance_field(null=True): + return models.FloatField( + null=null, + blank=True, + validators=[MinValueValidator(0)], + help_text="Used to measure distance." + ) + +def distance_unit_field(): + return models.CharField( + null=True, + blank=True, + max_length=20, + choices=DISTANCE_UNIT_TYPES, + help_text='What distance unit the relevant field uses.' + ) + + # CLASSES INHERITED BY MULTIPLE MODELS class HasName(models.Model): @@ -102,3 +121,4 @@ class Benefit(HasName, HasDescription): class Meta: abstract = True ordering = ['pk'] + diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 7344ab0f..4b813129 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -8,6 +8,7 @@ from .abstracts import damage_bonus_field, key_field from .object import Object from .document import FromDocument +from .speed import HasSpeed from .enums import CREATURE_ATTACK_TYPES, CREATURE_USES_TYPES @@ -16,7 +17,7 @@ class CreatureType(HasName, HasDescription, FromDocument): """The Type of creature, such as Aberration.""" -class Creature(Object, Abilities, FromDocument): +class Creature(Object, Abilities, FromDocument, HasSpeed): """ This is the model for a Creature, per the 5e ruleset. diff --git a/api_v2/models/document.py b/api_v2/models/document.py index 6426be93..dcf5fb1d 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -4,7 +4,7 @@ from .abstracts import HasName, HasDescription -from .abstracts import key_field +from .abstracts import key_field, distance_unit_field from api_v2 import models as v2_models @@ -44,6 +44,8 @@ class Document(HasName, HasDescription): help_text="JSON representation of expected object counts." ) + distance_unit = distance_unit_field() + @property def stats(self): stats = [] diff --git a/api_v2/models/enums.py b/api_v2/models/enums.py index 1ea01b11..fa5a084d 100644 --- a/api_v2/models/enums.py +++ b/api_v2/models/enums.py @@ -9,6 +9,11 @@ ("D20", "d20"), ] +DISTANCE_UNIT_TYPES = [ + ("feet","feet"), + ("miles","miles") +] + ABILITY_SCORE_MAXIMUM = 30 SAVING_THROW_MINIMUM = -5 SAVING_THROW_MAXIMUM = +20 @@ -105,7 +110,7 @@ ("2 rounds","2 rounds"), ("3 rounds","3 rounds"), ("4 rounds","4 rounds"), - ("1d4+2 round","1d4+2 round"), + ("1d4+2 rounds","1d4+2 rounds"), ("5 rounds","5 rounds"), ("6 rounds","6 rounds"), ("10 rounds","10 rounds"), diff --git a/api_v2/models/speed.py b/api_v2/models/speed.py new file mode 100644 index 00000000..c3afbec9 --- /dev/null +++ b/api_v2/models/speed.py @@ -0,0 +1,77 @@ +'''The abstract model related to the Speed concept in 5e.''' + +from django.db import models +from .abstracts import distance_field, distance_unit_field + +class HasSpeed(models.Model): + '''This object represents a creature's speed.''' + + walk = distance_field(null=False) + unit = distance_unit_field() + hover = models.BooleanField( + default=False, + null=False, + help_text="Whether or not the walk movement is hovering." + ) + fly = distance_field(null=True) + burrow = distance_field(null=True) + climb = distance_field(null=True) + swim = distance_field(null=True) + + def get_fly(self): + if self.fly is None: + return 0.0 + return self.fly + + def get_burrow(self): + if self.burrow is None: + return 0.0 + return self.burrow + + def get_climb(self): + if self.climb is None: + return self.walk / 2 # Climb speed is half of walk speed. + return self.climb + + def get_crawl(self): + return self.walk / 2 + + def get_swim(self): + if self.swim is None: + return self.walk / 2 # Swim speed is half of walk speed. + return self.swim + + def get_unit(self): + if self.unit is None: + return self.document.distance_unit + return self.unit + + def get_speed(self): + speed={ + "walk":self.walk, + "unit":self.get_unit(), + "fly":self.fly, + "burrow":self.burrow, + "climb":self.climb, + "swim":self.swim, + } + if self.hover: + speed['hover']=True # Hover field not present unless true. + + return speed + + def get_all_speed(self): + return { + "unit": self.get_unit(), + "walk": self.walk, + "crawl": self.get_crawl(), + "hover": self.hover, + "fly": self.get_fly(), + "burrow": self.get_burrow(), + "climb": self.get_climb(), + "swim": self.get_swim() + } + + + class Meta: + abstract = True diff --git a/api_v2/models/spell.py b/api_v2/models/spell.py index bb2568ed..c0c735ab 100644 --- a/api_v2/models/spell.py +++ b/api_v2/models/spell.py @@ -7,6 +7,7 @@ from .abstracts import HasName, HasDescription +from .abstracts import distance_field, distance_unit_field from .document import FromDocument @@ -33,6 +34,7 @@ class Spell(HasName, HasDescription, FromDocument): help_text="Spell school, such as 'evocation'") higher_level = models.TextField( + blank=True, help_text = "Description of casting the spell at a different level.") # Casting target requirements of the spell instance SHOULD BE A LIST @@ -40,10 +42,13 @@ class Spell(HasName, HasDescription, FromDocument): choices = SPELL_TARGET_TYPE_CHOICES, help_text='Spell target type key.') - range = models.TextField( + range_text = models.TextField( # SWAP TO DISTANCE FIELD choices = SPELL_TARGET_RANGE_CHOICES, help_text='Spell target range.') + range = distance_field() + range_unit = distance_unit_field() + ritual = models.BooleanField( help_text='Whether or not the spell can be cast as a ritual.', default=False) @@ -100,6 +105,7 @@ class Spell(HasName, HasDescription, FromDocument): damage_types = models.JSONField( default=list, + blank=True, help_text="The types of damage done by the spell in a list.") duration = models.TextField( @@ -108,13 +114,12 @@ class Spell(HasName, HasDescription, FromDocument): shape_type = models.TextField( null=True, + blank=True, choices = SPELL_EFFECT_SHAPE_CHOICES, help_text = 'The shape of the area of effect.') - shape_magnitude = models.IntegerField( - null=True, - validators=[MinValueValidator(0)], - help_text = 'The magnitude of the shape (without units).') + shape_size = distance_field() + shape_size_unit = distance_unit_field() concentration = models.BooleanField( help_text='Whether the effect requires concentration to be maintained.', @@ -123,7 +128,16 @@ class Spell(HasName, HasDescription, FromDocument): def casting_options(self): """Options for casting the spell.""" return self.spellcastingoption_set - + + def get_shape_size_unit(self): + if self.shape_size_unit is None: + return self.document.distance_unit + return self.shape_size_unit + + def get_range_unit(self): + if self.range_unit is None: + return self.document.distance_unit + return self.range_unit class SpellCastingOption(models.Model): """An object representing an alternative way to cast a spell.""" diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index a64bca8d..03474187 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -107,6 +107,8 @@ class CreatureSerializer(GameContentSerializer): all_skill_bonuses = serializers.SerializerMethodField() actions = serializers.SerializerMethodField() size = SizeSerializer(read_only=True, context={'request': {}}) + speed = serializers.SerializerMethodField() + all_speed = serializers.SerializerMethodField() class Meta: model = models.Creature @@ -116,6 +118,8 @@ class Meta: 'key', 'name', 'size', + 'speed', + 'all_speed', 'category', 'type', 'alignment', @@ -176,6 +180,14 @@ def get_all_skill_bonuses(self, creature): entries = creature.get_skill_bonuses().items() return { key: (defaults[key] if value is None else value) for key, value in entries } + def get_speed(self, creature): + entries = creature.get_speed().items() + return { key: value for key, value in entries if value is not None } + + + def get_all_speed(self, creature): + return creature.get_all_speed() + def get_actions(self, creature): result = [] for action in creature.creatureaction_set.all(): diff --git a/api_v2/serializers/spell.py b/api_v2/serializers/spell.py index 8b55dede..3d1fe267 100644 --- a/api_v2/serializers/spell.py +++ b/api_v2/serializers/spell.py @@ -24,6 +24,16 @@ class SpellSerializer(GameContentSerializer): casting_options = SpellCastingOptionSerializer(many=True) school = SpellSchoolSerializer() + range_unit = serializers.SerializerMethodField() + shape_size_unit = serializers.SerializerMethodField() + + def get_range_unit(self, spell): + return spell.get_range_unit() + + def get_shape_size_unit(self, spell): + return spell.get_shape_size_unit() + + class Meta: model = models.Spell fields = '__all__' diff --git a/data/v2/en-publishing/a5e-ag/Document.json b/data/v2/en-publishing/a5e-ag/Document.json index 46b4af5f..8848ea00 100644 --- a/data/v2/en-publishing/a5e-ag/Document.json +++ b/data/v2/en-publishing/a5e-ag/Document.json @@ -10,6 +10,8 @@ "author": "EN Publishing", "published_at": "2021-11-01T00:00:00", "permalink": "https://a5esrd.com/a5esrd", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "cc-by-40", "ogl-10a" diff --git a/data/v2/en-publishing/a5e-ag/Spell.json b/data/v2/en-publishing/a5e-ag/Spell.json index 99ec98eb..1661a1c3 100644 --- a/data/v2/en-publishing/a5e-ag/Spell.json +++ b/data/v2/en-publishing/a5e-ag/Spell.json @@ -10,7 +10,9 @@ "school": "transmutation", "higher_level": "You may maintain concentration on this spell for an additional 2 rounds for each slot level above 4th.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "6 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -41,7 +44,9 @@ "school": "evocation", "higher_level": "Increase this spell's initial and ongoing damage by 1d4 per slot level above 2nd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -59,7 +64,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -74,7 +80,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -90,7 +98,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -105,7 +114,9 @@ "school": "abjuration", "higher_level": "The granted hit points increase by an additional 5 for each slot level above 2nd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -121,7 +132,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -136,7 +148,9 @@ "school": "conjuration", "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -152,7 +166,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -167,7 +182,9 @@ "school": "abjuration", "higher_level": "You may create an additional alarm for each slot level above 1st. The spell's range increases to 600 feet, but you must be familiar with the locations you ward, and all alarms must be set within the same physical structure. Setting off one alarm does not activate the other alarms.\n\nYou may choose one of the following effects in place of creating an additional alarm. The effects apply to all alarms created during the spell's casting.\n\nIncreased Duration. The spell's duration increases to 24 hours.\n\nImproved Audible Alarm. The audible alarm produces any sound you choose and can be heard up to 300 feet away.\n\nImproved Mental Alarm. The mental alarm alerts you regardless of your location, even if you and the alarm are on different planes of existence.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -183,7 +200,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -198,7 +216,9 @@ "school": "transmutation", "higher_level": "When using a spell slot of 5th-level, add the following to the list of forms you can adopt.\n\n* **Greater Natural Weapons:** The damage dealt by your natural weapon increases to 2d6, and you gain a +2 bonus to attack and damage rolls with your natural weapons.\n* **Mask of the Grave:** You adopt the appearance of a skeleton or zombie (your choice). Your type changes to undead, and mindless undead creatures ignore your presence, treating you as one of their own. You don't need to breathe and you become immune to poison.\n* **Wings:** A pair of wings sprouts from your back. The wings can appear bird-like, leathery like a bat or dragon's wings, or like the wings of an insect. You gain a fly speed equal to your base Speed.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -214,7 +234,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -229,7 +250,9 @@ "school": "transmutation", "higher_level": "When you reach 5th level, you can choose silver or mithral as the material. When you reach 11th level, if you have the Extra Attack feature you make two melee weapon attacks as part of the casting of this spell instead of one. In addition, you can choose adamantine as the material.\n\nWhen you reach 17th level, your attacks with this spell deal an extra 1d6 damage.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -245,7 +268,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -260,7 +284,9 @@ "school": "evocation", "higher_level": "The damage and duration increase to 45 radiant damage and 1 year when using an 8th-level spell slot, or 50 damage and until dispelled when using a 9th-level spell slot.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -278,7 +304,8 @@ ], "duration": "7 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -293,7 +320,9 @@ "school": "enchantment", "higher_level": "Choose one additional target for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -309,7 +338,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -324,7 +354,9 @@ "school": "enchantment", "higher_level": "The duration of the spell increases by 48 hours for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -340,7 +372,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -355,7 +388,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -371,7 +406,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -386,7 +422,9 @@ "school": "necromancy", "higher_level": "You create or reassert control over 2 additional undead for each slot level above 3rd. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -402,7 +440,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -417,7 +456,9 @@ "school": "transmutation", "higher_level": "You can animate 2 additional Small or Tiny objects for each slot level above 5th.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -433,7 +474,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -448,7 +490,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -464,7 +508,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -479,7 +524,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -495,7 +542,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -510,7 +558,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -526,7 +576,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -541,7 +592,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -557,7 +610,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -572,7 +626,9 @@ "school": "evocation", "higher_level": "The damage from Smash increases by 2d8 and the damage from Snatch increases by 2d6 for each slot level above 5th.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -588,7 +644,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -603,7 +660,9 @@ "school": "abjuration", "higher_level": "Increase the DC to force open the object or pick any locks on the object by an additional 2 for each slot level above 2nd. Only a knock spell cast at a slot level equal to or greater than your arcane lock suppresses it.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -619,7 +678,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -634,7 +694,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -650,7 +712,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -665,7 +728,9 @@ "school": "evocation", "higher_level": "The spell deals an extra 1d6 damage for each slot level above 1st. When using a 4th-level spell slot, you may choose to deal psychic, radiant, or necrotic damage. When using a 6th-level spell slot, you may choose to deal force damage.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "reaction", "verbal": true, @@ -688,7 +753,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -703,7 +769,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -719,7 +787,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -734,7 +803,9 @@ "school": "illusion", "higher_level": "When cast using a 6th-level spell slot or higher the effects last until dispelled with a bonus action.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -750,7 +821,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -765,7 +837,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -781,7 +855,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -796,7 +871,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -812,7 +889,8 @@ "damage_types": [], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -827,7 +905,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -843,7 +923,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -858,7 +939,9 @@ "school": "transmutation", "higher_level": "Target an additional creature for each slot level above 5th. Each target requires its own material component.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -874,7 +957,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -889,7 +973,9 @@ "school": "enchantment", "higher_level": "You target an additional creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -905,7 +991,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -920,7 +1007,9 @@ "school": "abjuration", "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -936,7 +1025,8 @@ "damage_types": [], "duration": "1d4+2 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -951,7 +1041,9 @@ "school": "transmutation", "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -967,7 +1059,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -982,7 +1075,9 @@ "school": "abjuration", "higher_level": "You can maintain concentration on this spell for an additional round for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -996,9 +1091,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": " special", + "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1013,7 +1109,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1029,7 +1127,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1044,7 +1143,9 @@ "school": "necromancy", "higher_level": "When using a 4th-level spell slot the duration increases to 10 minutes. When using a 5th-level spell slot the duration increases to 8 hours and it no longer requires your concentration. When using a 7th-level spell slot the duration is 24 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1060,7 +1161,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1075,7 +1177,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1093,7 +1197,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1108,7 +1213,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 6th.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1124,7 +1231,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1139,7 +1247,9 @@ "school": "enchantment", "higher_level": "You target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1155,7 +1265,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1170,7 +1281,9 @@ "school": "necromancy", "higher_level": "The damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1186,7 +1299,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1201,7 +1315,9 @@ "school": "necromancy", "higher_level": "You target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1217,7 +1333,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1232,7 +1349,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1248,7 +1367,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1263,7 +1383,9 @@ "school": "conjuration", "higher_level": "The combined Challenge Rating of summoned beings increases by 2 and the duration increases by 13 days for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1279,7 +1401,8 @@ "damage_types": [], "duration": "13 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1294,7 +1417,9 @@ "school": "illusion", "higher_level": "You may target an additional willing creature you can see within range for each slot level above 2nd. Whenever an affected creature other than you is hit by an attack, the spell ends for that creature. When using a higher level spell slot, increase the spell's range to 30 feet.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1310,7 +1435,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1325,7 +1451,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1343,7 +1471,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1358,7 +1487,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1374,7 +1505,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1389,7 +1521,9 @@ "school": "abjuration", "higher_level": "You may use your reaction to halve the damage of an attack against you up to a number of times equal to the level of the spell slot used, gaining a retribution charge each time that lasts until 1 round after the spell ends.\n\nYou must still make Constitution saving throws to maintain your concentration on this spell, but you do so with advantage, or if you already have advantage, you automatically succeed.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1405,7 +1539,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1420,7 +1555,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1436,7 +1573,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1451,7 +1589,9 @@ "school": "enchantment", "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1467,7 +1607,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1482,7 +1623,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -1498,7 +1641,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1513,7 +1657,9 @@ "school": "evocation", "higher_level": "An extra arc leaps from the primary target to an additional target for each slot level above 6th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1529,7 +1675,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1544,7 +1691,9 @@ "school": "enchantment", "higher_level": "For each slot level above 4th, you affect one additional target that is within 30 feet of other targets.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1560,7 +1709,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1575,7 +1725,9 @@ "school": "enchantment", "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1591,7 +1743,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1606,7 +1759,9 @@ "school": "necromancy", "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1624,7 +1779,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1639,7 +1795,9 @@ "school": "necromancy", "higher_level": "The damage increases by 2d6 for each slot level above 6th.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1655,7 +1813,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1670,7 +1829,9 @@ "school": "transmutation", "higher_level": "The duration of this spell increases when you reach 5th level (10 minutes), 11th level (30 minutes), and 17th level (1 hour).", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -1686,7 +1847,8 @@ "damage_types": [], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1701,7 +1863,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -1717,7 +1881,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1732,7 +1897,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1748,7 +1915,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1763,7 +1931,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d8 for each slot level above 5th.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1781,7 +1951,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1796,7 +1967,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -1812,7 +1985,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1827,7 +2001,9 @@ "school": "illusion", "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1843,7 +2019,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1858,7 +2035,9 @@ "school": "enchantment", "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1874,7 +2053,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1889,7 +2069,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1905,7 +2087,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1920,7 +2103,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1936,7 +2121,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1951,7 +2137,9 @@ "school": "divination", "higher_level": "The bonus increases by +5 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1967,7 +2155,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1982,7 +2171,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 5th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2000,7 +2191,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2015,7 +2207,9 @@ "school": "enchantment", "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2031,7 +2225,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2046,7 +2241,9 @@ "school": "conjuration", "higher_level": "The challenge rating of beasts you can summon increases by one step for each slot level above 3rd. For example, when using a 4th-level spell slot you can summon one beast of CR 3 or less, two beasts of CR 2 or less, or three beasts of CR 1 or less.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2062,7 +2259,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2077,7 +2275,9 @@ "school": "conjuration", "higher_level": "For each slot level above 7th the celestial creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2093,7 +2293,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2108,7 +2309,9 @@ "school": "conjuration", "higher_level": "For each slot level above 5th the elemental creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2124,7 +2327,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2139,7 +2343,9 @@ "school": "conjuration", "higher_level": "For each slot level above 6th the fey creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2155,7 +2361,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2170,7 +2377,9 @@ "school": "conjuration", "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2186,7 +2395,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2201,7 +2411,9 @@ "school": "conjuration", "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2217,7 +2429,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2232,7 +2445,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -2248,7 +2463,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2263,7 +2479,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2279,7 +2497,8 @@ "damage_types": [], "duration": "7 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2294,7 +2513,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2310,7 +2531,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2325,7 +2547,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2341,7 +2565,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2356,7 +2581,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2374,7 +2601,8 @@ ], "duration": "10 minutes", "shape_type": "cone", - "shape_magnitude": 50, + "shape_size": 50.0, + "shape_size_unit": null, "concentration": true } }, @@ -2389,7 +2617,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2405,7 +2635,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2420,7 +2651,9 @@ "school": "evocation", "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2438,7 +2671,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2453,7 +2687,9 @@ "school": "abjuration", "higher_level": "The interrupted spell has no effect if its level is less than the level of the spell slot used to cast this spell, or if both spells use the same level spell slot an opposed spellcasting ability check is made.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "reaction", "verbal": false, @@ -2469,7 +2705,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2484,7 +2721,9 @@ "school": "conjuration", "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2500,7 +2739,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2515,7 +2755,9 @@ "school": "transmutation", "higher_level": "For each slot level above 1st, you either create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet.", "target_type": "area", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2531,7 +2773,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2546,7 +2789,9 @@ "school": "necromancy", "higher_level": "You create or reassert control over one additional ghoul for each slot level above 6th. Alternatively, when using an 8th-level spell slot you create or reassert control over 2 ghasts or wights, or when using a 9th-level spell slot you create or reassert control over 3 ghasts or wights, or 2 mummies. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", "target_type": "area", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2562,7 +2807,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2577,7 +2823,9 @@ "school": "illusion", "higher_level": "The size of the cube increases by 5 feet for each slot level above 5th.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2593,7 +2841,8 @@ "damage_types": [], "duration": "special", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -2608,7 +2857,9 @@ "school": "evocation", "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2626,7 +2877,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2641,7 +2893,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2657,7 +2911,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2672,7 +2927,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2688,7 +2945,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2703,7 +2961,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2719,7 +2979,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2734,7 +2995,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2750,7 +3013,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2765,7 +3029,9 @@ "school": "transmutation", "higher_level": "The range of the target's darkvision increases to 120 feet. In addition, for each slot level above 3rd you may choose an additional target.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2781,7 +3047,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2796,7 +3063,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2812,7 +3081,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2827,7 +3097,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2843,7 +3115,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2858,7 +3131,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2874,7 +3149,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2889,7 +3165,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 7th.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2907,7 +3185,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2922,7 +3201,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -2938,7 +3219,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2953,7 +3235,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2969,7 +3253,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2984,7 +3269,9 @@ "school": "divination", "higher_level": "When using a 2nd-level spell slot or higher, the spell no longer requires your concentration. When using a 3rd-level spell slot or higher, the duration increases to 1 hour. When using a 4th-level spell slot or higher, the duration increases to 8 hours.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3000,7 +3287,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3015,7 +3303,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3031,7 +3321,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3046,7 +3337,9 @@ "school": "divination", "higher_level": "When using a 5th-level spell slot, increase the spell's range to 1 mile. When using a 7th-level spell slot, increase the range to 10 miles.\n\nWhen using a 9th-level spell slot, increase the range to 1, 000 miles.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3062,7 +3355,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3077,7 +3371,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3093,7 +3389,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3108,7 +3405,9 @@ "school": "illusion", "higher_level": "When using a 3rd-level spell slot or higher, this spell functions identically to the seeming spell, except the spell's duration is 10 minutes.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3124,7 +3423,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3139,7 +3439,9 @@ "school": "transmutation", "higher_level": "The damage increases by 3d6 for each slot level above 6th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3157,7 +3459,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3172,7 +3475,9 @@ "school": "abjuration", "higher_level": "Mental Resistance targets one additional creature for each slot level above 5th, and Retribution's damage increases by 1d8 for each slot level above 5th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3191,7 +3496,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3206,7 +3512,9 @@ "school": "abjuration", "higher_level": "You automatically end the effects of a spell on the target if the level of the spell slot used to cast it is equal to or less than the level of the spell slot used to cast dispel magic.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3222,7 +3530,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3237,7 +3546,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -3253,7 +3564,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3268,7 +3580,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3284,7 +3598,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3299,7 +3614,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3315,7 +3632,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3330,7 +3648,9 @@ "school": "enchantment", "higher_level": "The spell's duration is extended: 5th-level—Concentration (10 minutes), 6th-level—Concentration (1 hour), 7th-level—Concentration (8 hours).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3346,7 +3666,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3361,7 +3682,9 @@ "school": "enchantment", "higher_level": "The duration is Concentration (8 hours)", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3377,7 +3700,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3392,7 +3716,9 @@ "school": "enchantment", "higher_level": "The spell's duration is extended: 6th-level—Concentration (10 minutes), 7th-level —Concentration (1 hour), 8th-level —Concentration (8 hours).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3408,7 +3734,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3423,7 +3750,9 @@ "school": "enchantment", "higher_level": "The damage increases by 1d4 for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3441,7 +3770,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3456,7 +3786,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Special", + "range_text": "Special", + "range": 0.2, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3472,7 +3804,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3487,7 +3820,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3503,7 +3838,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -3518,7 +3854,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "reaction", "verbal": true, @@ -3534,7 +3872,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3549,7 +3888,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3567,7 +3908,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3582,7 +3924,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3598,7 +3942,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -3613,7 +3958,9 @@ "school": "transmutation", "higher_level": "You target one additional creature for each slot level above 2nd.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3629,7 +3976,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3644,7 +3992,9 @@ "school": "transmutation", "higher_level": "When using a spell slot of 4th-level, you can cause the target and its gear to increase by two size categories—from Medium to Huge, for example. Until the spell ends, the target's size is quadrupled in all dimensions, multiplying its weight twentyfold. The target has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 2d4 damage.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3660,7 +4010,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3675,7 +4026,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3691,7 +4044,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3706,7 +4060,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3722,7 +4078,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3737,7 +4094,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3753,7 +4112,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3768,7 +4128,9 @@ "school": "transmutation", "higher_level": "You can target up to 3 willing creatures within 10 feet (including you) for each slot level above 7th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3784,7 +4146,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3799,7 +4162,9 @@ "school": "transmutation", "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3815,7 +4180,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3830,7 +4196,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3846,7 +4214,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3861,7 +4230,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3877,7 +4248,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -3892,7 +4264,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3908,7 +4282,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -3923,7 +4298,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3939,7 +4316,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3954,7 +4332,9 @@ "school": "necromancy", "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3970,7 +4350,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3985,7 +4366,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4001,7 +4384,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4016,7 +4400,9 @@ "school": "transmutation", "higher_level": "When using a 2nd-level spell slot, targets can move horizontally 1 foot for every 1 foot they descend, effectively gliding through the air until they land or the spell ends.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "reaction", "verbal": true, @@ -4032,7 +4418,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4047,7 +4434,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4065,7 +4454,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4080,7 +4470,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -4096,7 +4488,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4111,7 +4504,9 @@ "school": "conjuration", "higher_level": "The steed has an additional 20 hit points for each slot level above 2nd. When using a 4th-level spell slot or higher, you may grant the steed either a swim speed or fly speed equal to its base Speed.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4127,7 +4522,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4142,7 +4538,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "Special", + "range_text": "Special", + "range": 0.2, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4158,7 +4556,8 @@ "damage_types": [], "duration": "1 day", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4173,7 +4572,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4189,7 +4590,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4204,7 +4606,9 @@ "school": "necromancy", "higher_level": "The damage increases by 2d8 for each slot level above 7th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4220,7 +4624,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4235,7 +4640,9 @@ "school": "evocation", "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4251,7 +4658,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4266,7 +4674,9 @@ "school": "evocation", "higher_level": "The duration increases to 1 hour when using a 6th-level spell slot, or 8 hours when using an 8th-level spell slot.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4284,7 +4694,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4299,7 +4710,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 7th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4315,7 +4728,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -4330,7 +4744,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4348,7 +4764,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4363,7 +4780,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4379,7 +4798,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4394,7 +4814,9 @@ "school": "evocation", "higher_level": "Increase either the fire damage or the radiant damage by 1d6 for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4410,7 +4832,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4425,7 +4848,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4441,7 +4866,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4456,7 +4882,9 @@ "school": "transmutation", "higher_level": "Target one additional creature when you cast this spell with an 8th-level spell slot.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -4472,7 +4900,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4487,7 +4916,9 @@ "school": "illusion", "higher_level": "Target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -4503,7 +4934,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4518,7 +4950,9 @@ "school": "conjuration", "higher_level": "When you use a 3rd-level spell slot, either the spell's duration increases to 8 hours or the disk's diameter is 10 feet, it can support up to 2, 000 pounds, and it can traverse obstacles up to 10 feet high. When you use a 6th-level spell slot, the disk's diameter is 20 feet, it can support up to 16, 000 pounds, and it can traverse obstacles up to 20 feet high.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -4534,7 +4968,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4549,7 +4984,9 @@ "school": "transmutation", "higher_level": "Target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4565,7 +5002,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4580,7 +5018,9 @@ "school": "conjuration", "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4596,7 +5036,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4611,7 +5052,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -4630,7 +5073,8 @@ ], "duration": "1 day", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4645,7 +5089,9 @@ "school": "abjuration", "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "reaction", "verbal": true, @@ -4661,7 +5107,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4676,7 +5123,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4694,7 +5143,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4709,7 +5159,9 @@ "school": "evocation", "higher_level": "The spell's area increases to a 20-foot cube when using a 9th-level spell slot.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4725,7 +5177,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4740,7 +5193,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4756,7 +5211,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4771,7 +5227,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4787,7 +5245,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4802,7 +5261,9 @@ "school": "abjuration", "higher_level": "When using a 6th-level spell slot the duration is 8 hours. When using an 8th-level spell slot the duration is 24 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4818,7 +5279,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4833,7 +5295,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 6th.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4849,7 +5313,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4864,7 +5329,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -4880,7 +5347,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4895,7 +5363,9 @@ "school": "transmutation", "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4911,7 +5381,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4926,7 +5397,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4942,7 +5415,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4957,7 +5431,9 @@ "school": "enchantment", "higher_level": "The spell's duration is 1 year when using a 7th-level spell slot, or permanent until dispelled when using a 9th-level spell slot.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4975,7 +5451,8 @@ ], "duration": "30 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4990,7 +5467,9 @@ "school": "necromancy", "higher_level": "The spell's duration is 1 year when using a 3rd-level spell slot, or permanent until dispelled when using a 4th-level spell slot.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5006,7 +5485,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5021,7 +5501,9 @@ "school": "transmutation", "higher_level": "The spell's duration is 1 hour when using a 5th-level spell slot, or 8 hours when using a 6th-level spell slot.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5037,7 +5519,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5052,7 +5535,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5068,7 +5553,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5083,7 +5569,9 @@ "school": "abjuration", "higher_level": "The barrier blocks spells of one spell slot level higher for each slot level above 6th.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5099,7 +5587,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5114,7 +5603,9 @@ "school": "abjuration", "higher_level": "The cost of the material component increases by 200 gold for each slot level above 3rd. For Explosive Runes, the damage increases by 1d8 for each slot level above 3rd, and for Spell Glyph you can store a spell of up to the same level as the spell slot used to cast glyph of warding.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5130,7 +5621,8 @@ "damage_types": [], "duration": "permanent", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -5145,7 +5637,9 @@ "school": "transmutation", "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5161,7 +5655,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5176,7 +5671,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "100 miles", + "range_text": "100 miles", + "range": 100.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -5192,7 +5689,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5207,7 +5705,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5223,7 +5723,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5238,7 +5739,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5254,7 +5757,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5269,7 +5773,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5285,7 +5791,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5300,7 +5807,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5318,7 +5827,8 @@ ], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5333,7 +5843,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5349,7 +5861,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5364,7 +5877,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5380,7 +5895,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5395,7 +5911,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5411,7 +5929,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5426,7 +5945,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5442,7 +5963,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5457,7 +5979,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5473,7 +5997,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5488,7 +6013,9 @@ "school": "illusion", "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", "target_type": "area", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5504,7 +6031,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5519,7 +6047,9 @@ "school": "necromancy", "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5537,7 +6067,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5552,7 +6083,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5568,7 +6101,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5583,7 +6117,9 @@ "school": "transformation", "higher_level": "Target one additional creature for each slot level above 3rd. All targets of this spell must be within 30 feet of each other.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5599,7 +6135,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5614,7 +6151,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5630,7 +6169,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5645,7 +6185,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5661,7 +6203,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5676,7 +6219,9 @@ "school": "necromancy", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5692,7 +6237,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5707,7 +6253,9 @@ "school": "transmutation", "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5725,7 +6273,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5740,7 +6289,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5756,7 +6307,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5771,7 +6323,9 @@ "school": "enchantment", "higher_level": "Target one additional creature for each slot level above 1st.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5787,7 +6341,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5802,7 +6357,9 @@ "school": "enchantment", "higher_level": "Target an additional creature within 30 feet of the original for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5818,7 +6375,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5833,7 +6391,9 @@ "school": "enchantment", "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5849,7 +6409,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5864,7 +6425,9 @@ "school": "enchantment", "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5880,7 +6443,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5895,7 +6459,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5911,7 +6477,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5926,7 +6493,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -5942,7 +6511,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5957,7 +6527,9 @@ "school": "evocation", "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", "target_type": "area", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5973,7 +6545,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5988,7 +6561,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -6004,7 +6579,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6019,7 +6595,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -6035,7 +6613,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6050,7 +6629,9 @@ "school": "abjuration", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6066,7 +6647,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6081,7 +6663,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6097,7 +6681,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6112,7 +6697,9 @@ "school": "necromancy", "higher_level": "The damage increases by 1d10 for each slot level above 7th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6128,7 +6715,8 @@ "damage_types": [], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6143,7 +6731,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6159,7 +6749,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6174,7 +6765,9 @@ "school": "necromancy", "higher_level": "The damage increases by 1d10 for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6190,7 +6783,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6205,7 +6799,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d10 for each slot level above 5th.", "target_type": "creature", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6221,7 +6817,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6236,7 +6833,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -6252,7 +6851,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6267,7 +6867,9 @@ "school": "transmutation", "higher_level": "When you cast this spell with a 3rd-level spell slot, the extra damage increases from 1d4 to 1d6\\. When you cast this spell with a 5th-level spell slot, the extra damage increases to 1d8.\n\nWhen you cast this spell with a 7th-level spell slot, the extra damage increases to 1d10.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6283,7 +6885,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6298,7 +6901,9 @@ "school": "illusion", "higher_level": "Target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6314,7 +6919,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6329,7 +6935,9 @@ "school": "enchantment", "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6345,7 +6953,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6360,7 +6969,9 @@ "school": "transmutation", "higher_level": "Each of the target's jump distances increase by 5 feet for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6376,7 +6987,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6391,7 +7003,9 @@ "school": "transmutation", "higher_level": "The level of the arcane lock you can suppress increases by 1 for each slot level above 3rd. In addition, if the level of your knock spell is 2 or more levels higher than that of the arcane lock, you may dispel the arcane lock instead of suppressing it.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6407,7 +7021,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6422,7 +7037,9 @@ "school": "divination", "higher_level": "Your intuition surrounding the target is enhanced and you gain advantage on one Investigation check regarding it for each slot level above 6th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6438,7 +7055,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6453,7 +7071,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6469,7 +7089,8 @@ "damage_types": [], "duration": "1 turn", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6484,7 +7105,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6500,7 +7123,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6515,7 +7139,9 @@ "school": "transmutation", "higher_level": "When using a 5th-level spell slot the target can levitate or come to the ground at will. When using a 7th-level spell slot its duration increases to 1 hour and it no longer requires concentration.", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6531,7 +7157,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6546,7 +7173,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6562,7 +7191,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6577,7 +7207,9 @@ "school": "evocation", "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6595,7 +7227,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6610,7 +7243,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "5 miles", + "range_text": "5 miles", + "range": 5.0, + "range_unit": "miles", "ritual": true, "casting_time": "action", "verbal": true, @@ -6626,7 +7261,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6641,7 +7277,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "1000 feet", + "range_text": "1000 feet", + "range": 1000.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6657,7 +7295,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6672,7 +7311,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "1000 feet", + "range_text": "1000 feet", + "range": 1000.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6688,7 +7329,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6703,7 +7345,9 @@ "school": "transmutation", "higher_level": "Target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6719,7 +7363,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6734,7 +7379,9 @@ "school": "abjuration", "higher_level": "The target gains 5 temporary hit points for each slot level above 1st. The temporary hit points last for the spell's duration.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6750,7 +7397,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6765,7 +7413,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6781,7 +7431,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6796,7 +7447,9 @@ "school": "abjuration", "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", "target_type": "area", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6812,7 +7465,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6827,7 +7481,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6843,7 +7499,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6858,7 +7515,9 @@ "school": "evocation", "higher_level": "Evoke one additional dart and target up to one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6874,7 +7533,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6889,7 +7549,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -6905,7 +7567,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6920,7 +7583,9 @@ "school": "transmutation", "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6936,7 +7601,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6951,7 +7617,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6967,7 +7635,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -6982,7 +7651,9 @@ "school": "illusion", "higher_level": "When cast using a 6th-level spell slot the illusion lasts until dispelled without requiring concentration.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6998,7 +7669,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7013,7 +7685,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7029,7 +7703,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7044,7 +7719,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7060,7 +7737,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7075,7 +7753,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7091,7 +7771,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7106,7 +7787,9 @@ "school": "enchantment", "higher_level": "When cast using a 7th-level spell slot, the duration of the spell increases to 10 days. When cast using an 8th-level spell slot, the duration increases to 30 days. When cast using a 9th-level spell slot, the duration increases to a year and a day.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7122,7 +7805,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7137,7 +7821,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7153,7 +7839,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7168,7 +7855,9 @@ "school": "transmutation", "higher_level": "When using a 5th-level spell slot, you may reach out of the target to make spell attacks or ranged weapon attacks without ending the spell. You make these attacks with disadvantage.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7184,7 +7873,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7199,7 +7889,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7215,7 +7907,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7230,7 +7923,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7246,7 +7941,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7261,7 +7957,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7277,7 +7975,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7292,7 +7991,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -7308,7 +8009,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7323,7 +8025,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7339,7 +8043,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7354,7 +8059,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7370,7 +8077,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7385,7 +8093,9 @@ "school": "illusion", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -7401,7 +8111,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7416,7 +8127,9 @@ "school": "illusion", "higher_level": "", "target_type": "area", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7432,7 +8145,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7447,7 +8161,9 @@ "school": "illusion", "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7463,7 +8179,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7478,7 +8195,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -7494,7 +8213,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7509,7 +8229,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7525,7 +8247,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7540,7 +8263,9 @@ "school": "enchantment", "higher_level": "When using a 6th-level spell slot, the event can be from as far as 7 days ago. When using a 7th-level spell slot, the event can be from as far as 30 days ago. When using an 8th-level spell slot, the event can be from as far as 1 year ago. When using a 9th-level spell slot, any event can be altered.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7556,7 +8281,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7571,7 +8297,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7587,7 +8315,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7602,7 +8331,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7618,7 +8349,8 @@ "damage_types": [], "duration": "2 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7633,7 +8365,9 @@ "school": "abjuration", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7649,7 +8383,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7664,7 +8399,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7680,7 +8417,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7695,7 +8433,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7711,7 +8451,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7726,7 +8467,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 10th level (3d4), and 15th level (4d4).", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7742,7 +8485,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7757,7 +8501,9 @@ "school": "illusion", "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7775,7 +8521,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7790,7 +8537,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -7806,7 +8555,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7821,7 +8571,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -7837,7 +8589,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7852,7 +8605,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7868,7 +8623,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7883,7 +8639,9 @@ "school": "abjuration", "higher_level": "When using a 6th-level spell slot, its duration increases to 10 days. When using a 7th-level spell slot, its duration increases to 30 days. When using an 8th-level spell slot, its duration increases to 180 days. When using a 9th-level spell slot, its duration increases to a year and a day.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7899,7 +8657,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7914,7 +8673,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7930,7 +8691,8 @@ "damage_types": [], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7945,7 +8707,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7961,7 +8725,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7976,7 +8741,9 @@ "school": "abjuration", "higher_level": "The target's skin is also covered in mucus, giving it advantage on saving throws and checks made to resist being grappled or restrained. In addition, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7994,7 +8761,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8009,7 +8777,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8025,7 +8795,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8040,7 +8811,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8056,7 +8829,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8071,7 +8845,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8087,7 +8863,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8102,7 +8879,9 @@ "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8118,7 +8897,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8133,7 +8913,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8149,7 +8931,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8164,7 +8947,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8182,7 +8967,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8197,7 +8983,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8215,7 +9003,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8230,7 +9019,9 @@ "school": "abjuration", "higher_level": "Increase the size of the sanctum by up to 100 feet for each slot level above 4th.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8246,7 +9037,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8261,7 +9053,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8277,7 +9071,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8292,7 +9087,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8308,7 +9105,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8323,7 +9121,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8339,7 +9139,8 @@ "damage_types": [], "duration": "1 day", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8354,7 +9155,9 @@ "school": "abjuration", "higher_level": "For each slot level above 2nd, the target gains resistance to one additional type of damage listed above, with a maximum number equal to your spellcasting ability modifier.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8370,7 +9173,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8385,7 +9189,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8401,7 +9207,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8416,7 +9223,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8432,7 +9241,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8447,7 +9257,9 @@ "school": "transmutation", "higher_level": "Remove all poison and disease from an additional Supply for each slot level above 1st.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -8463,7 +9275,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8478,7 +9291,9 @@ "school": "transmutation", "higher_level": "When using a spell slot of 5th- or 6th-level, the damage increases to 5d8.\n\nWhen using a spell slot of 7th- or 8th-level, the damage increases to 6d8\\. When using a spell slot of 9th-level, the damage increases to 7d8.", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8494,7 +9309,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8509,7 +9325,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8525,7 +9343,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8540,7 +9359,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8558,7 +9379,8 @@ ], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -8573,7 +9395,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8589,7 +9413,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8604,7 +9429,9 @@ "school": "evocation", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8620,7 +9447,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8635,7 +9463,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8651,7 +9481,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8666,7 +9497,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8682,7 +9515,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8697,7 +9531,9 @@ "school": "abjuration", "higher_level": "For each slot level above 3rd, the spell ends a curse inflicted either by a spell one level higher or by a creature with a Challenge Rating two higher. When using a 6th-level spell slot, the spell breaks the owner's attunement to a Very Rare item.\n\nWhen using a 9th-level spell slot, the spell breaks the owner's attunement to a Legendary item.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8713,7 +9549,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8728,7 +9565,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8744,7 +9583,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8759,7 +9599,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8775,7 +9617,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8790,7 +9633,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8806,7 +9651,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8821,7 +9667,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8837,7 +9685,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8852,7 +9701,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8868,7 +9719,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8883,7 +9735,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8899,7 +9753,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8914,7 +9769,9 @@ "school": "evocation", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8930,7 +9787,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8945,7 +9803,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8961,7 +9821,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8976,7 +9837,9 @@ "school": "evocation", "higher_level": "Create an additional ray for each slot level above 2nd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8994,7 +9857,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9009,7 +9873,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9025,7 +9891,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9040,7 +9907,9 @@ "school": "enchantment", "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9058,7 +9927,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9073,7 +9943,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9089,7 +9961,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9104,7 +9977,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9120,7 +9995,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9135,7 +10011,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -9153,7 +10031,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9168,7 +10047,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9184,7 +10065,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9199,7 +10081,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Unlimited", + "range_text": "Unlimited", + "range": 999999.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -9215,7 +10099,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9230,7 +10115,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9246,7 +10133,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9261,7 +10149,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9277,7 +10167,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9292,7 +10183,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9308,7 +10201,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9323,7 +10217,9 @@ "school": "evocation", "higher_level": "You create one additional orb for each slot level above 2nd.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9341,7 +10237,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9356,7 +10253,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "reaction", "verbal": true, @@ -9372,7 +10271,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9387,7 +10287,9 @@ "school": "abjuration", "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9403,7 +10305,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9418,7 +10321,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9434,7 +10339,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9449,7 +10355,9 @@ "school": "evocation", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9465,7 +10373,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9480,7 +10389,9 @@ "school": "illusion", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9496,7 +10407,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9511,7 +10423,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9527,7 +10441,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9542,7 +10457,9 @@ "school": "illusion", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9558,7 +10475,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9573,7 +10491,9 @@ "school": "enchantment", "higher_level": "The spell affects an additional 2d10 hit points worth of creatures for each slot level above 1st.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9589,7 +10509,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9604,7 +10525,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9620,7 +10543,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9635,7 +10559,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9651,7 +10577,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9666,7 +10593,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9682,7 +10611,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9697,7 +10627,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9713,7 +10645,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9728,7 +10661,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -9744,7 +10679,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9759,7 +10695,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9775,7 +10713,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9790,7 +10729,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9806,7 +10747,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9821,7 +10763,9 @@ "school": "transmutation", "higher_level": "You can affect one additional target for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9837,7 +10781,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9852,7 +10797,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9870,7 +10817,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9885,7 +10833,9 @@ "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9904,7 +10854,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9919,7 +10870,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9935,7 +10888,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9950,7 +10904,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9966,7 +10922,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9981,7 +10938,9 @@ "school": "conjuration", "higher_level": "The spell's area increases by 5 feet for every 2 slot levels above 3rd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9997,7 +10956,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10012,7 +10972,9 @@ "school": "transmutation", "higher_level": "You may select one additional target for every slot level above 4th.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10028,7 +10990,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10043,7 +11006,9 @@ "school": "abjuration", "higher_level": "When using a 7th-level spell slot, the target gains resistance to magical bludgeoning, piercing, and slashing damage.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10059,7 +11024,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10074,7 +11040,9 @@ "school": "transmutation", "higher_level": "When using a 6th-level spell slot or higher, if you are able to make more than one attack when you take the Attack action, you may make an additional melee weapon attack against the target. When using a 7th-level spell slot, you may choose an additional target within 30 feet of the target for each spell slot level above 6th, forcing each additional target to make a Dexterity saving throw or take 6d8 lightning damage.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10090,7 +11058,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10105,7 +11074,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10123,7 +11094,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10138,7 +11110,9 @@ "school": "enchantment", "higher_level": "When using a 4th-level spell slot, the duration is concentration, up to 24 hours. When using a 5th-level spell slot, the duration is 7 days. When using a 7th-level spell slot, the duration is 1 year. When using a 9th-level spell slot, the suggestion lasts until it is dispelled.\n\nAny use of a 5th-level or higher spell slot grants a duration that doesn't require concentration.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10154,7 +11128,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10169,7 +11144,9 @@ "school": "evocation", "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10187,7 +11164,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10202,7 +11180,9 @@ "school": "evocation", "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10220,7 +11200,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10235,7 +11216,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10251,7 +11234,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10266,7 +11250,9 @@ "school": "enchantment", "higher_level": "The damage increases by 2d4 for each slot level above 4th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10284,7 +11270,8 @@ ], "duration": "3 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10299,7 +11286,9 @@ "school": "transmutation", "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10315,7 +11304,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10330,7 +11320,9 @@ "school": "evocation", "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10346,7 +11338,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10361,7 +11354,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "Special", + "range_text": "Special", + "range": 0.2, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -10379,7 +11374,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10394,7 +11390,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10410,7 +11408,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10425,7 +11424,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10441,7 +11442,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10456,7 +11458,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10472,7 +11476,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10487,7 +11492,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10503,7 +11510,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10518,7 +11526,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -10534,7 +11544,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10549,7 +11560,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10565,7 +11578,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10580,7 +11594,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10596,7 +11612,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10611,7 +11628,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10627,7 +11646,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10642,7 +11662,9 @@ "school": "conjuration", "higher_level": "Target one additional creature within reach for each slot level above 5th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10658,7 +11680,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10673,7 +11696,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10689,7 +11714,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10704,7 +11730,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10720,7 +11748,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10735,7 +11764,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10751,7 +11782,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10766,7 +11798,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -10782,7 +11816,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10797,7 +11832,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10813,7 +11850,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10828,7 +11866,9 @@ "school": "conjuration", "higher_level": "You create an additional servant for each slot level above 1st.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10844,7 +11884,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10859,7 +11900,9 @@ "school": "necromancy", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10875,7 +11918,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10890,7 +11934,9 @@ "school": "evocation", "higher_level": "For each slot level above 2nd, the initial damage increases by 1d6 and target regains an additional 1d4 hit points.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -10906,7 +11952,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10921,7 +11968,9 @@ "school": "enchantment", "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10939,7 +11988,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10954,7 +12004,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10970,7 +12022,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10985,7 +12038,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11003,7 +12058,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11018,7 +12074,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11034,7 +12092,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11049,7 +12108,9 @@ "school": "evocation", "higher_level": "The damage the wall deals when it appears increases by 2d6 and the damage from passing through the sheet of frigid air increases by 1d6 for each slot level above 6th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11065,7 +12126,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11080,7 +12142,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11096,7 +12160,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11111,7 +12176,9 @@ "school": "conjuration", "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11127,7 +12194,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11142,7 +12210,9 @@ "school": "abjuration", "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11158,7 +12228,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11173,7 +12244,9 @@ "school": "divination", "higher_level": "For each slot level above 5th, you can also apply this spell's benefits to an additional creature you can see within 30 feet.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11189,7 +12262,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11204,7 +12278,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -11220,7 +12296,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11235,7 +12312,9 @@ "school": "transmutation", "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11251,7 +12330,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11266,7 +12346,9 @@ "school": "conjuration", "higher_level": "When using a 4th-level spell slot, you also summon a giant wolf spider in an unoccupied space within the web's area. When using a 6th-level spell slot, you summon up to two spiders.\n\nWhen using a 7th-level spell slot, you summon up to three spiders. The spiders are friendly to you and your companions. Roll initiative for the spiders as a group, which have their own turns. The spiders obey your verbal commands, but they disappear when the spell ends or when they leave the web's area.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11282,7 +12364,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": true } }, @@ -11297,7 +12380,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11315,7 +12400,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11330,7 +12416,9 @@ "school": "transmutation", "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11346,7 +12434,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11361,7 +12450,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -11377,7 +12468,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11392,7 +12484,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11408,7 +12502,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11423,7 +12518,9 @@ "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11439,7 +12536,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11454,7 +12552,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11470,7 +12570,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11485,7 +12586,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "5 feet", + "range_text": "5 feet", + "range": 5.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11501,7 +12604,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11516,7 +12620,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "150 miles", + "range_text": "150 miles", + "range": 150.0, + "range_unit": "miles", "ritual": true, "casting_time": "action", "verbal": true, @@ -11532,7 +12638,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11547,7 +12654,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -11563,7 +12672,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11578,7 +12688,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11596,7 +12708,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/en-publishing/a5e-ddg/Document.json b/data/v2/en-publishing/a5e-ddg/Document.json index 56bff5aa..599c74a5 100644 --- a/data/v2/en-publishing/a5e-ddg/Document.json +++ b/data/v2/en-publishing/a5e-ddg/Document.json @@ -10,6 +10,8 @@ "author": "EN Publishing", "published_at": "2023-10-03T00:00:00", "permalink": "https://a5esrd.com/a5esrd", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "cc-by-40", "ogl-10a" diff --git a/data/v2/en-publishing/a5e-gpg/Document.json b/data/v2/en-publishing/a5e-gpg/Document.json index 616a7a74..783f7e69 100644 --- a/data/v2/en-publishing/a5e-gpg/Document.json +++ b/data/v2/en-publishing/a5e-gpg/Document.json @@ -10,6 +10,8 @@ "author": "EN Publishing", "published_at": "2022-01-01T00:00:00", "permalink": "https://a5esrd.com/a5esrd", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "cc-by-40", "ogl-10a" diff --git a/data/v2/green-ronin/tdcs/Document.json b/data/v2/green-ronin/tdcs/Document.json index 45259c31..49daea95 100644 --- a/data/v2/green-ronin/tdcs/Document.json +++ b/data/v2/green-ronin/tdcs/Document.json @@ -10,6 +10,8 @@ "author": "Matthew Mercer, James Haeck", "published_at": "2017-08-17T00:00:00", "permalink": "https://en.wikipedia.org/wiki/Critical_Role%3A_Tal'Dorei_Campaign_Setting", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/deepm/Document.json b/data/v2/kobold-press/deepm/Document.json index 956fd061..0dc36c34 100644 --- a/data/v2/kobold-press/deepm/Document.json +++ b/data/v2/kobold-press/deepm/Document.json @@ -10,6 +10,8 @@ "author": "Dan Dillon, Chris Harris, and Jeff Lee", "published_at": "2020-02-13T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/deep-magic-for-5th-edition-hardcover/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/deepm/Spell.json b/data/v2/kobold-press/deepm/Spell.json index 37abee25..0fd0ccee 100644 --- a/data/v2/kobold-press/deepm/Spell.json +++ b/data/v2/kobold-press/deepm/Spell.json @@ -10,7 +10,9 @@ "school": "illusion", "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -28,7 +30,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -43,7 +46,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -59,7 +64,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -74,7 +80,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -92,7 +100,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -107,7 +116,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -125,7 +136,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -140,7 +152,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -156,7 +170,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -171,7 +186,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": true, "casting_time": "action", "verbal": true, @@ -187,7 +204,8 @@ "damage_types": [], "duration": "permanent; one generation", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -202,7 +220,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -218,7 +238,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -233,7 +254,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -249,7 +272,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -264,7 +288,9 @@ "school": "conjuration", "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -282,7 +308,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -297,7 +324,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -313,7 +342,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -328,7 +358,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -344,7 +376,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -359,7 +392,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -375,7 +410,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -390,7 +426,9 @@ "school": "conjuration", "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -406,7 +444,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -421,7 +460,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -437,7 +478,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -452,7 +494,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -468,7 +512,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -483,7 +528,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -499,7 +546,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -514,7 +562,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -530,7 +580,8 @@ "damage_types": [], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -545,7 +596,9 @@ "school": "necromancy", "higher_level": "", "target_type": "object", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -561,7 +614,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -576,7 +630,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -592,7 +648,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -607,7 +664,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -623,7 +682,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -638,7 +698,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", "target_type": "creature", - "range": "15 feet", + "range_text": "15 feet", + "range": 15.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -654,7 +716,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -669,7 +732,9 @@ "school": "transmutation", "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -685,7 +750,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -700,7 +766,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -716,7 +784,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -731,7 +800,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -747,7 +818,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -762,7 +834,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -778,7 +852,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -793,7 +868,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -809,7 +886,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -824,7 +902,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -840,7 +920,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -855,7 +936,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -871,7 +954,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -886,7 +970,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -902,7 +988,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -917,7 +1004,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -933,7 +1022,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -948,7 +1038,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -964,7 +1056,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -979,7 +1072,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -995,7 +1090,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1010,7 +1106,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1026,7 +1124,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1041,7 +1140,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Unlimited", + "range_text": "Unlimited", + "range": 999999.0, + "range_unit": "miles", "ritual": true, "casting_time": "action", "verbal": true, @@ -1057,7 +1158,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1072,7 +1174,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1088,7 +1192,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1103,7 +1208,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1119,7 +1226,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1134,7 +1242,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1150,7 +1260,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1165,7 +1276,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1183,7 +1296,8 @@ ], "duration": "1 minute", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -1198,7 +1312,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1214,7 +1330,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1229,7 +1346,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1245,7 +1364,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1260,7 +1380,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1276,7 +1398,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1291,7 +1414,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1307,7 +1432,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1322,7 +1448,9 @@ "school": "evocation", "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1340,7 +1468,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1355,7 +1484,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1373,7 +1504,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1388,7 +1520,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1404,7 +1538,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1419,7 +1554,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1435,7 +1572,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1450,7 +1588,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1466,7 +1606,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -1481,7 +1622,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1497,7 +1640,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1512,7 +1656,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1528,7 +1674,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": true } }, @@ -1543,7 +1690,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1561,7 +1710,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1576,7 +1726,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1592,7 +1744,8 @@ "damage_types": [], "duration": "4 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1607,7 +1760,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1625,7 +1780,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1640,7 +1796,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1658,7 +1816,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1673,7 +1832,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -1689,7 +1850,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1704,7 +1866,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1720,7 +1884,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1735,7 +1900,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1751,7 +1918,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1766,7 +1934,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1782,7 +1952,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1797,7 +1968,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1815,7 +1988,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1830,7 +2004,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1846,7 +2022,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1861,7 +2038,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1877,7 +2056,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1892,7 +2072,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1908,7 +2090,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1923,7 +2106,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1939,7 +2124,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1954,7 +2140,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1970,7 +2158,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1985,7 +2174,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2001,7 +2192,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2016,7 +2208,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2032,7 +2226,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2047,7 +2242,9 @@ "school": "necromancy", "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2063,7 +2260,8 @@ "damage_types": [], "duration": "4 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2078,7 +2276,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2096,7 +2296,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2111,7 +2312,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2127,7 +2330,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2142,7 +2346,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", "target_type": "creature", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2160,7 +2366,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2175,7 +2382,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2191,7 +2400,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2206,7 +2416,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2224,7 +2436,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2239,7 +2452,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": true, "casting_time": "action", "verbal": true, @@ -2255,7 +2470,8 @@ "damage_types": [], "duration": "1 year", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2270,7 +2486,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2288,7 +2506,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2303,7 +2522,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2321,7 +2542,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2336,7 +2558,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2352,7 +2576,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2367,7 +2592,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2383,7 +2610,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "line", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": true } }, @@ -2398,7 +2626,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -2416,7 +2646,8 @@ ], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -2431,7 +2662,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2445,9 +2678,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": "see below", + "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2462,7 +2696,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2478,7 +2714,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2493,7 +2730,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2509,7 +2748,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2524,7 +2764,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2540,7 +2782,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2555,7 +2798,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2571,7 +2816,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2586,7 +2832,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2602,7 +2850,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2617,7 +2866,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2633,7 +2884,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2648,7 +2900,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2664,7 +2918,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2679,7 +2934,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2695,7 +2952,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2710,7 +2968,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2726,7 +2986,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2741,7 +3002,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2757,7 +3020,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2772,7 +3036,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2788,7 +3054,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2803,7 +3070,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2819,7 +3088,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2834,7 +3104,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", "target_type": "object", - "range": "400 feet", + "range_text": "400 feet", + "range": 400.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2852,7 +3124,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2867,7 +3140,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2885,7 +3160,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2900,7 +3176,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2918,7 +3196,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2933,7 +3212,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2951,7 +3232,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2966,7 +3248,9 @@ "school": "evocation", "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2984,7 +3268,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2999,7 +3284,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", "target_type": "area", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3015,7 +3302,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3030,7 +3318,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3048,7 +3338,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3063,7 +3354,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3081,7 +3374,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3096,7 +3390,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3112,7 +3408,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3127,7 +3424,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3143,7 +3442,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3158,7 +3458,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3174,7 +3476,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3189,7 +3492,9 @@ "school": "illusion", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3205,7 +3510,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -3220,7 +3526,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3238,7 +3546,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3253,7 +3562,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3269,7 +3580,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3284,7 +3596,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3300,7 +3614,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3315,7 +3630,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3333,7 +3650,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3348,7 +3666,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3364,7 +3684,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3379,7 +3700,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3397,7 +3720,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3412,7 +3736,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", "target_type": "area", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3428,7 +3754,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3443,7 +3770,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3459,7 +3788,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3474,7 +3804,9 @@ "school": "evocation", "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3492,7 +3824,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3507,7 +3840,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3525,7 +3860,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3540,7 +3876,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3556,7 +3894,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3571,7 +3910,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3587,7 +3928,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3602,7 +3944,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3618,7 +3962,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3633,7 +3978,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3649,7 +3996,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3664,7 +4012,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3680,7 +4030,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3695,7 +4046,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3711,7 +4064,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3726,7 +4080,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3742,7 +4098,8 @@ "damage_types": [], "duration": "until destroyed", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3757,7 +4114,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3773,7 +4132,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3788,7 +4148,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3804,7 +4166,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3819,7 +4182,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3835,7 +4200,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3850,7 +4216,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3866,7 +4234,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3881,7 +4250,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3897,7 +4268,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3912,7 +4284,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3928,7 +4302,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3943,7 +4318,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3959,7 +4336,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3974,7 +4352,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3992,7 +4372,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4007,7 +4388,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4023,7 +4406,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4038,7 +4422,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4056,7 +4442,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4071,7 +4458,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4087,7 +4476,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4102,7 +4492,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4120,7 +4512,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4135,7 +4528,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4153,7 +4548,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4168,7 +4564,9 @@ "school": "enchantment", "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4184,7 +4582,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4199,7 +4598,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4215,7 +4616,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4230,7 +4632,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4246,7 +4650,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4261,7 +4666,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4277,7 +4684,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4292,7 +4700,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4308,7 +4718,8 @@ "damage_types": [], "duration": "5 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4323,7 +4734,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4339,7 +4752,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4354,7 +4768,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4370,7 +4786,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4385,7 +4802,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -4401,7 +4820,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4416,7 +4836,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4432,7 +4854,8 @@ "damage_types": [], "duration": "permanent until discharged", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4447,7 +4870,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4463,7 +4888,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4478,7 +4904,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4494,7 +4922,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4509,7 +4938,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4525,7 +4956,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4540,7 +4972,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4556,7 +4990,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4571,7 +5006,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4589,7 +5026,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4604,7 +5042,9 @@ "school": "necromancy", "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4622,7 +5062,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4637,7 +5078,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4653,7 +5096,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4668,7 +5112,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4684,7 +5130,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4699,7 +5146,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4715,7 +5164,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4730,7 +5180,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4748,7 +5200,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4763,7 +5216,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4781,7 +5236,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4796,7 +5252,9 @@ "school": "necromancy", "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4814,7 +5272,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4829,7 +5288,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4845,7 +5306,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4860,7 +5322,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4876,7 +5340,8 @@ "damage_types": [], "duration": "2 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4891,7 +5356,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4907,7 +5374,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4922,7 +5390,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4936,9 +5406,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": "1 hour (see below)", + "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4953,7 +5424,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4969,7 +5442,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4984,7 +5458,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5002,7 +5478,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5017,7 +5494,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5035,7 +5514,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -5050,7 +5530,9 @@ "school": "necromancy", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5066,7 +5548,8 @@ "damage_types": [], "duration": "1 year", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5081,7 +5564,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5099,7 +5584,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -5114,7 +5600,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5130,7 +5618,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5145,7 +5634,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5161,7 +5652,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5176,7 +5668,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5192,7 +5686,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5207,7 +5702,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5223,7 +5720,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5238,7 +5736,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", "target_type": "creature", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5254,7 +5754,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -5269,7 +5770,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5285,7 +5788,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5300,7 +5804,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5316,7 +5822,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5331,7 +5838,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5347,7 +5856,8 @@ "damage_types": [], "duration": "3 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5362,7 +5872,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5378,7 +5890,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5393,7 +5906,9 @@ "school": "illusion", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5409,7 +5924,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5424,7 +5940,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5440,7 +5958,8 @@ "damage_types": [], "duration": "5 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5455,7 +5974,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5473,7 +5994,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5488,7 +6010,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5504,7 +6028,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5519,7 +6044,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5535,7 +6062,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5550,7 +6078,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5566,7 +6096,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5581,7 +6112,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5597,7 +6130,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5612,7 +6146,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5628,7 +6164,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5643,7 +6180,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5659,7 +6198,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "line", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": true } }, @@ -5674,7 +6214,9 @@ "school": "evocation", "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5692,7 +6234,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5707,7 +6250,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5723,7 +6268,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5738,7 +6284,9 @@ "school": "conjuration", "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5756,7 +6304,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5771,7 +6320,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5789,7 +6340,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5804,7 +6356,9 @@ "school": "enchantment", "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5822,7 +6376,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5837,7 +6392,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -5853,7 +6410,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5868,7 +6426,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5886,7 +6446,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5901,7 +6462,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5917,7 +6480,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5932,7 +6496,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5948,7 +6514,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5963,7 +6530,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5979,7 +6548,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5994,7 +6564,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6010,7 +6582,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6025,7 +6598,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -6041,7 +6616,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6056,7 +6632,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6072,7 +6650,8 @@ "damage_types": [], "duration": "permanent until discharged", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6087,7 +6666,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", "target_type": "area", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -6103,7 +6684,8 @@ "damage_types": [], "duration": "12 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6118,7 +6700,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6134,7 +6718,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6149,7 +6734,9 @@ "school": "transmutation", "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6165,7 +6752,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6180,7 +6768,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6196,7 +6786,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6211,7 +6802,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6227,7 +6820,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6242,7 +6836,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6258,7 +6854,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6273,7 +6870,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6289,7 +6888,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -6304,7 +6904,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6320,7 +6922,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6335,7 +6938,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6351,7 +6956,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6366,7 +6972,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6382,7 +6990,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6397,7 +7006,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6415,7 +7026,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6430,7 +7042,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6448,7 +7062,8 @@ ], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6463,7 +7078,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -6479,7 +7096,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6494,7 +7112,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6510,7 +7130,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6525,7 +7146,9 @@ "school": "abjuration", "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6541,7 +7164,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6556,7 +7180,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6572,7 +7198,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6587,7 +7214,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6603,7 +7232,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6618,7 +7248,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -6634,7 +7266,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6649,7 +7282,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "20 feet", + "range_text": "20 feet", + "range": 20.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6665,7 +7300,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6680,7 +7316,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "5 feet", + "range_text": "5 feet", + "range": 5.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6696,7 +7334,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6711,7 +7350,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6727,7 +7368,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6742,7 +7384,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6758,7 +7402,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6773,7 +7418,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6791,7 +7438,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 40, + "shape_size": 40.0, + "shape_size_unit": null, "concentration": false } }, @@ -6806,7 +7454,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6822,7 +7472,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6837,7 +7488,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6853,7 +7506,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6868,7 +7522,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6884,7 +7540,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6899,7 +7556,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6915,7 +7574,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6930,7 +7590,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6946,7 +7608,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6961,7 +7624,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6977,7 +7642,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 200, + "shape_size": 200.0, + "shape_size_unit": null, "concentration": false } }, @@ -6992,7 +7658,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -7008,7 +7676,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7023,7 +7692,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7039,7 +7710,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7054,7 +7726,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7072,7 +7746,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7087,7 +7762,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", "target_type": "object", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7103,7 +7780,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7118,7 +7796,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7136,7 +7816,8 @@ ], "duration": "5 minutes", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -7151,7 +7832,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7167,7 +7850,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7182,7 +7866,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7200,7 +7886,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7215,7 +7902,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7231,7 +7920,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7246,7 +7936,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7264,7 +7956,8 @@ ], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -7279,7 +7972,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7295,7 +7990,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7310,7 +8006,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7329,7 +8027,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -7344,7 +8043,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7362,7 +8063,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -7377,7 +8079,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7393,7 +8097,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7408,7 +8113,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7424,7 +8131,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7439,7 +8147,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7455,7 +8165,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -7470,7 +8181,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7488,7 +8201,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -7503,7 +8217,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7519,7 +8235,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7534,7 +8251,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7550,7 +8269,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -7565,7 +8285,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7581,7 +8303,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7596,7 +8319,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7614,7 +8339,8 @@ ], "duration": "1 minute or 1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7629,7 +8355,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7647,7 +8375,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7662,7 +8391,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7678,7 +8409,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7693,7 +8425,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7709,7 +8443,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7724,7 +8459,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -7740,7 +8477,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7755,7 +8493,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7773,7 +8513,8 @@ ], "duration": "1 hour or until triggered", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7788,7 +8529,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7806,7 +8549,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7821,7 +8565,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -7839,7 +8585,8 @@ ], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7854,7 +8601,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -7872,7 +8621,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7887,7 +8637,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7903,7 +8655,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7918,7 +8671,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -7934,7 +8689,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7949,7 +8705,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -7965,7 +8723,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7980,7 +8739,9 @@ "school": "evocation", "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -7998,7 +8759,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8013,7 +8775,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8029,7 +8793,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8044,7 +8809,9 @@ "school": "enchantment", "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8060,7 +8827,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8075,7 +8843,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", "target_type": "creature", - "range": "180 feet", + "range_text": "180 feet", + "range": 180.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8091,7 +8861,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -8106,7 +8877,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8122,7 +8895,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8137,7 +8911,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8153,7 +8929,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8168,7 +8945,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8184,7 +8963,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8199,7 +8979,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8217,7 +8999,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8232,7 +9015,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8248,7 +9033,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8263,7 +9049,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8279,7 +9067,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8294,7 +9083,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8310,7 +9101,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8325,7 +9117,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8341,7 +9135,8 @@ "damage_types": [], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8356,7 +9151,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8372,7 +9169,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8387,7 +9185,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8403,7 +9203,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8418,7 +9219,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -8434,7 +9237,8 @@ "damage_types": [], "duration": "3 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8449,7 +9253,9 @@ "school": "evocation", "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8465,7 +9271,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8480,7 +9287,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8496,7 +9305,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8511,7 +9321,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8529,7 +9341,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8544,7 +9357,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8560,7 +9375,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8575,7 +9391,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8591,7 +9409,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8606,7 +9425,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8622,7 +9443,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8637,7 +9459,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8653,7 +9477,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8668,7 +9493,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8684,7 +9511,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -8699,7 +9527,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8715,7 +9545,8 @@ "damage_types": [], "duration": "until dispelled or destroyed", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -8730,7 +9561,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8746,7 +9579,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8761,7 +9595,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8777,7 +9613,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8792,7 +9629,9 @@ "school": "conjuration", "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8808,7 +9647,8 @@ "damage_types": [], "duration": "instantaneous or special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8823,7 +9663,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8841,7 +9683,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8856,7 +9699,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8872,7 +9717,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8887,7 +9733,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8903,7 +9751,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8918,7 +9767,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8934,7 +9785,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8949,7 +9801,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", "target_type": "point", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8965,7 +9819,8 @@ "damage_types": [], "duration": "2 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8980,7 +9835,9 @@ "school": "illusion", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8996,7 +9853,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9011,7 +9869,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9027,7 +9887,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9042,7 +9903,9 @@ "school": "enchantment", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9058,7 +9921,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9073,7 +9937,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9089,7 +9955,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9104,7 +9971,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9120,7 +9989,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9135,7 +10005,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9151,7 +10023,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9166,7 +10039,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9184,7 +10059,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9199,7 +10075,9 @@ "school": "abjuration", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9215,7 +10093,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9230,7 +10109,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9246,7 +10127,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9261,7 +10143,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9279,7 +10163,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -9294,7 +10179,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9310,7 +10197,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 100, + "shape_size": 100.0, + "shape_size_unit": null, "concentration": false } }, @@ -9325,7 +10213,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -9343,7 +10233,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9358,7 +10249,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9374,7 +10267,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9389,7 +10283,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9405,7 +10301,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9420,7 +10317,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9438,7 +10337,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9453,7 +10353,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9471,7 +10373,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9486,7 +10389,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9502,7 +10407,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 100, + "shape_size": 100.0, + "shape_size_unit": null, "concentration": false } }, @@ -9517,7 +10423,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", "target_type": "area", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9533,7 +10441,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9548,7 +10457,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9566,7 +10477,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9581,7 +10493,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9599,7 +10513,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9614,7 +10529,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9630,7 +10547,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9645,7 +10563,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9663,7 +10583,8 @@ ], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -9678,7 +10599,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9694,7 +10617,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9709,7 +10633,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9725,7 +10651,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9740,7 +10667,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9756,7 +10685,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9771,7 +10701,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9789,7 +10721,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9804,7 +10737,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9820,7 +10755,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9835,7 +10771,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9851,7 +10789,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9866,7 +10805,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9882,7 +10823,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9897,7 +10839,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9913,7 +10857,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9928,7 +10873,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9944,7 +10891,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -9959,7 +10907,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9975,7 +10925,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9990,7 +10941,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10006,7 +10959,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10021,7 +10975,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10037,7 +10993,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -10052,7 +11009,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10068,7 +11027,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10083,7 +11043,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10101,7 +11063,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10116,7 +11079,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10132,7 +11097,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10147,7 +11113,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10165,7 +11133,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10180,7 +11149,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10196,7 +11167,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10211,7 +11183,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10229,7 +11203,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10244,7 +11219,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10260,7 +11237,8 @@ "damage_types": [], "duration": "1 minute, or until expended", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10275,7 +11253,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10293,7 +11273,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10308,7 +11289,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10324,7 +11307,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10339,7 +11323,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10355,7 +11341,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -10370,7 +11357,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10386,7 +11375,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10401,7 +11391,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10417,7 +11409,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10432,7 +11425,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10448,7 +11443,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10463,7 +11459,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10479,7 +11477,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10494,7 +11493,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10510,7 +11511,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10525,7 +11527,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10541,7 +11545,8 @@ "damage_types": [], "duration": "up to 8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10556,7 +11561,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", "target_type": "point", - "range": "50 feet", + "range_text": "50 feet", + "range": 50.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10572,7 +11579,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10587,7 +11595,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -10603,7 +11613,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10618,7 +11629,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10634,7 +11647,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10649,7 +11663,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10665,7 +11681,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10680,7 +11697,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10696,7 +11715,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10711,7 +11731,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -10727,7 +11749,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "cylinder", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -10742,7 +11765,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10758,7 +11783,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10773,7 +11799,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -10789,7 +11817,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10804,7 +11833,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10820,7 +11851,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10835,7 +11867,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10853,7 +11887,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -10868,7 +11903,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10884,7 +11921,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10899,7 +11937,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10915,7 +11955,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10930,7 +11971,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10946,7 +11989,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10961,7 +12005,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -10977,7 +12023,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -10992,7 +12039,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11010,7 +12059,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11025,7 +12075,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11041,7 +12093,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11056,7 +12109,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11072,7 +12127,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11087,7 +12143,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11103,7 +12161,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11118,7 +12177,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11136,7 +12197,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11151,7 +12213,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11167,7 +12231,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11182,7 +12247,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11198,7 +12265,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11213,7 +12281,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11229,7 +12299,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11244,7 +12315,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11262,7 +12335,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11277,7 +12351,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11293,7 +12369,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11308,7 +12385,9 @@ "school": "conjuration", "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11326,7 +12405,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11341,7 +12421,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11359,7 +12441,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11374,7 +12457,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11390,7 +12475,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11405,7 +12491,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11421,7 +12509,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11436,7 +12525,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11452,7 +12543,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11467,7 +12559,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11483,7 +12577,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11498,7 +12593,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11514,7 +12611,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11529,7 +12627,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11545,7 +12645,8 @@ "damage_types": [], "duration": "4 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11560,7 +12661,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11576,7 +12679,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11591,7 +12695,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11609,7 +12715,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11624,7 +12731,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11640,7 +12749,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11655,7 +12765,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11671,7 +12783,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11686,7 +12799,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11702,7 +12817,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11717,7 +12833,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11733,7 +12851,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -11748,7 +12867,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11764,7 +12885,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11779,7 +12901,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11795,7 +12919,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11810,7 +12935,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11828,7 +12955,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11843,7 +12971,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11859,7 +12989,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -11874,7 +13005,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11892,7 +13025,8 @@ ], "duration": "1 round", "shape_type": "cylinder", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -11907,7 +13041,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11925,7 +13061,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11940,7 +13077,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -11956,7 +13095,8 @@ "damage_types": [], "duration": "3 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -11971,7 +13111,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -11987,7 +13129,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12002,7 +13145,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12018,7 +13163,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12033,7 +13179,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -12049,7 +13197,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12064,7 +13213,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "5 feet", + "range_text": "5 feet", + "range": 5.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12080,7 +13231,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12095,7 +13247,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12111,7 +13265,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12126,7 +13281,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12142,7 +13299,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12157,7 +13315,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12175,7 +13335,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12190,7 +13351,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12206,7 +13369,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12221,7 +13385,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12237,7 +13403,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12252,7 +13419,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12268,7 +13437,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12283,7 +13453,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -12301,7 +13473,8 @@ ], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12316,7 +13489,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "200 feet", + "range_text": "200 feet", + "range": 200.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12334,7 +13509,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12349,7 +13525,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12365,7 +13543,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12380,7 +13559,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -12398,7 +13579,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12413,7 +13595,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12429,7 +13613,8 @@ "damage_types": [], "duration": "3 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12444,7 +13629,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12460,7 +13647,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12475,7 +13663,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12491,7 +13681,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12506,7 +13697,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12522,7 +13715,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12537,7 +13731,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12553,7 +13749,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12568,7 +13765,9 @@ "school": "illusion", "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12584,7 +13783,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12599,7 +13799,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12615,7 +13817,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12630,7 +13833,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12648,7 +13853,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -12663,7 +13869,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12679,7 +13887,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12694,7 +13903,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12712,7 +13923,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12727,7 +13939,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", "target_type": "creature", - "range": "5 feet", + "range_text": "5 feet", + "range": 5.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -12743,7 +13957,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12758,7 +13973,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -12774,7 +13991,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12789,7 +14007,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -12805,7 +14025,8 @@ "damage_types": [], "duration": "12 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12820,7 +14041,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12838,7 +14061,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12853,7 +14077,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12871,7 +14097,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12886,7 +14113,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12902,7 +14131,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12917,7 +14147,9 @@ "school": "evocation", "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -12933,7 +14165,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -12948,7 +14181,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12966,7 +14201,8 @@ ], "duration": "10 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -12981,7 +14217,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -12997,7 +14235,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13012,7 +14251,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13028,7 +14269,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13043,7 +14285,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13059,7 +14303,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13074,7 +14319,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "20 feet", + "range_text": "20 feet", + "range": 20.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -13090,7 +14337,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13105,7 +14353,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -13121,7 +14371,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13136,7 +14387,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13152,7 +14405,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13167,7 +14421,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13183,7 +14439,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13198,7 +14455,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13214,7 +14473,8 @@ "damage_types": [], "duration": "4 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13229,7 +14489,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13245,7 +14507,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13260,7 +14523,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13276,7 +14541,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13291,7 +14557,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -13307,7 +14575,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13322,7 +14591,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -13338,7 +14609,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13353,7 +14625,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13369,7 +14643,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13384,7 +14659,9 @@ "school": "evocation", "higher_level": "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.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13402,7 +14679,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13417,7 +14695,9 @@ "school": "necromancy", "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13433,7 +14713,8 @@ "damage_types": [], "duration": "5 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13448,7 +14729,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13464,7 +14747,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13479,7 +14763,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13497,7 +14783,8 @@ ], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13512,7 +14799,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13528,7 +14817,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13543,7 +14833,9 @@ "school": "evocation", "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13559,7 +14851,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -13574,7 +14867,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13590,7 +14885,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13605,7 +14901,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13621,7 +14919,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13636,7 +14935,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "50 feet", + "range_text": "50 feet", + "range": 50.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13654,7 +14955,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13669,7 +14971,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13685,7 +14989,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13700,7 +15005,9 @@ "school": "evocation", "higher_level": "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.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13716,7 +15023,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13731,7 +15039,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13747,7 +15057,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13762,7 +15073,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13778,7 +15091,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13793,7 +15107,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13811,7 +15127,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": true } }, @@ -13826,7 +15143,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -13842,7 +15161,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "cylinder", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -13857,7 +15177,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -13873,7 +15195,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13888,7 +15211,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -13904,7 +15229,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -13919,7 +15245,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -13935,7 +15263,8 @@ "damage_types": [], "duration": "1 minute, until expended", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13950,7 +15279,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13966,7 +15297,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -13981,7 +15313,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -13997,7 +15331,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": "cone", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -14012,7 +15347,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14030,7 +15367,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14045,7 +15383,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14061,7 +15401,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14076,7 +15417,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14092,7 +15435,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14107,7 +15451,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14125,7 +15471,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14140,7 +15487,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14156,7 +15505,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14171,7 +15521,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14189,7 +15541,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14204,7 +15557,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -14222,7 +15577,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14237,7 +15593,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14253,7 +15611,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14268,7 +15627,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14284,7 +15645,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14299,7 +15661,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14317,7 +15681,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -14332,7 +15697,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14348,7 +15715,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14363,7 +15731,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14379,7 +15749,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14394,7 +15765,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14410,7 +15783,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14425,7 +15799,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14441,7 +15817,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14456,7 +15833,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14472,7 +15851,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14487,7 +15867,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14503,7 +15885,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14518,7 +15901,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14534,7 +15919,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14549,7 +15935,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14565,7 +15953,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14580,7 +15969,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14596,7 +15987,8 @@ "damage_types": [], "duration": "3 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14611,7 +16003,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -14627,7 +16021,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14642,7 +16037,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -14658,7 +16055,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14673,7 +16071,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14689,7 +16089,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14704,7 +16105,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14720,7 +16123,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -14735,7 +16139,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14753,7 +16159,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14768,7 +16175,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14784,7 +16193,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14799,7 +16209,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14815,7 +16227,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14830,7 +16243,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14846,7 +16261,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14861,7 +16277,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -14877,7 +16295,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -14892,7 +16311,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -14908,7 +16329,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14923,7 +16345,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14939,7 +16363,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14954,7 +16379,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -14970,7 +16397,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -14985,7 +16413,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15003,7 +16433,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15018,7 +16449,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -15034,7 +16467,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15049,7 +16483,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15067,7 +16503,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -15082,7 +16519,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -15098,7 +16537,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15113,7 +16553,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15129,7 +16571,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15144,7 +16587,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15160,7 +16605,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15175,7 +16621,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15191,7 +16639,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15206,7 +16655,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15222,7 +16673,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15237,7 +16689,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -15253,7 +16707,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15268,7 +16723,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -15284,7 +16741,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15299,7 +16757,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15315,7 +16775,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15330,7 +16791,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -15346,7 +16809,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15361,7 +16825,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15379,7 +16845,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -15394,7 +16861,9 @@ "school": "evocation", "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15412,7 +16881,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15427,7 +16897,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -15443,7 +16915,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15458,7 +16931,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15474,7 +16949,8 @@ "damage_types": [], "duration": "5 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15489,7 +16965,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -15505,7 +16983,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15520,7 +16999,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15536,7 +17017,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15551,7 +17033,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15567,7 +17051,8 @@ "damage_types": [], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15582,7 +17067,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15598,7 +17085,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15613,7 +17101,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15629,7 +17119,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15644,7 +17135,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15660,7 +17153,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15675,7 +17169,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -15691,7 +17187,8 @@ "damage_types": [], "duration": "until cured or dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15706,7 +17203,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15722,7 +17221,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15737,7 +17237,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15753,7 +17255,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15768,7 +17271,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15784,7 +17289,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15799,7 +17305,9 @@ "school": "evocation", "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "20 feet", + "range_text": "20 feet", + "range": 20.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15817,7 +17325,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -15832,7 +17341,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15850,7 +17361,8 @@ ], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -15865,7 +17377,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15881,7 +17395,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15896,7 +17411,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15912,7 +17429,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15927,7 +17445,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "400 feet", + "range_text": "400 feet", + "range": 400.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -15943,7 +17463,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15958,7 +17479,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -15974,7 +17497,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -15989,7 +17513,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -16005,7 +17531,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -16020,7 +17547,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -16036,7 +17565,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -16051,7 +17581,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -16065,9 +17597,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": "1 minute.", + "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -16082,7 +17615,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -16098,7 +17633,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -16113,7 +17649,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", "target_type": "object", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -16131,7 +17669,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -16146,7 +17685,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -16162,7 +17703,8 @@ "damage_types": [], "duration": "1d10 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/kobold-press/deepmx/Document.json b/data/v2/kobold-press/deepmx/Document.json index 93c80f5b..5cb2a8ad 100644 --- a/data/v2/kobold-press/deepmx/Document.json +++ b/data/v2/kobold-press/deepmx/Document.json @@ -10,6 +10,8 @@ "author": "Not sure.", "published_at": "2024-02-14T19:02:02", "permalink": "https://koboldpress.com/deepmagic", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/deepmx/Spell.json b/data/v2/kobold-press/deepmx/Spell.json index 9f75141f..e962d7af 100644 --- a/data/v2/kobold-press/deepmx/Spell.json +++ b/data/v2/kobold-press/deepmx/Spell.json @@ -10,7 +10,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -41,7 +44,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -57,7 +62,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -72,7 +78,9 @@ "school": "transmutation", "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -88,7 +96,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -103,7 +112,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -119,7 +130,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -134,7 +146,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -150,7 +164,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -165,7 +180,9 @@ "school": "conjuration", "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -181,7 +198,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -196,7 +214,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -212,7 +232,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -227,7 +248,9 @@ "school": "enchantment", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -243,7 +266,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -258,7 +282,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -274,7 +300,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -289,7 +316,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -305,7 +334,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -320,7 +350,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -336,7 +368,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -351,7 +384,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -369,7 +404,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -384,7 +420,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -400,7 +438,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -415,7 +454,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -431,7 +472,8 @@ "damage_types": [], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -446,7 +488,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -462,7 +506,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -477,7 +522,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -493,7 +540,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -508,7 +556,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -524,7 +574,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -539,7 +590,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -555,7 +608,8 @@ "damage_types": [], "duration": "24 hours or until the target attempts a third death saving throw", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -570,7 +624,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -586,7 +642,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -601,7 +658,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -619,7 +678,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -634,7 +694,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -652,7 +714,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -667,7 +730,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -683,7 +748,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -698,7 +764,9 @@ "school": "necromancy", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -714,7 +782,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -729,7 +798,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -745,7 +816,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -760,7 +832,9 @@ "school": "transmutation", "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -776,7 +850,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -791,7 +866,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -807,7 +884,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -822,7 +900,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -838,7 +918,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -853,7 +934,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -869,7 +952,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -884,7 +968,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "50 feet", + "range_text": "50 feet", + "range": 50.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -900,7 +986,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -915,7 +1002,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -933,7 +1022,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -948,7 +1038,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -966,7 +1058,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -981,7 +1074,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -997,7 +1092,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1012,7 +1108,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Special", + "range_text": "Special", + "range": 0.2, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1030,7 +1128,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -1045,7 +1144,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1063,7 +1164,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -1078,7 +1180,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1094,7 +1198,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1109,7 +1214,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1125,7 +1232,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1140,7 +1248,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1156,7 +1266,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1171,7 +1282,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1187,7 +1300,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1202,7 +1316,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1218,7 +1334,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1233,7 +1350,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1249,7 +1368,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1264,7 +1384,9 @@ "school": "transmutation", "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1280,7 +1402,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1295,7 +1418,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1311,7 +1436,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1326,7 +1452,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1344,7 +1472,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1359,7 +1488,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1375,7 +1506,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1390,7 +1522,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1408,7 +1542,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1423,7 +1558,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1439,7 +1576,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1454,7 +1592,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1470,7 +1610,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1485,7 +1626,9 @@ "school": "transmutation", "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1501,7 +1644,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1516,7 +1660,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1532,7 +1678,8 @@ "damage_types": [], "duration": "2-12 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1547,7 +1694,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1563,7 +1712,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1578,7 +1728,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -1594,7 +1746,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1609,7 +1762,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1625,7 +1780,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1640,7 +1796,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1656,7 +1814,8 @@ "damage_types": [], "duration": "2 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1671,7 +1830,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "reaction", "verbal": true, @@ -1687,7 +1848,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1702,7 +1864,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1718,7 +1882,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1733,7 +1898,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1749,7 +1916,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1764,7 +1932,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1780,7 +1950,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1795,7 +1966,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1811,7 +1984,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1826,7 +2000,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -1842,7 +2018,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1857,7 +2034,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1873,7 +2052,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1888,7 +2068,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1904,7 +2086,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1919,7 +2102,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1935,7 +2120,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1950,7 +2136,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1966,7 +2154,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1981,7 +2170,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1997,7 +2188,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/kobold-press/kp/Document.json b/data/v2/kobold-press/kp/Document.json index 51c02353..b31892ba 100644 --- a/data/v2/kobold-press/kp/Document.json +++ b/data/v2/kobold-press/kp/Document.json @@ -10,6 +10,8 @@ "author": "Various", "published_at": "2024-02-14T19:53:41", "permalink": "https://koboldpress.com/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/kp/Spell.json b/data/v2/kobold-press/kp/Spell.json index faa0a69e..0c19840e 100644 --- a/data/v2/kobold-press/kp/Spell.json +++ b/data/v2/kobold-press/kp/Spell.json @@ -10,7 +10,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The spell ends if you or any target of this spell attacks or casts a spell.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -41,7 +44,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -55,9 +60,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": "special (see below)", + "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -72,7 +78,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -88,7 +96,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -103,7 +112,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -119,7 +130,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -134,7 +146,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -150,7 +164,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -165,7 +180,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -181,7 +198,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -196,7 +214,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the depth of the pit by 10 feet for each slot level above 3rd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -212,7 +232,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -227,7 +248,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -243,7 +266,8 @@ "damage_types": [], "duration": "until destroyed", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -258,7 +282,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 9th level or higher, its duration is concentration, up to 1 hour.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -274,7 +300,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "line", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -289,7 +316,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, one additional creature can be targeted for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -307,7 +336,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -322,7 +352,9 @@ "school": "enchantment", "higher_level": "", "target_type": "object", - "range": "1000 feet", + "range_text": "1000 feet", + "range": 1000.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -338,7 +370,8 @@ "damage_types": [], "duration": "permanent", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -353,7 +386,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -371,7 +406,8 @@ ], "duration": "instantaneous", "shape_type": "line", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -386,7 +422,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, its duration is concentration, up to 1 hour.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -402,7 +440,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "line", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -417,7 +456,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -433,7 +474,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -448,7 +490,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -464,7 +508,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -479,7 +524,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -497,7 +544,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -512,7 +560,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -528,7 +578,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -543,7 +594,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -559,7 +612,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -574,7 +628,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, increase the distance affected creatures are thrown into the air by 10 feet for each slot above 3rd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -592,7 +648,8 @@ ], "duration": "instantaneous", "shape_type": "cylinder", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -607,7 +664,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can specify a destination up to 100 years in the past for each slot level beyond 5th.", "target_type": "object", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -623,7 +682,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -638,7 +698,9 @@ "school": "transmutation", "higher_level": "If the spell is cast with a 4th-level spell slot, it creates a +2 spear. A 6th-level spell slot creates a +3 spear.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -654,7 +716,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -669,7 +732,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -685,7 +750,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -700,7 +766,9 @@ "school": "abjuration", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -716,7 +784,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -731,7 +800,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -747,7 +818,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -762,7 +834,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -778,7 +852,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -793,7 +868,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -809,7 +886,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -824,7 +902,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -840,7 +920,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -855,7 +936,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage you take at the start of each of your turns and the bonus damage you do both increase by 1 for each slot level above 2nd, and the duration increases by 1 round for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -871,7 +954,8 @@ "damage_types": [], "duration": "3 rounds", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -886,7 +970,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -902,7 +988,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -917,7 +1004,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -933,7 +1022,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -948,7 +1038,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "10 miles", + "range_text": "10 miles", + "range": 10.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -964,7 +1056,8 @@ "damage_types": [], "duration": "10 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/kobold-press/toh/Document.json b/data/v2/kobold-press/toh/Document.json index b91d1f03..66e9cde0 100644 --- a/data/v2/kobold-press/toh/Document.json +++ b/data/v2/kobold-press/toh/Document.json @@ -10,6 +10,8 @@ "author": "Kelly Pawlik, Ben Mcfarland, and Briand Suskind", "published_at": "2022-06-01T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/tome-of-heroes-for-5th-edition/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/toh/Spell.json b/data/v2/kobold-press/toh/Spell.json index 586b75b7..913bbcfc 100644 --- a/data/v2/kobold-press/toh/Spell.json +++ b/data/v2/kobold-press/toh/Spell.json @@ -10,7 +10,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the length of the passage and the distance you can place the second trapdoor increases by 10 feet for each slot level above 3rd.", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -41,7 +44,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -57,7 +62,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -72,7 +78,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -88,7 +96,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -103,7 +112,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -119,7 +130,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -134,7 +146,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each spell slot above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -150,7 +164,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -165,7 +180,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -181,7 +198,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -196,7 +214,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -212,7 +232,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -227,7 +248,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -243,7 +266,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -258,7 +282,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the square feet of floor space you can bolster increases by 500 and the damage threshold increases by 2 for each slot level above 3rd.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -274,7 +300,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -289,7 +316,9 @@ "school": "conjuration", "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is 1 minute, and the spell doesn't require concentration.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -305,7 +334,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -320,7 +350,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -338,7 +370,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -353,7 +386,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -369,7 +404,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -384,7 +420,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -400,7 +438,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -415,7 +454,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -431,7 +472,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -446,7 +488,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -462,7 +506,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -477,7 +522,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d10 for each slot level above 7th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -495,7 +542,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -510,7 +558,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -526,7 +576,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -541,7 +592,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -559,7 +612,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -574,7 +628,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -590,7 +646,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -605,7 +662,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -623,7 +682,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -638,7 +698,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -656,7 +718,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -671,7 +734,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -687,7 +752,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -702,7 +768,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -718,7 +786,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -733,7 +802,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of a higher level, the duration of the slumber increases to 7 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year with a 9th-level spell slot.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -749,7 +820,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -764,7 +836,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -782,7 +856,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -797,7 +872,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -813,7 +890,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -828,7 +906,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can enchant an additional pound of food or gallon of drink for each slot level over 3rd.", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -844,7 +924,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -859,7 +940,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can imbue one additional weapon for each slot level above 2nd.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -875,7 +958,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -890,7 +974,9 @@ "school": "conjuration", "higher_level": "If you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The targets must be within 30 feet of each other when you target them, but they don't need to be teleported to the same locations.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -906,7 +992,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -921,7 +1008,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -939,7 +1028,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -954,7 +1044,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional object for each slot level above 2nd. The objects must be within 30 feet of each other when you target them.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -970,7 +1062,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -985,7 +1078,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -1003,7 +1098,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1018,7 +1114,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1034,7 +1132,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1049,7 +1148,9 @@ "school": "transmutation", "higher_level": "When you cast this spell at 4th level or higher, you can increase the width of the hillock by 5 feet or the length by 10 feet for each slot above 3rd.", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1065,7 +1166,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1080,7 +1182,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1098,7 +1202,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1113,7 +1218,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1129,7 +1236,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1144,7 +1252,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1162,7 +1272,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1177,7 +1288,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1193,7 +1306,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1208,7 +1322,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1224,7 +1340,8 @@ "damage_types": [], "duration": "up to 1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1239,7 +1356,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the maximum distance between the tethered creatures increases by 5 feet, and the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1257,7 +1376,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1272,7 +1392,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1288,7 +1410,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1303,7 +1426,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1321,7 +1446,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1336,7 +1462,9 @@ "school": "divination", "higher_level": "If you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the duration is 1 year. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1352,7 +1480,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1367,7 +1496,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1383,7 +1514,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1398,7 +1530,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1414,7 +1548,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1429,7 +1564,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1447,7 +1584,8 @@ ], "duration": "7 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1462,7 +1600,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "40 feet", + "range_text": "40 feet", + "range": 40.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1480,7 +1620,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1495,7 +1636,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1511,7 +1654,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1526,7 +1670,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1542,7 +1688,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1557,7 +1704,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1573,7 +1722,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -1588,7 +1738,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -1604,7 +1756,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1619,7 +1772,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1635,7 +1790,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1650,7 +1806,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each slot level above 1st.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1666,7 +1824,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1681,7 +1840,9 @@ "school": "abjuration", "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the target doesn't have disadvantage on its first death saving throw.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1697,7 +1858,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1712,7 +1874,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1728,7 +1892,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1743,7 +1908,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -1759,7 +1926,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1774,7 +1942,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each spell slot above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1790,7 +1960,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1805,7 +1976,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10 for each slot level above 6th.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1823,7 +1996,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -1838,7 +2012,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1854,7 +2030,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1869,7 +2046,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the range increases by 100 feet and the duration increases by 1 round for each slot level above 3rd. Each round added to the duration allows one additional creature to move through the portal before the spell ends.", "target_type": "creature", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1885,7 +2064,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1900,7 +2080,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional portal for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1916,7 +2098,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1931,7 +2114,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance you can fling the target increases by 5 feet, and the damage from impacting a surface or creature increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1949,7 +2134,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1964,7 +2150,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1982,7 +2170,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1997,7 +2186,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the healing increases by 1d8 for each slot level above 4th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2013,7 +2204,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -2028,7 +2220,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd. This increase allows the beam to jump an additional time, reducing the damage it deals by 1d6 with each bounce as normal.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2046,7 +2240,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2061,7 +2256,9 @@ "school": "evocation", "higher_level": "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.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2077,7 +2274,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2092,7 +2290,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2108,7 +2308,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2123,7 +2324,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the cube of debris and objects you can halt increases by 5 feet for each slot level above 1st.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2139,7 +2342,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -2154,7 +2358,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2170,7 +2376,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2185,7 +2392,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2201,7 +2410,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2216,7 +2426,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -2232,7 +2444,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2247,7 +2460,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2263,7 +2478,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -2278,7 +2494,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, this spell no longer causes creatures to have advantage against the spell's targets.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2294,7 +2512,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2309,7 +2528,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2327,7 +2548,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2342,7 +2564,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 minute. When you use a spell slot of 5th level or higher, the duration is concentration, up to 10 minutes. When you use a spell slot of 7th level or higher, the duration is concentration, up to 1 hour.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2358,7 +2582,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2373,7 +2598,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2389,7 +2616,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2404,7 +2632,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2422,7 +2652,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2437,7 +2668,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -2453,7 +2686,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2468,7 +2702,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the number of barriers you create increases by two for each slot level above 3rd.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2484,7 +2720,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": true } }, @@ -2499,7 +2736,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -2517,7 +2756,8 @@ ], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2532,7 +2772,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8, and you can create one additional gout of steam for each slot level above 3rd. A creature in the area of more than one gout of steam is affected only once.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2550,7 +2792,8 @@ ], "duration": "1 minute", "shape_type": "cylinder", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": true } }, @@ -2565,7 +2808,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2581,7 +2826,8 @@ "damage_types": [], "duration": "up to 1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2596,7 +2842,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the explosion damage increases by 1d10 for each slot level above 4th. In addition, when you cast this spell using a spell slot of 6th level or higher, the duration is 1 hour. When you cast this spell using a spell slot of 8th level or higher, the duration is 8 hours. Using a spell slot of 6th level or higher grants a duration that doesn't require concentration.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2614,7 +2862,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2629,7 +2878,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2647,7 +2898,8 @@ ], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -2662,7 +2914,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2680,7 +2934,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2695,7 +2950,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2711,7 +2968,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2726,7 +2984,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2742,7 +3002,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2757,7 +3018,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2773,7 +3036,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2788,7 +3052,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2804,7 +3070,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2819,7 +3086,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -2835,7 +3104,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2850,7 +3120,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2866,7 +3138,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/kobold-press/vom/Document.json b/data/v2/kobold-press/vom/Document.json index 4d9ca85b..fb960cdc 100644 --- a/data/v2/kobold-press/vom/Document.json +++ b/data/v2/kobold-press/vom/Document.json @@ -10,6 +10,8 @@ "author": "Phillip Larwood, Jeff Lee, and Christopher Lockey", "published_at": "2021-11-20T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/vault-of-magic-for-5th-edition/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/wz/Document.json b/data/v2/kobold-press/wz/Document.json index 29e16eb7..f90c69cb 100644 --- a/data/v2/kobold-press/wz/Document.json +++ b/data/v2/kobold-press/wz/Document.json @@ -10,6 +10,8 @@ "author": "Woflgang Baur, others.", "published_at": "2017-08-02T00:00:00", "permalink": "https://koboldpress.com/kpstore/product-category/all-products/warlock-5th-edition-dnd/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/kobold-press/wz/Spell.json b/data/v2/kobold-press/wz/Spell.json index e88fb311..6a1b2356 100644 --- a/data/v2/kobold-press/wz/Spell.json +++ b/data/v2/kobold-press/wz/Spell.json @@ -10,7 +10,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -41,7 +44,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -57,7 +62,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -72,7 +78,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -88,7 +96,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -103,7 +112,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -119,7 +130,8 @@ "damage_types": [], "duration": "5 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -134,7 +146,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -152,7 +166,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -167,7 +182,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -183,7 +200,8 @@ "damage_types": [], "duration": "1 day", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -198,7 +216,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -214,7 +234,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -229,7 +250,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -245,7 +268,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -260,7 +284,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -278,7 +304,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -293,7 +320,9 @@ "school": "conjuration", "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", "target_type": "area", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -309,7 +338,8 @@ "damage_types": [], "duration": "6 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -324,7 +354,9 @@ "school": "necromancy", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -338,9 +370,10 @@ "attack_roll": false, "damage_roll": "", "damage_types": [], - "duration": "concentration", + "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -355,7 +388,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -371,7 +406,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -386,7 +422,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -402,7 +440,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -417,7 +456,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -433,7 +474,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -448,7 +490,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -464,7 +508,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -479,7 +524,9 @@ "school": "illusion", "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -495,7 +542,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -510,7 +558,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -526,7 +576,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -541,7 +592,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", "target_type": "creature", - "range": "50 feet", + "range_text": "50 feet", + "range": 50.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -557,7 +610,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -572,7 +626,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -588,7 +644,8 @@ "damage_types": [], "duration": "up to 1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -603,7 +660,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": false, @@ -619,7 +678,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -634,7 +694,9 @@ "school": "illusion", "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", "target_type": "object", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -650,7 +712,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -665,7 +728,9 @@ "school": "enchantment", "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -681,7 +746,8 @@ "damage_types": [], "duration": "1 hour/caster level", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -696,7 +762,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -712,7 +780,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -727,7 +796,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -743,7 +814,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -758,7 +830,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -776,7 +850,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -791,7 +866,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -807,7 +884,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -822,7 +900,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -838,7 +918,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -853,7 +934,9 @@ "school": "necromancy", "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -869,7 +952,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -884,7 +968,9 @@ "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -900,7 +986,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -915,7 +1002,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", "target_type": "creature", - "range": "180 feet", + "range_text": "180 feet", + "range": 180.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -933,7 +1022,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -948,7 +1038,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -966,7 +1058,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -981,7 +1074,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -997,7 +1092,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1012,7 +1108,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1028,7 +1126,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1043,7 +1142,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "25 feet", + "range_text": "25 feet", + "range": 25.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1059,7 +1160,8 @@ "damage_types": [], "duration": "concentration + 1 round", "shape_type": "line", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -1074,7 +1176,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1092,7 +1196,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1107,7 +1212,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -1123,7 +1230,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1138,7 +1246,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1154,7 +1264,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1169,7 +1280,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1185,7 +1298,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1200,7 +1314,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1216,7 +1332,8 @@ "damage_types": [], "duration": "1 year", "shape_type": "sphere", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -1231,7 +1348,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1247,7 +1366,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1262,7 +1382,9 @@ "school": "evocation", "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1280,7 +1402,8 @@ ], "duration": "10 minutes", "shape_type": "line", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -1295,7 +1418,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1311,7 +1436,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1326,7 +1452,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1344,7 +1472,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/open5e/open5e/Document.json b/data/v2/open5e/open5e/Document.json index b5cd4684..cf508a80 100644 --- a/data/v2/open5e/open5e/Document.json +++ b/data/v2/open5e/open5e/Document.json @@ -10,6 +10,8 @@ "author": "Ean Moody, Various", "published_at": "2024-02-15T02:15:19", "permalink": "https://open5e.com/", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "ogl-10a" ] diff --git a/data/v2/open5e/open5e/Spell.json b/data/v2/open5e/open5e/Spell.json index 31eb5f88..abf34837 100644 --- a/data/v2/open5e/open5e/Spell.json +++ b/data/v2/open5e/open5e/Spell.json @@ -10,7 +10,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -26,7 +28,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -41,7 +44,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -59,7 +64,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } } diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index 0d2dc308..3f1d9e60 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -40,6 +40,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 135, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "aberration", "category": "Monsters", "alignment": "lawful evil" @@ -86,6 +93,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 195, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -132,6 +146,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 225, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 30.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -178,6 +199,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 172, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 40.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -224,6 +252,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 212, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -270,6 +305,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 184, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -316,6 +358,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 256, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -362,6 +411,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 207, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -408,6 +464,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 256, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -454,6 +517,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 243, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -500,6 +570,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 200, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 30.0, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -546,6 +623,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 90, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -592,6 +676,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 367, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -638,6 +729,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 481, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 40.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -684,6 +782,13 @@ "weight": "0.000", "armor_class": 20, "hit_points": 297, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 40.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -730,6 +835,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 444, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -776,6 +888,13 @@ "weight": "0.000", "armor_class": 21, "hit_points": 350, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -822,6 +941,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 546, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -868,6 +994,13 @@ "weight": "0.000", "armor_class": 21, "hit_points": 385, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -914,6 +1047,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 546, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -960,6 +1100,13 @@ "weight": "0.000", "armor_class": 22, "hit_points": 487, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -1006,6 +1153,13 @@ "weight": "0.000", "armor_class": 20, "hit_points": 333, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 40.0, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -1052,6 +1206,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 199, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters; Sphinxes", "alignment": "lawful neutral" @@ -1098,6 +1259,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 33, + "walk": 25.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -1144,6 +1312,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 39, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 10.0, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1190,6 +1365,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 39, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "lawful neutral" @@ -1236,6 +1418,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 262, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -1282,6 +1471,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 110, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1328,6 +1524,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 52, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1374,6 +1577,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 52, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1420,6 +1630,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 168, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -1466,6 +1683,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 33, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -1512,6 +1736,13 @@ "weight": "0.000", "armor_class": 7, "hit_points": 85, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 20.0, + "swim": null, "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -1558,6 +1789,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 52, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": 15.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -1604,6 +1842,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 142, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1650,6 +1895,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 16, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": 15.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -1696,6 +1948,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 32, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -1742,6 +2001,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 27, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -1788,6 +2054,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 94, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 40.0, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1834,6 +2107,13 @@ "weight": "600.000", "armor_class": 9, "hit_points": 15, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -1880,6 +2160,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 45, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral good" @@ -1926,6 +2213,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 85, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1972,6 +2266,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 114, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -2018,6 +2319,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 93, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "aberration", "category": "Monsters", "alignment": "chaotic evil" @@ -2064,6 +2372,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 133, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -2110,6 +2425,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 78, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "aberration", "category": "Monsters", "alignment": "chaotic neutral" @@ -2156,6 +2478,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 200, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters; Giants", "alignment": "neutral good (50%) or neutral evil (50%)" @@ -2202,6 +2531,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 27, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -2248,6 +2584,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": 30.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -2294,6 +2637,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 97, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters", "alignment": "lawful good" @@ -2340,6 +2690,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 22, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -2386,6 +2743,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 136, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -2432,6 +2796,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 161, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Genies", "alignment": "chaotic good" @@ -2478,6 +2849,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 11, + "walk": 0.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -2524,6 +2902,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 52, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -2570,6 +2955,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 19, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -2616,6 +3008,13 @@ "weight": "0.000", "armor_class": 20, "hit_points": 341, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters", "alignment": "neutral" @@ -2662,6 +3061,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 18, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -2708,6 +3114,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 123, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 30.0, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -2754,6 +3167,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fey", "category": "Monsters", "alignment": "neutral" @@ -2800,6 +3220,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 26, + "walk": 25.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -2846,6 +3273,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 17, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -2892,6 +3326,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 126, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 30.0, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -2938,6 +3379,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 200, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Genies", "alignment": "lawful evil" @@ -2984,6 +3432,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 76, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -3030,6 +3485,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 13, + "walk": 0.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -3076,6 +3538,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 153, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -3122,6 +3591,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 44, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 30.0, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -3168,6 +3644,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 85, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -3214,6 +3697,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 102, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -3260,6 +3750,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 162, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters; Giants", "alignment": "lawful evil" @@ -3306,6 +3803,13 @@ "weight": "0.000", "armor_class": 9, "hit_points": 93, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Golems", "alignment": "neutral" @@ -3352,6 +3856,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 17, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 50.0, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -3398,6 +3909,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 138, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters; Giants", "alignment": "neutral evil" @@ -3444,6 +3962,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 52, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "chaotic evil" @@ -3490,6 +4015,13 @@ "weight": "0.000", "armor_class": 6, "hit_points": 84, + "walk": 15.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -3536,6 +4068,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 36, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Ghouls", "alignment": "chaotic evil" @@ -3582,6 +4121,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 45, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "any alignment" @@ -3628,6 +4174,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Ghouls", "alignment": "chaotic evil" @@ -3674,6 +4227,13 @@ "weight": "0.000", "armor_class": 9, "hit_points": 67, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 10.0, "type": "aberration", "category": "Monsters", "alignment": "neutral" @@ -3720,6 +4280,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 157, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -3766,6 +4333,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -3812,6 +4386,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 16, + "walk": 0.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "neutral good" @@ -3858,6 +4439,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 7, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -3904,6 +4492,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 60, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -3950,6 +4545,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 114, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -3996,6 +4598,13 @@ "weight": "0.000", "armor_class": 8, "hit_points": 22, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 10.0, + "swim": null, "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -4042,6 +4651,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 38, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -4088,6 +4704,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 82, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fey", "category": "Monsters; Hags", "alignment": "neutral evil" @@ -4134,6 +4757,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 27, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 30.0, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -4180,6 +4810,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 59, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4226,6 +4863,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 11, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -4272,6 +4916,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 127, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters; Nagas", "alignment": "lawful good" @@ -4318,6 +4969,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 136, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters; Sphinxes", "alignment": "lawful neutral" @@ -4364,6 +5022,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 65, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Half-Dragon Template", "alignment": "any alignment" @@ -4410,6 +5075,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 38, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -4456,6 +5128,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 45, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters", "alignment": "lawful evil" @@ -4502,6 +5181,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 136, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -4548,6 +5234,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 105, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters; Giants", "alignment": "chaotic evil" @@ -4594,6 +5287,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 19, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4640,6 +5340,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 11, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -4686,6 +5393,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 5, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters", "alignment": "neutral" @@ -4732,6 +5446,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 178, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4778,6 +5499,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 172, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4824,6 +5552,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 180, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4870,6 +5605,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 21, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -4916,6 +5658,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 10, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4962,6 +5711,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 104, + "walk": 50.0, + "unit": null, + "hover": true, + "fly": 50.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "neutral" @@ -5008,6 +5764,13 @@ "weight": "0.000", "armor_class": 20, "hit_points": 210, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -5054,6 +5817,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 5, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -5100,6 +5870,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 472, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 60.0, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5146,6 +5923,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 97, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5192,6 +5976,13 @@ "weight": "0.000", "armor_class": 7, "hit_points": 13, + "walk": 15.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -5238,6 +6029,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 135, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "any evil alignment" @@ -5284,6 +6082,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 30.0, "type": "humanoid", "category": "Monsters", "alignment": "neutral" @@ -5330,6 +6135,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -5376,6 +6188,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 9, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "chaotic neutral" @@ -5422,6 +6241,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 68, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 50.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "lawful evil" @@ -5468,6 +6294,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 189, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -5514,6 +6347,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 5, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -5560,6 +6400,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 127, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "lawful evil" @@ -5606,6 +6453,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 11, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "humanoid", "category": "Monsters", "alignment": "neutral" @@ -5652,6 +6506,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 45, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5698,6 +6559,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 58, + "walk": 15.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -5744,6 +6612,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 76, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5790,6 +6665,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 67, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -5836,6 +6718,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 11, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -5882,6 +6771,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 58, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Mummies", "alignment": "lawful evil" @@ -5928,6 +6824,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 97, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Mummies", "alignment": "lawful evil" @@ -5974,6 +6877,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 184, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -6020,6 +6930,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 112, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Hags", "alignment": "neutral evil" @@ -6066,6 +6983,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 68, + "walk": 60.0, + "unit": null, + "hover": false, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters", "alignment": "neutral evil" @@ -6112,6 +7036,13 @@ "weight": "0.000", "armor_class": 8, "hit_points": 45, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 10.0, + "swim": null, "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -6158,6 +7089,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 59, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -6204,6 +7142,13 @@ "weight": "0.000", "armor_class": 8, "hit_points": 85, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Zombies", "alignment": "neutral evil" @@ -6250,6 +7195,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 110, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters", "alignment": "lawful evil" @@ -6296,6 +7248,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 15, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -6342,6 +7301,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 114, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "aberration", "category": "Monsters", "alignment": "neutral" @@ -6388,6 +7354,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 59, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6434,6 +7407,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 59, + "walk": 60.0, + "unit": null, + "hover": false, + "fly": 90.0, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters", "alignment": "chaotic good" @@ -6480,6 +7460,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 300, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -6526,6 +7513,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 200, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 120.0, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -6572,6 +7566,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 68, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -6618,6 +7619,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 11, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -6664,6 +7672,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 7, + "walk": 15.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters", "alignment": "neutral good" @@ -6710,6 +7725,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 247, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 30.0, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6756,6 +7778,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 7, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -6802,6 +7831,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 110, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters", "alignment": "lawful evil" @@ -6848,6 +7884,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 75, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": 30.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -6894,6 +7937,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 195, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 20.0, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6940,6 +7990,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 13, + "walk": 60.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -6986,6 +8043,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 248, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 120.0, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -7032,6 +8096,13 @@ "weight": "0.000", "armor_class": 20, "hit_points": 93, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": 10.0, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -7078,6 +8149,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 33, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -7124,6 +8202,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 27, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -7170,6 +8255,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 22, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -7216,6 +8308,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 90, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "neutral evil" @@ -7262,6 +8361,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 31, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "fey", "category": "Monsters", "alignment": "chaotic neutral" @@ -7308,6 +8414,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 52, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "fey", "category": "Monsters; Hags", "alignment": "chaotic evil" @@ -7354,6 +8467,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 16, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -7400,6 +8520,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 136, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 20.0, "type": "plant", "category": "Monsters", "alignment": "unaligned" @@ -7446,6 +8573,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 142, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters", "alignment": "unaligned" @@ -7492,6 +8626,13 @@ "weight": "0.000", "armor_class": 5, "hit_points": 13, + "walk": 0.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "plant", "category": "Monsters; Fungi", "alignment": "unaligned" @@ -7538,6 +8679,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 45, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -7584,6 +8732,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 13, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -7630,6 +8785,13 @@ "weight": "0.000", "armor_class": 21, "hit_points": 243, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": 150.0, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -7676,6 +8838,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 22, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 50.0, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -7722,6 +8891,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 75, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters; Nagas", "alignment": "chaotic evil" @@ -7768,6 +8944,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 2, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fey", "category": "Monsters", "alignment": "neutral good" @@ -7814,6 +8997,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 21, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 30.0, + "burrow": null, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -7860,6 +9050,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 2, + "walk": 10.0, + "unit": null, + "hover": false, + "fly": 40.0, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Monsters", "alignment": "unaligned" @@ -7906,6 +9103,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 126, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters; Giants", "alignment": "neutral" @@ -7952,6 +9156,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 178, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -7998,6 +9209,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 230, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 50.0, "type": "giant", "category": "Monsters; Giants", "alignment": "chaotic good" @@ -8044,6 +9262,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 66, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters", "alignment": "neutral evil" @@ -8090,6 +9315,13 @@ "weight": "0.000", "armor_class": 25, "hit_points": 676, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -8136,6 +9368,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 138, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "plant", "category": "Monsters", "alignment": "chaotic good" @@ -8182,6 +9421,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 95, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -8228,6 +9474,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 84, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -8274,6 +9527,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 136, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -8320,6 +9580,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 67, + "walk": 50.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "celestial", "category": "Monsters", "alignment": "lawful good" @@ -8366,6 +9633,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 144, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Vampires", "alignment": "lawful evil" @@ -8412,6 +9686,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 82, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Vampires", "alignment": "neutral evil" @@ -8458,6 +9739,13 @@ "weight": "0.000", "armor_class": 5, "hit_points": 18, + "walk": 5.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "plant", "category": "Monsters; Fungi", "alignment": "unaligned" @@ -8504,6 +9792,13 @@ "weight": "0.000", "armor_class": 15, "hit_points": 104, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -8550,6 +9845,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 19, + "walk": 60.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -8596,6 +9898,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 22, + "walk": 60.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -8642,6 +9951,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 114, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": 90.0, "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -8688,6 +10004,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 135, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral good" @@ -8734,6 +10057,13 @@ "weight": "0.000", "armor_class": 10, "hit_points": 78, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral evil" @@ -8780,6 +10110,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 33, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "lawful evil" @@ -8826,6 +10163,13 @@ "weight": "0.000", "armor_class": 12, "hit_points": 120, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral" @@ -8872,6 +10216,13 @@ "weight": "0.000", "armor_class": 11, "hit_points": 58, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "chaotic evil" @@ -8918,6 +10269,13 @@ "weight": "0.000", "armor_class": 16, "hit_points": 32, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": 60.0, + "burrow": 15.0, + "climb": null, + "swim": 30.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -8964,6 +10322,13 @@ "weight": "0.000", "armor_class": 14, "hit_points": 45, + "walk": 30.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "neutral evil" @@ -9010,6 +10375,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 22, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 50.0, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -9056,6 +10428,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 67, + "walk": 0.0, + "unit": null, + "hover": true, + "fly": 60.0, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters", "alignment": "neutral evil" @@ -9102,6 +10481,13 @@ "weight": "0.000", "armor_class": 13, "hit_points": 110, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters", "alignment": "unaligned" @@ -9148,6 +10534,13 @@ "weight": "0.000", "armor_class": 19, "hit_points": 73, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": 20.0, + "climb": null, + "swim": null, "type": "elemental", "category": "Monsters", "alignment": "neutral" @@ -9194,6 +10587,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 127, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9240,6 +10640,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 152, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 40.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -9286,6 +10693,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 110, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 20.0, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -9332,6 +10746,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 142, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9378,6 +10799,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 119, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -9424,6 +10852,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 178, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9470,6 +10905,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 136, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -9516,6 +10958,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 178, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": 40.0, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9562,6 +11011,13 @@ "weight": "0.000", "armor_class": 18, "hit_points": 168, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": null, + "climb": null, + "swim": null, "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9608,6 +11064,13 @@ "weight": "0.000", "armor_class": 17, "hit_points": 133, + "walk": 40.0, + "unit": null, + "hover": false, + "fly": 80.0, + "burrow": 20.0, + "climb": null, + "swim": 40.0, "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9654,6 +11117,13 @@ "weight": "0.000", "armor_class": 8, "hit_points": 22, + "walk": 20.0, + "unit": null, + "hover": false, + "fly": null, + "burrow": null, + "climb": null, + "swim": null, "type": "undead", "category": "Monsters; Zombies", "alignment": "neutral evil" diff --git a/data/v2/wizards-of-the-coast/srd/Document.json b/data/v2/wizards-of-the-coast/srd/Document.json index 816f6a1c..a85a666c 100644 --- a/data/v2/wizards-of-the-coast/srd/Document.json +++ b/data/v2/wizards-of-the-coast/srd/Document.json @@ -10,6 +10,8 @@ "author": "Mike Mearls, Jeremy Crawford, Chris Perkins, Rodney Thompson, Peter Lee, James Wyatt, Robert J. Schwalb, Bruce R. Cordell, Chris Sims, and Steve Townshend, based on original material by E. Gary Gygax and Dave Arneson.", "published_at": "2023-01-23T00:00:00", "permalink": "https://dnd.wizards.com/resources/systems-reference-document", + "stats_expected": null, + "distance_unit": "feet", "licenses": [ "cc-by-40", "ogl-10a" diff --git a/data/v2/wizards-of-the-coast/srd/Spell.json b/data/v2/wizards-of-the-coast/srd/Spell.json index 88470161..c2f4a963 100644 --- a/data/v2/wizards-of-the-coast/srd/Spell.json +++ b/data/v2/wizards-of-the-coast/srd/Spell.json @@ -10,7 +10,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -28,7 +30,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -43,7 +46,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -59,7 +64,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -74,7 +80,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -90,7 +98,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -105,7 +114,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -121,7 +132,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -136,7 +148,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -152,7 +166,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -167,7 +182,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -183,7 +200,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -198,7 +216,9 @@ "school": "enchantment", "higher_level": "If you cast this spell using a spell slot of 3nd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -214,7 +234,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -229,7 +250,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -245,7 +268,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -260,7 +284,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -276,7 +302,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -291,7 +318,9 @@ "school": "transmutation", "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -307,7 +336,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -322,7 +352,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -338,7 +370,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -353,7 +386,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -369,7 +404,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "sphere", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -384,7 +420,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -400,7 +438,8 @@ "damage_types": [], "duration": "10 days", "shape_type": "cube", - "shape_magnitude": 200, + "shape_size": 200.0, + "shape_size_unit": null, "concentration": false } }, @@ -415,7 +454,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -431,7 +472,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -446,7 +488,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -464,7 +508,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -479,7 +524,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -495,7 +542,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -510,7 +558,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -528,7 +578,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -543,7 +594,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -559,7 +612,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -574,7 +628,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -590,7 +646,8 @@ "damage_types": [], "duration": "special", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -605,7 +662,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -621,7 +680,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -636,7 +696,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -652,7 +714,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -667,7 +730,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -683,7 +748,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -698,7 +764,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -714,7 +782,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -729,7 +798,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -745,7 +816,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -760,7 +832,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -776,7 +850,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -791,7 +866,9 @@ "school": "necromancy", "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -807,7 +884,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -822,7 +900,9 @@ "school": "conjuration", "higher_level": "", "target_type": "area", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -840,7 +920,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -855,7 +936,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -873,7 +956,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -888,7 +972,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -904,7 +990,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -919,7 +1006,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -937,7 +1026,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -952,7 +1042,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -968,7 +1060,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -983,7 +1076,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -999,7 +1094,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1014,7 +1110,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1030,7 +1128,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1045,7 +1144,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1061,7 +1162,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1076,7 +1178,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1094,7 +1198,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -1109,7 +1214,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1127,7 +1234,8 @@ ], "duration": "10 minutes", "shape_type": "cylinder", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": true } }, @@ -1142,7 +1250,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1158,7 +1268,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -1173,7 +1284,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.", "target_type": "creature", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1191,7 +1304,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1206,7 +1320,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1222,7 +1338,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1237,7 +1354,9 @@ "school": "necromancy", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1255,7 +1374,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1270,7 +1390,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1288,7 +1410,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -1303,7 +1426,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -1319,7 +1444,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1334,7 +1460,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1350,7 +1478,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1365,7 +1494,9 @@ "school": "conjuration", "higher_level": "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.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1383,7 +1514,8 @@ ], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -1398,7 +1530,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1414,7 +1548,8 @@ "damage_types": [], "duration": "1 round", "shape_type": "cone", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -1429,7 +1564,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1445,7 +1582,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1460,7 +1598,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1476,7 +1616,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1491,7 +1632,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1507,7 +1650,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1522,7 +1666,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1538,7 +1684,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1553,7 +1700,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1569,7 +1718,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1584,7 +1734,9 @@ "school": "evocation", "higher_level": "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.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1602,7 +1754,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -1617,7 +1770,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1633,7 +1788,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1648,7 +1804,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level, and four times as many with a 9th-level slot.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1664,7 +1822,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1679,7 +1838,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1695,7 +1856,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1710,7 +1872,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.", "target_type": "area", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1726,7 +1890,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -1741,7 +1906,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1757,7 +1924,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1772,7 +1940,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1788,7 +1958,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1803,7 +1974,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1819,7 +1992,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1834,7 +2008,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -1850,7 +2026,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1865,7 +2042,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1881,7 +2060,8 @@ "damage_types": [], "duration": "7 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1896,7 +2076,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1912,7 +2094,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1927,7 +2110,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -1943,7 +2128,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -1958,7 +2144,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -1976,7 +2164,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -1991,7 +2180,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2007,7 +2198,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2022,7 +2214,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -2038,7 +2232,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2053,7 +2248,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2069,7 +2266,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2084,7 +2282,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2100,7 +2300,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -2115,7 +2316,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2131,7 +2334,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2146,7 +2350,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2162,7 +2368,8 @@ "damage_types": [], "duration": "special", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -2177,7 +2384,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2193,7 +2402,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2208,7 +2418,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2224,7 +2436,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2239,7 +2452,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2255,7 +2470,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": true } }, @@ -2270,7 +2486,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2286,7 +2504,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2301,7 +2520,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2317,7 +2538,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "sphere", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -2332,7 +2554,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2348,7 +2572,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2363,7 +2588,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2379,7 +2606,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -2394,7 +2622,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -2410,7 +2640,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2425,7 +2656,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2441,7 +2674,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2456,7 +2690,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -2472,7 +2708,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2487,7 +2724,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -2503,7 +2742,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2518,7 +2758,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2534,7 +2776,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2549,7 +2792,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2565,7 +2810,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2580,7 +2826,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2596,7 +2844,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2611,7 +2860,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2629,7 +2880,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2644,7 +2896,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2660,7 +2914,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2675,7 +2930,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2691,7 +2948,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2706,7 +2964,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -2722,7 +2982,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2737,7 +2998,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2753,7 +3016,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2768,7 +3032,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2784,7 +3050,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2799,7 +3066,9 @@ "school": "enchantment", "higher_level": "When you cast this spell with a 5th-­level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-­level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2815,7 +3084,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2830,7 +3100,9 @@ "school": "enchantment", "higher_level": "When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2846,7 +3118,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2861,7 +3134,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2877,7 +3152,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2892,7 +3168,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Special", + "range_text": "Special", + "range": 0.2, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -2910,7 +3188,8 @@ ], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -2925,7 +3204,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2941,7 +3222,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -2956,7 +3238,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "500 feet", + "range_text": "500 feet", + "range": 500.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -2974,7 +3258,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -2989,7 +3274,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3007,7 +3294,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3022,7 +3310,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3038,7 +3328,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3053,7 +3344,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3069,7 +3362,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3084,7 +3378,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3100,7 +3396,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3115,7 +3412,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3131,7 +3430,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3146,7 +3446,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3162,7 +3464,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3177,7 +3480,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3193,7 +3498,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3208,7 +3514,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3224,7 +3532,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3239,7 +3548,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3255,7 +3566,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -3270,7 +3582,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3286,7 +3600,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -3301,7 +3616,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3317,7 +3634,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3332,7 +3650,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional temporary hit points for each slot level above 1st.", "target_type": "point", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3348,7 +3668,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3363,7 +3684,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3379,7 +3702,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cone", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -3394,7 +3718,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "reaction", "verbal": true, @@ -3410,7 +3736,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3425,7 +3752,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3443,7 +3772,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3458,7 +3788,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3474,7 +3806,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3489,7 +3822,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3505,7 +3840,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3520,7 +3856,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3536,7 +3874,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3551,7 +3890,9 @@ "school": "divination", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3567,7 +3908,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3582,7 +3924,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3600,7 +3944,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3615,7 +3960,9 @@ "school": "evocation", "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3633,7 +3980,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3648,7 +3996,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3664,7 +4014,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3679,7 +4030,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3697,7 +4050,8 @@ ], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -3712,7 +4066,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3730,7 +4086,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": false } }, @@ -3745,7 +4102,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3763,7 +4122,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3778,7 +4138,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3796,7 +4158,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3811,7 +4174,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3829,7 +4194,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -3844,7 +4210,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3860,7 +4228,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3875,7 +4244,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -3891,7 +4262,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -3906,7 +4278,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -3922,7 +4296,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -3937,7 +4312,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -3953,7 +4330,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -3968,7 +4346,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -3987,7 +4367,8 @@ ], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4002,7 +4383,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4018,7 +4401,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4033,7 +4417,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4049,7 +4435,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4064,7 +4451,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4080,7 +4469,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4095,7 +4485,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4113,7 +4505,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -4128,7 +4521,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4144,7 +4539,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4159,7 +4555,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4175,7 +4573,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4190,7 +4589,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a 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.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4208,7 +4609,8 @@ ], "duration": "30 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4223,7 +4625,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -4239,7 +4643,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4254,7 +4659,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4270,7 +4677,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4285,7 +4693,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4301,7 +4711,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4316,7 +4727,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the barrier blocks spells of one level higher for each slot level above 6th.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4332,7 +4745,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4347,7 +4761,9 @@ "school": "abjuration", "higher_level": "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.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4369,7 +4785,8 @@ ], "duration": "until dispelled or triggered", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4384,7 +4801,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4400,7 +4819,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4415,7 +4835,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4431,7 +4853,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4446,7 +4869,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4462,7 +4887,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4477,7 +4903,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4493,7 +4921,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4508,7 +4937,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4526,7 +4957,8 @@ ], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4541,7 +4973,9 @@ "school": "abjuration", "higher_level": "", "target_type": "area", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4557,7 +4991,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4572,7 +5007,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4588,7 +5025,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4603,7 +5041,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4621,7 +5061,8 @@ ], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4636,7 +5077,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4652,7 +5095,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4667,7 +5111,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4683,7 +5129,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4698,7 +5145,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4714,7 +5163,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": "cube", - "shape_magnitude": 150, + "shape_size": 150.0, + "shape_size_unit": null, "concentration": false } }, @@ -4729,7 +5179,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4747,7 +5199,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4762,7 +5215,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4778,7 +5233,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4793,7 +5249,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the amount of healing increases by 10 for each slot level above 6th.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4809,7 +5267,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4824,7 +5283,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4840,7 +5301,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4855,7 +5317,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4873,7 +5337,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4888,7 +5353,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4906,7 +5373,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4921,7 +5389,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4937,7 +5407,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -4952,7 +5423,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -4968,7 +5441,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -4983,7 +5457,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -4999,7 +5475,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5014,7 +5491,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a level 6 or higher location, you can target an additional creature for each level of location beyond the fifth. The creatures must be within 30 feet o f each other when you target them.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5030,7 +5509,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5045,7 +5525,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5061,7 +5543,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5076,7 +5559,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5092,7 +5577,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5107,7 +5593,9 @@ "school": "divination", "higher_level": " When you cast this spell using a spell slot of 3rd or 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5123,7 +5611,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5138,7 +5627,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -5154,7 +5645,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -5169,7 +5661,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5187,7 +5681,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5202,7 +5697,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5218,7 +5715,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5233,7 +5731,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": false, @@ -5249,7 +5749,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5264,7 +5765,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5280,7 +5783,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5295,7 +5799,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5313,7 +5819,8 @@ ], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -5328,7 +5835,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5346,7 +5855,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5361,7 +5871,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", "target_type": "point", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5379,7 +5891,8 @@ ], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -5394,7 +5907,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5410,7 +5925,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5425,7 +5941,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5441,7 +5959,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5456,7 +5975,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5472,7 +5993,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5487,7 +6009,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5503,7 +6027,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5518,7 +6043,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5534,7 +6061,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5549,7 +6077,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5565,7 +6095,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5580,7 +6111,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5596,7 +6129,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5611,7 +6145,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5627,7 +6163,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5642,7 +6179,9 @@ "school": "evocation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5658,7 +6197,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5673,7 +6213,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5691,7 +6233,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5706,7 +6249,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -5722,7 +6267,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5737,7 +6283,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5753,7 +6301,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5768,7 +6317,9 @@ "school": "divination", "higher_level": "", "target_type": "object", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5784,7 +6335,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -5799,7 +6351,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each spell slot above 1st.", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5815,7 +6369,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5830,7 +6385,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5846,7 +6403,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5861,7 +6419,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5877,7 +6437,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5892,7 +6453,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", "target_type": "point", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5908,7 +6471,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5923,7 +6487,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -5939,7 +6505,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5954,7 +6521,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -5970,7 +6539,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -5985,7 +6555,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -6001,7 +6573,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6016,7 +6589,9 @@ "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6032,7 +6607,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6047,7 +6623,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "300 feet", + "range_text": "300 feet", + "range": 300.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6063,7 +6641,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6078,7 +6657,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6094,7 +6675,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -6109,7 +6691,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the healing increases by 1d8 for each slot level above 5th.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6125,7 +6709,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -6140,7 +6725,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6156,7 +6743,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6171,7 +6759,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6187,7 +6777,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6202,7 +6793,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6218,7 +6811,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6233,7 +6827,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6249,7 +6845,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6264,7 +6861,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -6280,7 +6879,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6295,7 +6895,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6311,7 +6913,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6326,7 +6929,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6342,7 +6947,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6357,7 +6963,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "1 mile", + "range_text": "1 mile", + "range": 1.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -6375,7 +6983,8 @@ ], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 40, + "shape_size": 40.0, + "shape_size_unit": null, "concentration": false } }, @@ -6390,7 +6999,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6406,7 +7017,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6421,7 +7033,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -6437,7 +7051,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -6452,7 +7067,9 @@ "school": "illusion", "higher_level": "", "target_type": "area", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6468,7 +7085,8 @@ "damage_types": [], "duration": "10 days", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6483,7 +7101,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6499,7 +7119,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6514,7 +7135,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": false, @@ -6530,7 +7153,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6545,7 +7169,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6561,7 +7187,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6576,7 +7203,9 @@ "school": "enchantment", "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6592,7 +7221,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6607,7 +7237,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6625,7 +7257,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6640,7 +7273,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6656,7 +7291,8 @@ "damage_types": [], "duration": "2 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6671,7 +7307,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6687,7 +7325,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6702,7 +7341,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6718,7 +7359,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6733,7 +7375,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6749,7 +7393,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6764,7 +7409,9 @@ "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6780,7 +7427,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -6795,7 +7443,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -6811,7 +7461,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6826,7 +7477,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6842,7 +7495,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6857,7 +7511,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of a higher level, the duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6873,7 +7529,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6888,7 +7545,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -6904,7 +7563,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6919,7 +7579,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6935,7 +7597,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6950,7 +7613,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6966,7 +7631,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -6981,7 +7647,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -6997,7 +7665,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7012,7 +7681,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7028,7 +7699,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7043,7 +7715,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7059,7 +7733,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7074,7 +7749,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the healing increases by 1d8 for each slot level above 2nd.", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7090,7 +7767,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7105,7 +7783,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7121,7 +7801,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7136,7 +7817,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7154,7 +7837,8 @@ ], "duration": "instantaneous", "shape_type": "cone", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -7169,7 +7853,9 @@ "school": "abjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7187,7 +7873,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7202,7 +7889,9 @@ "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.", "target_type": "area", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7218,7 +7907,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7233,7 +7923,9 @@ "school": "conjuration", "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7251,7 +7943,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7266,7 +7959,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7282,7 +7977,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": "cube", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": false } }, @@ -7297,7 +7993,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "500 miles", + "range_text": "500 miles", + "range": 500.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -7313,7 +8011,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7328,7 +8027,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7344,7 +8045,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7359,7 +8061,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7375,7 +8079,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7390,7 +8095,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7406,7 +8113,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7421,7 +8129,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -7437,7 +8147,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": "sphere", - "shape_magnitude": 5, + "shape_size": 5.0, + "shape_size_unit": null, "concentration": false } }, @@ -7452,7 +8163,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7468,7 +8181,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7483,7 +8197,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7499,7 +8215,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7514,7 +8231,9 @@ "school": "evocation", "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7532,7 +8251,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7547,7 +8267,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7563,7 +8285,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7578,7 +8301,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7594,7 +8319,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7609,7 +8335,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7625,7 +8353,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7640,7 +8369,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7656,7 +8387,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7671,7 +8403,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7687,7 +8421,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7702,7 +8437,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7718,7 +8455,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7733,7 +8471,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "100 feet", + "range_text": "100 feet", + "range": 100.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7749,7 +8489,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cylinder", - "shape_magnitude": 100, + "shape_size": 100.0, + "shape_size_unit": null, "concentration": true } }, @@ -7764,7 +8505,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7780,7 +8523,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7795,7 +8539,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7811,7 +8557,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7826,7 +8573,9 @@ "school": "evocation", "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7842,7 +8591,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7857,7 +8607,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7873,7 +8625,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7888,7 +8641,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -7906,7 +8661,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7921,7 +8677,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7937,7 +8695,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -7952,7 +8711,9 @@ "school": "conjuration", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7968,7 +8729,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -7983,7 +8745,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -7999,7 +8763,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8014,7 +8779,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8030,7 +8797,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8045,7 +8813,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Unlimited", + "range_text": "Unlimited", + "range": 999999.0, + "range_unit": "miles", "ritual": false, "casting_time": "action", "verbal": true, @@ -8061,7 +8831,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8076,7 +8847,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8092,7 +8865,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8107,7 +8881,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8123,7 +8899,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8138,7 +8915,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8156,7 +8935,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8171,7 +8951,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "reaction", "verbal": true, @@ -8187,7 +8969,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8202,7 +8985,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8218,7 +9003,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8233,7 +9019,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8249,7 +9037,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8264,7 +9053,9 @@ "school": "evocation", "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8282,7 +9073,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8297,7 +9089,9 @@ "school": "illusion", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -8313,7 +9107,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -8328,7 +9123,9 @@ "school": "illusion", "higher_level": "", "target_type": "object", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8344,7 +9141,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "cube", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": true } }, @@ -8359,7 +9157,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8375,7 +9175,8 @@ "damage_types": [], "duration": "until dispelled", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8390,7 +9191,9 @@ "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", "target_type": "creature", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8406,7 +9209,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8421,7 +9225,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8437,7 +9243,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cylinder", - "shape_magnitude": 40, + "shape_size": 40.0, + "shape_size_unit": null, "concentration": true } }, @@ -8452,7 +9259,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8468,7 +9277,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "cube", - "shape_magnitude": 40, + "shape_size": 40.0, + "shape_size_unit": null, "concentration": true } }, @@ -8483,7 +9293,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8499,7 +9311,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8514,7 +9327,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -8530,7 +9345,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8545,7 +9361,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8561,7 +9379,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8576,7 +9395,9 @@ "school": "transmutation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8592,7 +9413,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8607,7 +9429,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8623,7 +9447,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8638,7 +9463,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8656,7 +9483,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8671,7 +9499,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8689,7 +9519,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8704,7 +9535,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8720,7 +9553,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8735,7 +9569,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "90 feet", + "range_text": "90 feet", + "range": 90.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8751,7 +9587,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -8766,7 +9603,9 @@ "school": "transmutation", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8782,7 +9621,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8797,7 +9637,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8813,7 +9655,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8828,7 +9671,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "Sight", + "range_text": "Sight", + "range": 2020.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8846,7 +9691,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8861,7 +9707,9 @@ "school": "enchantment", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8877,7 +9725,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8892,7 +9741,9 @@ "school": "evocation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8910,7 +9761,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -8925,7 +9777,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "150 feet", + "range_text": "150 feet", + "range": 150.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -8943,7 +9797,8 @@ ], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -8958,7 +9813,9 @@ "school": "abjuration", "higher_level": "", "target_type": "object", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -8974,7 +9831,8 @@ "damage_types": [], "duration": "until dispelled or triggered", "shape_type": "sphere", - "shape_magnitude": 60, + "shape_size": 60.0, + "shape_size_unit": null, "concentration": false } }, @@ -8989,7 +9847,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9005,7 +9865,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9020,7 +9881,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9036,7 +9899,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9051,7 +9915,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9069,7 +9935,8 @@ ], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": false } }, @@ -9084,7 +9951,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9100,7 +9969,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9115,7 +9985,9 @@ "school": "transmutation", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9131,7 +10003,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9146,7 +10019,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9164,7 +10039,8 @@ ], "duration": "instantaneous", "shape_type": "cube", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } }, @@ -9179,7 +10055,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9195,7 +10073,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9210,7 +10089,9 @@ "school": "evocation", "higher_level": "", "target_type": "area", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": true, "casting_time": "action", "verbal": true, @@ -9226,7 +10107,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9241,7 +10123,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9257,7 +10141,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9272,7 +10157,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "10 feet", + "range_text": "10 feet", + "range": 10.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9288,7 +10175,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9303,7 +10191,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9319,7 +10209,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9334,7 +10225,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9350,7 +10243,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9365,7 +10259,9 @@ "school": "necromancy", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9381,7 +10277,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9396,7 +10293,9 @@ "school": "divination", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9412,7 +10311,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9427,7 +10327,9 @@ "school": "divination", "higher_level": "", "target_type": "point", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": false, @@ -9443,7 +10345,8 @@ "damage_types": [], "duration": "1 round", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9458,7 +10361,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9474,7 +10379,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9489,7 +10395,9 @@ "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9507,7 +10415,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9522,7 +10431,9 @@ "school": "enchantment", "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", "target_type": "creature", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9538,7 +10449,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9553,7 +10465,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a level spell slot 5 or more, the damage of the spell increases by 1d8 for each level of higher spell slot to 4.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9571,7 +10485,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9586,7 +10501,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9602,7 +10519,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 10, + "shape_size": 10.0, + "shape_size_unit": null, "concentration": true } }, @@ -9617,7 +10535,9 @@ "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9635,7 +10555,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9650,7 +10571,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9666,7 +10589,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9681,7 +10605,9 @@ "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9699,7 +10625,8 @@ ], "duration": "10 minutes", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9714,7 +10641,9 @@ "school": "abjuration", "higher_level": "", "target_type": "creature", - "range": "Touch", + "range_text": "Touch", + "range": 0.1, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9730,7 +10659,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9745,7 +10675,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9761,7 +10693,8 @@ "damage_types": [], "duration": "24 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9776,7 +10709,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": true, "casting_time": "action", "verbal": true, @@ -9792,7 +10727,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9807,7 +10743,9 @@ "school": "conjuration", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9823,7 +10761,8 @@ "damage_types": [], "duration": "1 hour", "shape_type": "cube", - "shape_magnitude": 20, + "shape_size": 20.0, + "shape_size_unit": null, "concentration": true } }, @@ -9838,7 +10777,9 @@ "school": "illusion", "higher_level": "", "target_type": "creature", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9854,7 +10795,8 @@ "damage_types": [], "duration": "1 minute", "shape_type": "sphere", - "shape_magnitude": 30, + "shape_size": 30.0, + "shape_size_unit": null, "concentration": true } }, @@ -9869,7 +10811,9 @@ "school": "transmutation", "higher_level": "", "target_type": "creature", - "range": "30 feet", + "range_text": "30 feet", + "range": 30.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9885,7 +10829,8 @@ "damage_types": [], "duration": "8 hours", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9900,7 +10845,9 @@ "school": "evocation", "higher_level": "", "target_type": "point", - "range": "120 feet", + "range_text": "120 feet", + "range": 120.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9918,7 +10865,8 @@ ], "duration": "1 minute", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": true } }, @@ -9933,7 +10881,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "Self", + "range_text": "Self", + "range": 0.0, + "range_unit": null, "ritual": false, "casting_time": "action", "verbal": true, @@ -9949,7 +10899,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9964,7 +10915,9 @@ "school": "conjuration", "higher_level": "", "target_type": "creature", - "range": "5 feet", + "range_text": "5 feet", + "range": 5.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -9980,7 +10933,8 @@ "damage_types": [], "duration": "instantaneous", "shape_type": null, - "shape_magnitude": null, + "shape_size": null, + "shape_size_unit": null, "concentration": false } }, @@ -9995,7 +10949,9 @@ "school": "enchantment", "higher_level": "", "target_type": "point", - "range": "60 feet", + "range_text": "60 feet", + "range": 60.0, + "range_unit": "feet", "ritual": false, "casting_time": "action", "verbal": true, @@ -10011,7 +10967,8 @@ "damage_types": [], "duration": "10 minutes", "shape_type": "sphere", - "shape_magnitude": 15, + "shape_size": 15.0, + "shape_size_unit": null, "concentration": false } } diff --git a/scripts/data_manipulation/data_v2_fix_keys.py b/scripts/data_manipulation/convertors/data_v2_fix_keys.py similarity index 100% rename from scripts/data_manipulation/data_v2_fix_keys.py rename to scripts/data_manipulation/convertors/data_v2_fix_keys.py diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/convertors/data_v2_format_check.py similarity index 100% rename from scripts/data_manipulation/data_v2_format_check.py rename to scripts/data_manipulation/convertors/data_v2_format_check.py diff --git a/scripts/data_manipulation/datafile_parser.py b/scripts/data_manipulation/convertors/datafile_parser.py similarity index 100% rename from scripts/data_manipulation/datafile_parser.py rename to scripts/data_manipulation/convertors/datafile_parser.py diff --git a/scripts/data_manipulation/generate_spelllist.py b/scripts/data_manipulation/convertors/generate_spelllist.py similarity index 100% rename from scripts/data_manipulation/generate_spelllist.py rename to scripts/data_manipulation/convertors/generate_spelllist.py diff --git a/scripts/data_manipulation/lint_json.py b/scripts/data_manipulation/convertors/lint_json.py similarity index 100% rename from scripts/data_manipulation/lint_json.py rename to scripts/data_manipulation/convertors/lint_json.py diff --git a/scripts/data_manipulation/populate_page_no.py b/scripts/data_manipulation/convertors/populate_page_no.py similarity index 100% rename from scripts/data_manipulation/populate_page_no.py rename to scripts/data_manipulation/convertors/populate_page_no.py diff --git a/scripts/data_manipulation/remapdmg.py b/scripts/data_manipulation/convertors/remapdmg.py similarity index 100% rename from scripts/data_manipulation/remapdmg.py rename to scripts/data_manipulation/convertors/remapdmg.py diff --git a/scripts/data_manipulation/remaprarity.py b/scripts/data_manipulation/convertors/remaprarity.py similarity index 100% rename from scripts/data_manipulation/remaprarity.py rename to scripts/data_manipulation/convertors/remaprarity.py diff --git a/scripts/data_manipulation/remapschool.py b/scripts/data_manipulation/convertors/remapschool.py similarity index 100% rename from scripts/data_manipulation/remapschool.py rename to scripts/data_manipulation/convertors/remapschool.py diff --git a/scripts/data_manipulation/remapsize.py b/scripts/data_manipulation/convertors/remapsize.py similarity index 100% rename from scripts/data_manipulation/remapsize.py rename to scripts/data_manipulation/convertors/remapsize.py diff --git a/scripts/data_manipulation/remapweapons.py b/scripts/data_manipulation/convertors/remapweapons.py similarity index 100% rename from scripts/data_manipulation/remapweapons.py rename to scripts/data_manipulation/convertors/remapweapons.py diff --git a/scripts/data_manipulation/spell.py b/scripts/data_manipulation/convertors/spell.py similarity index 100% rename from scripts/data_manipulation/spell.py rename to scripts/data_manipulation/convertors/spell.py diff --git a/scripts/data_manipulation/v2_key_rewrite.py b/scripts/data_manipulation/convertors/v2_key_rewrite.py similarity index 100% rename from scripts/data_manipulation/v2_key_rewrite.py rename to scripts/data_manipulation/convertors/v2_key_rewrite.py diff --git a/scripts/data_manipulation/v2search_test.py b/scripts/data_manipulation/convertors/v2search_test.py similarity index 100% rename from scripts/data_manipulation/v2search_test.py rename to scripts/data_manipulation/convertors/v2search_test.py diff --git a/scripts/data_manipulation/v1_to_v2_data.py b/scripts/data_manipulation/v1_to_v2_data.py new file mode 100644 index 00000000..1174f855 --- /dev/null +++ b/scripts/data_manipulation/v1_to_v2_data.py @@ -0,0 +1,147 @@ + +from django.template.defaultfilters import slugify + +import json + +from api.models import Monster as v1_model +from api_v2.models import Creature as v2_model + + +# Transformation function. + +# Summarize the changes, print output. + +# Write or not (opt in to write). + + +def main(): + v1_iteration = 0 + v1v2_match_count = 0 + v1_unmatch_count = 0 + # CHANGE MODEL ON THIS LINE + for obj_v1 in v1_model.objects.all(): + v1_iteration +=1 + computed_v2_key = get_v2_key_from_v1_obj(obj_v1) + + obj_v2 = v2_model.objects.filter(key=computed_v2_key).first() + if obj_v2 is None: + v1_unmatch_count +=1 + continue + v1v2_match_count +=1 + + ### START LOGIC FOR PARSING V1 DATA ### + + if obj_v2 is not None: + copy_v2_speed_from_v1_creature(v1_obj=obj_v1, v2_obj=obj_v2) + obj_v2.full_clean() + obj_v2.save() + + ### DO VALIDATION OF THE OBJECT + #obj_v2.full_clean() + # CAREFUL + + # END CAREFUL + + + print("Performed {} iterations of v1 objects.".format(str(v1_iteration))) + print("Matched {} v2 objects.".format(str(v1v2_match_count))) + print("Failed to match {} objects.".format(str(v1_unmatch_count))) + +def _do_spell_distance(obj_v2): + get_distance_and_unit_from_range_text(obj_v2) + obj_v2.range = get_distance_and_unit_from_range_text(obj_v2)[0] + obj_v2.range_unit = get_distance_and_unit_from_range_text(obj_v2)[1] + +def _do_duration_remap(obj_v2): + if obj_v2.key == "deepm_bottled-arcana": + obj_v2.duration = '24 hours' + if obj_v2.key == "deepm_delay-potion": + obj_v2.duration = '1 hour' + if obj_v2.key == "deepm_word-of-misfortune": + obj_v2.duration = "1 minute" + if obj_v2.key == "wz_eternal-echo": + obj_v2.duration = "special" + if obj_v2.key == "kp_blood-strike": + obj_v2.duration = "special" + + if obj_v2.duration.lstrip()!=obj_v2.duration: + obj_v2.duration = obj_v2.duration.lstrip() + +def get_v2_key_from_v1_obj(v1_obj): + v2_doc = get_v2_doc_from_v1_obj(v1_obj) + v2_key = "{}_{}".format(slugify(v2_doc),slugify(v1_obj.name)) + return v2_key + +def get_v2_doc_from_v1_obj(v1_obj): + doc_lookup = { + 'a5e':'a5e-ag', + 'cc':'ccdx', + 'blackflag':'blkflg', + 'dmag':'deepm', + 'dmag-e':'deepmx', + 'kp':'kp', + 'menagerie':'mmenag', + 'o5e':'open5e', + 'taldorei':'tdcs', + 'tob':'tob', + 'tob-2023':'tob-2023', + 'tob2':'tob2', + 'tob3':'tob3', + 'toh':'toh', + 'vom':'vom', + 'warlock':'wz', + 'wotc-srd':'srd', + } + return doc_lookup[v1_obj.document.slug] + +def copy_v2_speed_from_v1_creature(v1_obj, v2_obj): + assert('walk' in v1_obj.speed_json) + v2_obj.walk = float(json.loads(v1_obj.speed_json)['walk']) + + if v1_obj.slug == 'werebear': # This should be split into multiple creature entries. + v2_obj.walk = 30.0 + return + + if 'hover' in v1_obj.speed_json: + v2_obj.hover = True + + if 'fly' in v1_obj.speed_json: + v2_obj.fly = float(json.loads(v1_obj.speed_json)['fly']) + + if 'burrow' in v1_obj.speed_json: + v2_obj.burrow = float(json.loads(v1_obj.speed_json)['burrow']) + + if 'climb' in v1_obj.speed_json: + v2_obj.climb = float(json.loads(v1_obj.speed_json)['climb']) + + if 'swim' in v1_obj.speed_json: + v2_obj.swim = float(json.loads(v1_obj.speed_json)['swim']) + + if v1_obj.slug == 'werebear': + v2_obj.walk = 30.0 + + +def get_distance_and_unit_from_range_text(spell): + if spell.range_text == 'Self': + return (0,None) + if spell.range_text == 'Touch': + return (0.1, None) + if spell.range_text == 'Special': + return (0.2,None) + if spell.range_text == 'Sight': + return (2020.0,'feet') + if spell.range_text == 'Unlimited': + return (999999.0,'miles') + + rt_split = spell.range_text.split(" ") + if "feet" in rt_split: + return (float(rt_split[0]),"feet") + if "miles" in rt_split: + return (float(rt_split[0]),"miles") + if "mile" in rt_split: + return (float(rt_split[0]),"miles") + + print ("Could not parse {}".format(spell.range_text)) + +if __name__ == '__main__': + main() \ No newline at end of file