diff --git a/api_v2/admin.py b/api_v2/admin.py index de50b1df..f07b0868 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -66,10 +66,15 @@ class LanguageAdmin(admin.ModelAdmin): admin.site.register(Weapon, admin_class=FromDocumentModelAdmin) admin.site.register(Armor, admin_class=FromDocumentModelAdmin) +admin.site.register(Size) + admin.site.register(ItemCategory) +admin.site.register(ItemRarity) admin.site.register(Item, admin_class=ItemModelAdmin) admin.site.register(ItemSet, admin_class=FromDocumentModelAdmin) +admin.site.register(SpellSchool) + admin.site.register(Race, admin_class=RaceAdmin) admin.site.register(Feat, admin_class=FeatAdmin) diff --git a/api_v2/migrations/0053_itemrarity_size_spellschool.py b/api_v2/migrations/0053_itemrarity_size_spellschool.py new file mode 100644 index 00000000..a03a364b --- /dev/null +++ b/api_v2/migrations/0053_itemrarity_size_spellschool.py @@ -0,0 +1,52 @@ +# Generated by Django 3.2.20 on 2024-03-14 18:02 + +import django.core.validators +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0052_merge_0033_auto_20240123_0222_0051_auto_20240301_2014'), + ] + + operations = [ + migrations.CreateModel( + name='SpellSchool', + fields=[ + ('name', models.CharField(help_text='Name of the item.', max_length=100)), + ('desc', models.TextField(help_text='Description of the game content item. Markdown.')), + ('key', models.CharField(help_text='Unique key for the Item.', max_length=100, primary_key=True, serialize=False)), + ('document', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.document')), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='Size', + fields=[ + ('name', models.CharField(help_text='Name of the item.', max_length=100)), + ('key', models.CharField(help_text='Unique key for the Item.', max_length=100, primary_key=True, serialize=False)), + ('rank', models.IntegerField(help_text='Ranking of the size, smallest has the lowest values.', unique=True)), + ('space_diameter', models.DecimalField(decimal_places=3, default=0, help_text='Number representing the diameter of the space controlled by the object.', max_digits=10, validators=[django.core.validators.MinValueValidator(0)])), + ('document', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.document')), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='ItemRarity', + fields=[ + ('name', models.CharField(help_text='Name of the item.', max_length=100)), + ('key', models.CharField(help_text='Unique key for the Item.', max_length=100, primary_key=True, serialize=False)), + ('rank', models.IntegerField(help_text='Ranking of the rarity, most common has the lowest values.', unique=True)), + ('document', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.document')), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/api_v2/migrations/0054_auto_20240314_1911.py b/api_v2/migrations/0054_auto_20240314_1911.py new file mode 100644 index 00000000..c6340179 --- /dev/null +++ b/api_v2/migrations/0054_auto_20240314_1911.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2024-03-14 19:11 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0053_itemrarity_size_spellschool'), + ] + + operations = [ + migrations.RenameField( + model_name='creature', + old_name='size', + new_name='size_integer', + ), + migrations.RenameField( + model_name='item', + old_name='size', + new_name='size_integer', + ), + ] diff --git a/api_v2/migrations/0055_auto_20240314_1921.py b/api_v2/migrations/0055_auto_20240314_1921.py new file mode 100644 index 00000000..78b750b9 --- /dev/null +++ b/api_v2/migrations/0055_auto_20240314_1921.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.20 on 2024-03-14 19:21 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0054_auto_20240314_1911'), + ] + + operations = [ + migrations.AddField( + model_name='creature', + name='size', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='api_v2.size'), + ), + migrations.AddField( + model_name='item', + name='size', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='api_v2.size'), + ), + ] diff --git a/api_v2/migrations/0056_auto_20240314_1940.py b/api_v2/migrations/0056_auto_20240314_1940.py new file mode 100644 index 00000000..8b396818 --- /dev/null +++ b/api_v2/migrations/0056_auto_20240314_1940.py @@ -0,0 +1,21 @@ +# Generated by Django 3.2.20 on 2024-03-14 19:40 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0055_auto_20240314_1921'), + ] + + operations = [ + migrations.RemoveField( + model_name='creature', + name='size_integer', + ), + migrations.RemoveField( + model_name='item', + name='size_integer', + ), + ] diff --git a/api_v2/migrations/0057_auto_20240314_1943.py b/api_v2/migrations/0057_auto_20240314_1943.py new file mode 100644 index 00000000..041e4b81 --- /dev/null +++ b/api_v2/migrations/0057_auto_20240314_1943.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.20 on 2024-03-14 19:43 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0056_auto_20240314_1940'), + ] + + operations = [ + migrations.AlterField( + model_name='creature', + name='size', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.size'), + ), + migrations.AlterField( + model_name='item', + name='size', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.size'), + ), + ] diff --git a/api_v2/migrations/0058_rename_rarity_item_rarity_integer.py b/api_v2/migrations/0058_rename_rarity_item_rarity_integer.py new file mode 100644 index 00000000..af18a597 --- /dev/null +++ b/api_v2/migrations/0058_rename_rarity_item_rarity_integer.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-03-14 20:00 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0057_auto_20240314_1943'), + ] + + operations = [ + migrations.RenameField( + model_name='item', + old_name='rarity', + new_name='rarity_integer', + ), + ] diff --git a/api_v2/migrations/0059_item_rarity.py b/api_v2/migrations/0059_item_rarity.py new file mode 100644 index 00000000..a7221069 --- /dev/null +++ b/api_v2/migrations/0059_item_rarity.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.20 on 2024-03-14 20:02 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0058_rename_rarity_item_rarity_integer'), + ] + + operations = [ + migrations.AddField( + model_name='item', + name='rarity', + field=models.ForeignKey(help_text='Rarity object.', null=True, on_delete=django.db.models.deletion.CASCADE, to='api_v2.itemrarity'), + ), + ] diff --git a/api_v2/migrations/0060_remove_item_rarity_integer.py b/api_v2/migrations/0060_remove_item_rarity_integer.py new file mode 100644 index 00000000..6ab42611 --- /dev/null +++ b/api_v2/migrations/0060_remove_item_rarity_integer.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-03-14 20:08 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0059_item_rarity'), + ] + + operations = [ + migrations.RemoveField( + model_name='item', + name='rarity_integer', + ), + ] diff --git a/api_v2/migrations/0061_rename_damage_type_creatureattack_damage_type_old.py b/api_v2/migrations/0061_rename_damage_type_creatureattack_damage_type_old.py new file mode 100644 index 00000000..2122d46e --- /dev/null +++ b/api_v2/migrations/0061_rename_damage_type_creatureattack_damage_type_old.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:17 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0060_remove_item_rarity_integer'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureattack', + old_name='damage_type', + new_name='damage_type_OLD', + ), + ] diff --git a/api_v2/migrations/0062_creatureattack_damage_type.py b/api_v2/migrations/0062_creatureattack_damage_type.py new file mode 100644 index 00000000..680e60ca --- /dev/null +++ b/api_v2/migrations/0062_creatureattack_damage_type.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:18 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0061_rename_damage_type_creatureattack_damage_type_old'), + ] + + operations = [ + migrations.AddField( + model_name='creatureattack', + name='damage_type', + field=models.ForeignKey(help_text='What kind of damage this attack deals', null=True, on_delete=django.db.models.deletion.CASCADE, to='api_v2.damagetype'), + ), + ] diff --git a/api_v2/migrations/0063_auto_20240315_1228.py b/api_v2/migrations/0063_auto_20240315_1228.py new file mode 100644 index 00000000..b94c9fd9 --- /dev/null +++ b/api_v2/migrations/0063_auto_20240315_1228.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:28 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0062_creatureattack_damage_type'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureattack', + old_name='damage_type_OLD', + new_name='extra_damage_type_OLD', + ), + migrations.RemoveField( + model_name='creatureattack', + name='extra_damage_type', + ), + ] diff --git a/api_v2/migrations/0064_auto_20240315_1231.py b/api_v2/migrations/0064_auto_20240315_1231.py new file mode 100644 index 00000000..844d3068 --- /dev/null +++ b/api_v2/migrations/0064_auto_20240315_1231.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:31 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0063_auto_20240315_1228'), + ] + + operations = [ + migrations.AddField( + model_name='creatureattack', + name='extra_damage_type', + field=models.ForeignKey(help_text='What kind of extra damage this attack deals', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='+', to='api_v2.damagetype'), + ), + migrations.AlterField( + model_name='creatureattack', + name='damage_type', + field=models.ForeignKey(help_text='What kind of damage this attack deals', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='+', to='api_v2.damagetype'), + ), + ] diff --git a/api_v2/migrations/0065_remove_creatureattack_extra_damage_type_old.py b/api_v2/migrations/0065_remove_creatureattack_extra_damage_type_old.py new file mode 100644 index 00000000..7d5c424f --- /dev/null +++ b/api_v2/migrations/0065_remove_creatureattack_extra_damage_type_old.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:34 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0064_auto_20240315_1231'), + ] + + operations = [ + migrations.RemoveField( + model_name='creatureattack', + name='extra_damage_type_OLD', + ), + ] diff --git a/api_v2/migrations/0066_rename_damage_type_weapon_damage_type_old.py b/api_v2/migrations/0066_rename_damage_type_weapon_damage_type_old.py new file mode 100644 index 00000000..6259fb67 --- /dev/null +++ b/api_v2/migrations/0066_rename_damage_type_weapon_damage_type_old.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0065_remove_creatureattack_extra_damage_type_old'), + ] + + operations = [ + migrations.RenameField( + model_name='weapon', + old_name='damage_type', + new_name='damage_type_old', + ), + ] diff --git a/api_v2/migrations/0067_weapon_damage_type.py b/api_v2/migrations/0067_weapon_damage_type.py new file mode 100644 index 00000000..214476a6 --- /dev/null +++ b/api_v2/migrations/0067_weapon_damage_type.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:42 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0066_rename_damage_type_weapon_damage_type_old'), + ] + + operations = [ + migrations.AddField( + model_name='weapon', + name='damage_type', + field=models.ForeignKey(help_text='What kind of damage this weapon deals', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='+', to='api_v2.damagetype'), + ), + ] diff --git a/api_v2/migrations/0068_remove_weapon_damage_type_old.py b/api_v2/migrations/0068_remove_weapon_damage_type_old.py new file mode 100644 index 00000000..fa75138b --- /dev/null +++ b/api_v2/migrations/0068_remove_weapon_damage_type_old.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:45 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0067_weapon_damage_type'), + ] + + operations = [ + migrations.RemoveField( + model_name='weapon', + name='damage_type_old', + ), + ] diff --git a/api_v2/migrations/0069_rename_school_spell_school_old.py b/api_v2/migrations/0069_rename_school_spell_school_old.py new file mode 100644 index 00000000..ca53d3de --- /dev/null +++ b/api_v2/migrations/0069_rename_school_spell_school_old.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:47 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0068_remove_weapon_damage_type_old'), + ] + + operations = [ + migrations.RenameField( + model_name='spell', + old_name='school', + new_name='school_old', + ), + ] diff --git a/api_v2/migrations/0070_spell_school.py b/api_v2/migrations/0070_spell_school.py new file mode 100644 index 00000000..8290d7d5 --- /dev/null +++ b/api_v2/migrations/0070_spell_school.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:52 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0069_rename_school_spell_school_old'), + ] + + operations = [ + migrations.AddField( + model_name='spell', + name='school', + field=models.ForeignKey(default='evocation', help_text="Spell school, such as 'evocation'", on_delete=django.db.models.deletion.CASCADE, to='api_v2.spellschool'), + preserve_default=False, + ), + ] diff --git a/api_v2/migrations/0071_remove_spell_school_old.py b/api_v2/migrations/0071_remove_spell_school_old.py new file mode 100644 index 00000000..ca074ab1 --- /dev/null +++ b/api_v2/migrations/0071_remove_spell_school_old.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-03-15 12:53 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0070_spell_school'), + ] + + operations = [ + migrations.RemoveField( + model_name='spell', + name='school_old', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 90953540..56c5839e 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -5,6 +5,7 @@ from .item import ItemCategory from .item import Item from .item import ItemSet +from .item import ItemRarity from .armor import Armor @@ -41,7 +42,10 @@ from .spell import Spell from .spell import CastingOption +from .spell import SpellSchool from .characterclass import FeatureItem from .characterclass import Feature from .characterclass import CharacterClass + +from .size import Size \ No newline at end of file diff --git a/api_v2/models/abilities.py b/api_v2/models/abilities.py index fa6341ae..a6578d7e 100644 --- a/api_v2/models/abilities.py +++ b/api_v2/models/abilities.py @@ -10,13 +10,13 @@ from math import floor +from .enums import ABILITY_SCORE_MAXIMUM +from .enums import SAVING_THROW_MAXIMUM, SAVING_THROW_MINIMUM +from .enums import SKILL_BONUS_MINIMUM, SKILL_BONUS_MAXIMUM +from .enums import PASSIVE_SCORE_MAXIMUM + # Field value limits -ABILITY_SCORE_MAXIMUM = 30 -SAVING_THROW_MINIMUM = -5 -SAVING_THROW_MAXIMUM = +20 -SKILL_BONUS_MINIMUM = -5 -SKILL_BONUS_MAXIMUM = +20 -PASSIVE_SCORE_MAXIMUM = 30 + # Define a field representing an ability score def ability_score_field(help_text): diff --git a/api_v2/models/abstracts.py b/api_v2/models/abstracts.py index 289fa4b1..d14978ca 100644 --- a/api_v2/models/abstracts.py +++ b/api_v2/models/abstracts.py @@ -1,10 +1,7 @@ """Abstract models to be used in Game Content items.""" from django.db import models -from django.core.validators import MaxValueValidator, MinValueValidator -from django.template.defaultfilters import slugify - -from .enums import OBJECT_SIZE_CHOICES, OBJECT_ARMOR_CLASS_MAXIMUM, OBJECT_HIT_POINT_MAXIMUM +from .enums import MODIFICATION_TYPES class HasName(models.Model): @@ -47,52 +44,6 @@ class Meta: abstract = True -class Object(HasName): - """ - This is the definition of the Object abstract base class. - - The Object class will be inherited from by Item, Weapon, Character, etc. - Basically it describes any sort of matter in the 5e world. - """ - - size = models.IntegerField( - default=1, - null=False, # Allow an unspecified size. - choices=OBJECT_SIZE_CHOICES, - validators=[ - MinValueValidator(1), - MaxValueValidator(6)], - help_text='Integer representing the size of the object.') - - weight = models.DecimalField( - default=0, - null=False, # Allow an unspecified weight. - max_digits=10, - decimal_places=3, - validators=[MinValueValidator(0)], - help_text='Number representing the weight of the object.') - - armor_class = models.IntegerField( - default=0, - null=False, # Allow an unspecified armor_class. - validators=[ - MinValueValidator(0), - MaxValueValidator(OBJECT_ARMOR_CLASS_MAXIMUM)], - help_text='Integer representing the armor class of the object.') - - hit_points = models.IntegerField( - default=0, - null=False, # Allow an unspecified hit point value. - validators=[ - MinValueValidator(0), - MaxValueValidator(OBJECT_HIT_POINT_MAXIMUM)], - help_text='Integer representing the hit points of the object.') - - class Meta: - abstract = True - ordering = ['pk'] - - class Modification(HasName, HasDescription): """ This is the definition of a modification abstract base class. @@ -101,17 +52,6 @@ class Modification(HasName, HasDescription): Basically it describes any sort of modification to a character in 5e. """ - MODIFICATION_TYPES = [ - ("ability_score", "Ability Score Increase or Decrease"), - ("skill_proficiency", "Skill Proficiency"), - ("tool_proficiency", "Tool Proficiency"), - ("language", "Language"), - ("equipment", "Equipment"), - ("feature", "Feature"), # Used in Backgrounds - ("suggested_characteristics", "Suggested Characteristics"), # Used in Backgrounds - ("adventures_and_advancement", "Adventures and Advancement"), # Used in A5e Backgrounds - ("connection_and_memento", "Connection and Memento")] # Used in A5e Backgrounds - type = models.CharField( max_length=200, diff --git a/api_v2/models/condition.py b/api_v2/models/condition.py index c533e1c1..806ead11 100644 --- a/api_v2/models/condition.py +++ b/api_v2/models/condition.py @@ -1,5 +1,6 @@ """The model for a condition.""" from django.db import models + from .abstracts import HasName, HasDescription from .document import FromDocument diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 41b869a5..bbc9a876 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -3,9 +3,10 @@ from django.db import models from django.core.validators import MaxValueValidator, MinValueValidator from .abilities import Abilities -from .abstracts import Object, HasDescription, HasName +from .abstracts import HasDescription, HasName +from .object import Object from .document import FromDocument -from .enums import CREATURE_MONSTER_TYPES, CREATURE_ATTACK_TYPES, DIE_TYPES, DAMAGE_TYPES, CREATURE_USES_TYPES +from .enums import CREATURE_ATTACK_TYPES, DIE_TYPES, CREATURE_USES_TYPES def damage_die_count_field(): @@ -30,15 +31,6 @@ def damage_bonus_field(): help_text='Damage roll modifier.' ) -def damage_type_field(): - return models.CharField( - null=True, - max_length=20, - choices=DAMAGE_TYPES, - help_text='What kind of damage this attack deals.' - ) - - class CreatureType(HasName, HasDescription, FromDocument): """The Type of creature, such as Aberration.""" @@ -133,13 +125,25 @@ class CreatureAttack(HasName, FromDocument): damage_die_count = damage_die_count_field() damage_die_type = damage_die_type_field() damage_bonus = damage_bonus_field() - damage_type = damage_type_field() + + damage_type = models.ForeignKey( + "DamageType", + null=True, + related_name="+", # No backwards relation. + on_delete=models.CASCADE, + help_text='What kind of damage this attack deals') # Additional damage fields extra_damage_die_count = damage_die_count_field() extra_damage_die_type = damage_die_type_field() extra_damage_bonus = damage_bonus_field() - extra_damage_type = damage_type_field() + + extra_damage_type = models.ForeignKey( + "DamageType", + null=True, + on_delete=models.CASCADE, + related_name="+", # No backwards relation. + help_text='What kind of extra damage this attack deals') class CreatureSet(HasName, FromDocument): diff --git a/api_v2/models/enums.py b/api_v2/models/enums.py index 2212581c..1ea01b11 100644 --- a/api_v2/models/enums.py +++ b/api_v2/models/enums.py @@ -9,31 +9,12 @@ ("D20", "d20"), ] -# List of damage types possible in 5e. -DAMAGE_TYPES = [ - ("ACID", "Acid"), - ("BLUDGEONING", "Bludgeoning"), - ("COLD", "Cold"), - ("FIRE", "Fire"), - ("FORCE", "Force"), - ("LIGHTNING", "Lightning"), - ("NECROTIC", "Necrotic"), - ("PIERCING", "Piercing"), - ("POISON", "Poison"), - ("PSYCHIC", "Psychic"), - ("RADIANT", "Radiant"), - ("SLASHING", "Slashing"), - ("THUNDER", "Thunder"), -] - -# Enumerating sizes, so they are sortable. -OBJECT_SIZE_CHOICES = [ - (1, "Tiny"), - (2, "Small"), - (3, "Medium"), - (4, "Large"), - (5, "Huge"), - (6, "Gargantuan")] +ABILITY_SCORE_MAXIMUM = 30 +SAVING_THROW_MINIMUM = -5 +SAVING_THROW_MAXIMUM = +20 +SKILL_BONUS_MINIMUM = -5 +SKILL_BONUS_MAXIMUM = +20 +PASSIVE_SCORE_MAXIMUM = 30 # Setting a reasonable maximum for AC. OBJECT_ARMOR_CLASS_MAXIMUM = 100 @@ -41,31 +22,12 @@ # Setting a reasonable maximum for HP. OBJECT_HIT_POINT_MAXIMUM = 10000 -# Types of monsters, and their name spelling. -CREATURE_MONSTER_TYPES = [ - ("ABERRATION", "Aberration"), - ("BEAST", "Beast"), - ("CELESTIAL", "Celestial"), - ("CONSTRUCT", "Construct"), - ("DRAGON", "Dragon"), - ("ELEMENTAL", "Elemental"), - ("FEY", "Fey"), - ("FIEND", "Fiend"), - ("GIANT", "Giant"), - ("HUMANOID", "Humanoid"), - ("MONSTROSITY", "Monstrosity"), - ("OOZE", "Ooze"), - ("PLANT", "Plant"), - ("UNDEAD", "Undead"), -] - # Type of creature attacks. CREATURE_ATTACK_TYPES = [ ("SPELL", "Spell"), ("WEAPON", "Weapon"), ] - # Monster action uses description. CREATURE_USES_TYPES = [ ("PER_DAY", "X/Day"), @@ -73,16 +35,6 @@ ("RECHARGE_AFTER_REST", "Recharge after a Short or Long rest"), ] -# Item Rarity -ITEM_RARITY_CHOICES = [ - (1, 'common'), - (2, 'uncommon'), - (3, 'rare'), - (4, 'very rare'), - (5, 'legendary'), - (6, 'artifact') -] - # Spell options SPELL_TARGET_TYPE_CHOICES = [ ('creature',"Creature"), @@ -91,6 +43,18 @@ ('area',"Area") ] +MODIFICATION_TYPES = [ + ("ability_score", "Ability Score Increase or Decrease"), + ("skill_proficiency", "Skill Proficiency"), + ("tool_proficiency", "Tool Proficiency"), + ("language", "Language"), + ("equipment", "Equipment"), + ("feature", "Feature"), # Used in Backgrounds + ("suggested_characteristics", "Suggested Characteristics"), # Used in Backgrounds + ("adventures_and_advancement", "Adventures and Advancement"), # Used in A5e Backgrounds + ("connection_and_memento", "Connection and Memento")] # Used in A5e Backgrounds + + SPELL_TARGET_RANGE_CHOICES = [ ('Self',"Self"), ('Touch',"Touch"), @@ -198,16 +162,6 @@ ('8hours',"8 Hours"), ] -SPELL_SCHOOL_CHOICES = [ - ('abjuration','Abjuration'), - ('conjuration','Conjuration'), - ('divination','Divination'), - ('enchantment','Enchantment'), - ('evocation','Evocation'), - ('illusion','Illusion'), - ('necromancy','Necromancy'), - ('transmutation','Transmutaion'), -] CASTING_OPTION_TYPES = [ ('default',"Default"), diff --git a/api_v2/models/item.py b/api_v2/models/item.py index a39424af..04e557b0 100644 --- a/api_v2/models/item.py +++ b/api_v2/models/item.py @@ -2,18 +2,23 @@ from django.db import models from django.core.validators import MinValueValidator, MaxValueValidator -from django.urls import reverse -from api.models import GameContent from .weapon import Weapon from .armor import Armor -from .abstracts import Object, HasName, HasDescription +from .abstracts import HasName, HasDescription +from .object import Object from .document import FromDocument -from .enums import ITEM_RARITY_CHOICES + + +class ItemRarity(HasName, FromDocument): + """A class describing the rarity of items.""" + rank = models.IntegerField( + unique=True, + help_text='Ranking of the rarity, most common has the lowest values.') + class ItemCategory(HasName, FromDocument): """A class describing categories of items.""" - pass class Item(Object, HasDescription, FromDocument): @@ -48,22 +53,18 @@ class Item(Object, HasDescription, FromDocument): category = models.ForeignKey( ItemCategory, on_delete=models.CASCADE, - null=False - ) + null=False) requires_attunement = models.BooleanField( null=False, default=False, # An item is not magical unless specified. help_text='If the item requires attunement.') - rarity = models.IntegerField( - null=True, # Allow an unspecified size. - blank=True, - choices=ITEM_RARITY_CHOICES, - validators=[ - MinValueValidator(1), - MaxValueValidator(6)], - help_text='Integer representing the rarity of the object.') + rarity = models.ForeignKey( + "ItemRarity", + null=True, + on_delete=models.CASCADE, + help_text="Rarity object.") @property def is_magic_item(self): diff --git a/api_v2/models/language.py b/api_v2/models/language.py index 03d16f95..84206025 100644 --- a/api_v2/models/language.py +++ b/api_v2/models/language.py @@ -2,7 +2,7 @@ from django.db import models -from .abstracts import Object, HasName, HasDescription +from .abstracts import HasName, HasDescription from .document import FromDocument diff --git a/api_v2/models/object.py b/api_v2/models/object.py new file mode 100644 index 00000000..f9aa8014 --- /dev/null +++ b/api_v2/models/object.py @@ -0,0 +1,49 @@ +"""The abstract model for an object.""" + +from django.db import models +from django.core.validators import MaxValueValidator, MinValueValidator + +from .abstracts import HasName +from .size import Size +from .enums import OBJECT_ARMOR_CLASS_MAXIMUM, OBJECT_HIT_POINT_MAXIMUM + + +class Object(HasName): + """ + This is the definition of the Object abstract base class. + + The Object class will be inherited from by Item, Weapon, Character, etc. + Basically it describes any sort of matter in the 5e world. + """ + + size = models.ForeignKey( + "Size", + on_delete=models.CASCADE) + + weight = models.DecimalField( + default=0, + null=False, # Allow an unspecified weight. + max_digits=10, + decimal_places=3, + validators=[MinValueValidator(0)], + help_text='Number representing the weight of the object.') + + armor_class = models.IntegerField( + default=0, + null=False, # Allow an unspecified armor_class. + validators=[ + MinValueValidator(0), + MaxValueValidator(OBJECT_ARMOR_CLASS_MAXIMUM)], + help_text='Integer representing the armor class of the object.') + + hit_points = models.IntegerField( + default=0, + null=False, # Allow an unspecified hit point value. + validators=[ + MinValueValidator(0), + MaxValueValidator(OBJECT_HIT_POINT_MAXIMUM)], + help_text='Integer representing the hit points of the object.') + + class Meta: + abstract = True + ordering = ['pk'] diff --git a/api_v2/models/size.py b/api_v2/models/size.py new file mode 100644 index 00000000..b5e95fd4 --- /dev/null +++ b/api_v2/models/size.py @@ -0,0 +1,24 @@ +from django.db import models +from django.core.validators import MinValueValidator + +from .abstracts import HasName +from .document import FromDocument + +class Size(HasName, FromDocument): + """ + This is the definition of the Size class. + + The Size class will be used by Objects (and all children classes). + Basically it describes the size. + """ + + rank = models.IntegerField( + unique=True, + help_text='Ranking of the size, smallest has the lowest values.') + + space_diameter = models.DecimalField( + default=0, + max_digits=10, + decimal_places=3, + validators=[MinValueValidator(0)], + help_text='Number representing the diameter of the space controlled by the object.') diff --git a/api_v2/models/spell.py b/api_v2/models/spell.py index 899ec775..297685c1 100644 --- a/api_v2/models/spell.py +++ b/api_v2/models/spell.py @@ -10,23 +10,27 @@ from .document import FromDocument -from .enums import SPELL_SCHOOL_CHOICES, SPELL_TARGET_TYPE_CHOICES +from .enums import SPELL_TARGET_TYPE_CHOICES from .enums import SPELL_TARGET_RANGE_CHOICES, SPELL_CASTING_TIME_CHOICES from .enums import SPELL_EFFECT_SHAPE_CHOICES, SPELL_EFFECT_DURATIONS from .enums import CASTING_OPTION_TYPES +class SpellSchool(HasName, HasDescription, FromDocument): + """The model for a spell school object.""" + + class Spell(HasName, HasDescription, FromDocument): """The model for a spell object.""" - version = 'default' # Casting options and requirements of a spell instance level = models.IntegerField( validators=[MinValueValidator(0), MaxValueValidator(9)], help_text='Integer representing the default slot level required by the spell.') - school = models.TextField( - choices = SPELL_SCHOOL_CHOICES, - help_text = "Spell school key, such as 'evocation'") + school = models.ForeignKey( + "SpellSchool", + on_delete=models.CASCADE, + help_text="Spell school, such as 'evocation'") higher_level = models.TextField( help_text = "Description of casting the spell at a different level.") diff --git a/api_v2/models/validators.py b/api_v2/models/validators.py deleted file mode 100644 index 33d179df..00000000 --- a/api_v2/models/validators.py +++ /dev/null @@ -1,48 +0,0 @@ -from django.core.exceptions import ValidationError - - -def spell_school_validator(value): - '''A validator for spell schools strings. Input must be lowercase.''' - options = [ - 'abjuration', - 'conjuration', - 'divination', - 'enchantment', - 'evocation', - 'illusion', - 'necromancy', - 'transmutation' - ] - if value not in options: - raise ValidationError('Spell school {} not in valid school options. Value must be lowercase.'.format(value)) - - -def damage_type_validator(value): - '''A validator for damage types for spells. Input must be lowercase.''' - options = [ - 'acid', - 'cold', - 'fire', - 'force', - 'lightning', - 'necrotic', - 'poison', - 'psychic', - 'radiant', - 'thunder' - ] - if value not in options: - raise ValidationError('Spell damage type {} not in valid options. Value must be lowercase.'.format(value)) - - -def area_of_effect_shape_validator(value): - '''A validator for spell area of effects. Input must be lowercase.''' - options = [ - 'cone', - 'cube', - 'cylinder', - 'line', - 'sphere' - ] - if value not in options: - raise ValidationError('Spell area of effect {} not in valid options. Value must be lowercase.'.format(value)) \ No newline at end of file diff --git a/api_v2/models/weapon.py b/api_v2/models/weapon.py index 4bb07419..49a7fd4d 100644 --- a/api_v2/models/weapon.py +++ b/api_v2/models/weapon.py @@ -15,16 +15,13 @@ class Weapon(HasName, FromDocument): Only the unique attributes of a weapon are here. An item that is a weapon would link to this model instance. """ - DAMAGE_TYPE_CHOICES = [ - ("bludgeoning", "bludgeoning"), - ("piercing", "piercing"), - ("slashing", "slashing")] - damage_type = models.CharField( - null=False, - choices=DAMAGE_TYPE_CHOICES, - max_length=100, - help_text='The damage type dealt by attacks with the weapon.') + damage_type = models.ForeignKey( + "DamageType", + null=True, + related_name="+", # No backwards relation. + on_delete=models.CASCADE, + help_text='What kind of damage this weapon deals') damage_dice = models.CharField( null=False, diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index 768ed04f..e2a22d18 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -3,6 +3,7 @@ from .item import ArmorSerializer from .item import WeaponSerializer from .item import ItemSerializer +from .item import ItemRaritySerializer from .item import ItemSetSerializer from .item import ItemCategorySerializer @@ -37,3 +38,5 @@ from .characterclass import CharacterClassSerializer from .characterclass import FeatureSerializer from .characterclass import FeatureItemSerializer + +from .size import SizeSerializer diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index 3ef8ea07..a28dd9df 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -7,6 +7,7 @@ from api_v2 import models from .abstracts import GameContentSerializer +from .size import SizeSerializer @@ -61,7 +62,7 @@ def make_attack_obj(attack): attack.damage_die_count, attack.damage_die_type, attack.damage_bonus, - attack.damage_type + attack.damage_type.key ) if attack.extra_damage_type: @@ -69,7 +70,7 @@ def make_attack_obj(attack): attack.extra_damage_die_count, attack.extra_damage_die_type, attack.extra_damage_bonus, - attack.extra_damage_type + attack.extra_damage_type.key ) return obj @@ -103,6 +104,7 @@ class CreatureSerializer(GameContentSerializer): skill_bonuses = serializers.SerializerMethodField() all_skill_bonuses = serializers.SerializerMethodField() actions = serializers.SerializerMethodField() + size = SizeSerializer(read_only=True, context={'request': {}}) class Meta: model = models.Creature @@ -111,8 +113,8 @@ class Meta: 'document', 'key', 'name', - 'category', 'size', + 'category', 'type', 'alignment', 'weight', diff --git a/api_v2/serializers/item.py b/api_v2/serializers/item.py index dbd417c1..452138cd 100644 --- a/api_v2/serializers/item.py +++ b/api_v2/serializers/item.py @@ -5,6 +5,8 @@ from api_v2 import models from .abstracts import GameContentSerializer +from .size import SizeSerializer + class ArmorSerializer(GameContentSerializer): @@ -29,12 +31,20 @@ class Meta: model = models.Weapon fields = '__all__' +class ItemRaritySerializer(GameContentSerializer): + key=serializers.ReadOnlyField() + + class Meta: + model = models.ItemRarity + fields = '__all__' class ItemSerializer(GameContentSerializer): key = serializers.ReadOnlyField() is_magic_item = serializers.ReadOnlyField() weapon = WeaponSerializer(read_only=True, context={'request': {}}) + size = SizeSerializer(read_only=True, context={'request': {}}) armor = ArmorSerializer(read_only=True, context={'request': {}}) + rarity = ItemRaritySerializer(read_only=True, context={'request': {}}) class Meta: model = models.Item diff --git a/api_v2/serializers/size.py b/api_v2/serializers/size.py new file mode 100644 index 00000000..6d57ee05 --- /dev/null +++ b/api_v2/serializers/size.py @@ -0,0 +1,15 @@ +"""Serializer for the Size model.""" + +from rest_framework import serializers + +from api_v2 import models + +from .abstracts import GameContentSerializer + +class SizeSerializer(GameContentSerializer): + """Serializer for the Size type""" + key = serializers.ReadOnlyField() + + class Meta: + model = models.Size + fields = '__all__' diff --git a/api_v2/serializers/spell.py b/api_v2/serializers/spell.py index 844cb9ef..3e282ad9 100644 --- a/api_v2/serializers/spell.py +++ b/api_v2/serializers/spell.py @@ -6,6 +6,11 @@ from .abstracts import GameContentSerializer +class SpellSchoolSerializer(serializers.ModelSerializer): + class Meta: + model = models.SpellSchool + fields='__all__' + class CastingOptionSerializer(serializers.ModelSerializer): # type=serializers.ReadOnlyField() @@ -20,11 +25,11 @@ class Meta: # fields = '__all__' - class SpellSerializer(GameContentSerializer): key = serializers.ReadOnlyField() slot_expended=serializers.ReadOnlyField() casting_options = CastingOptionSerializer(many=True) + school = SpellSchoolSerializer() class Meta: model = models.Spell diff --git a/api_v2/views/__init__.py b/api_v2/views/__init__.py index 0faae13f..5e9ce1aa 100644 --- a/api_v2/views/__init__.py +++ b/api_v2/views/__init__.py @@ -17,6 +17,7 @@ from .item import ItemFilterSet, ItemViewSet from .item import ItemSetFilterSet, ItemSetViewSet from .item import ItemCategoryViewSet +from .item import ItemRarityViewSet from .item import ArmorFilterSet, ArmorViewSet from .item import WeaponFilterSet, WeaponViewSet @@ -31,3 +32,7 @@ from .spell import SpellViewSet from .characterclass import CharacterClassViewSet + +from .size import SizeViewSet + +from .enum import get_enums diff --git a/api_v2/views/creature.py b/api_v2/views/creature.py index dc5146da..b3eb9723 100644 --- a/api_v2/views/creature.py +++ b/api_v2/views/creature.py @@ -14,7 +14,7 @@ class Meta: 'key': ['in', 'iexact', 'exact' ], 'name': ['iexact', 'exact'], 'document__key': ['in','iexact','exact'], - 'size': ['exact'], + 'size': ['exact'], 'armor_class': ['exact','lt','lte','gt','gte'], 'ability_score_strength': ['exact','lt','lte','gt','gte'], 'ability_score_dexterity': ['exact','lt','lte','gt','gte'], diff --git a/api_v2/views/enum.py b/api_v2/views/enum.py new file mode 100644 index 00000000..707a7cf4 --- /dev/null +++ b/api_v2/views/enum.py @@ -0,0 +1,17 @@ +from rest_framework.decorators import api_view +from rest_framework.response import Response + +from api_v2.models import enums + + +@api_view() +def get_enums(_): + """ + API endpoint for enums. + """ + e = [] + for key,value in enums.__dict__.items(): + if not key.startswith("__"): + e.append({key:value}) + + return Response(e) diff --git a/api_v2/views/item.py b/api_v2/views/item.py index a96344b8..bb1a3f9f 100644 --- a/api_v2/views/item.py +++ b/api_v2/views/item.py @@ -18,7 +18,7 @@ class Meta: 'desc': ['icontains'], 'cost': ['exact', 'range', 'gt', 'gte', 'lt', 'lte'], 'weight': ['exact', 'range', 'gt', 'gte', 'lt', 'lte'], - 'rarity': ['exact', 'in', ], +# 'rarity': ['exact', 'in', ], 'requires_attunement': ['exact'], #'category': ['in', 'iexact', 'exact'], 'document__key': ['in','iexact','exact'] @@ -36,6 +36,17 @@ class ItemViewSet(viewsets.ReadOnlyModelViewSet): filterset_class = ItemFilterSet +class ItemRarityViewSet(viewsets.ReadOnlyModelViewSet): + """ + list: API endpoint for returning a list of item rarities. + + retrieve: API endpoint for returning a particular item rarity. + """ + queryset = models.ItemRarity.objects.all().order_by('pk') + serializer_class = serializers.ItemRaritySerializer + + + class ItemSetFilterSet(FilterSet): class Meta: @@ -68,8 +79,6 @@ class ItemCategoryViewSet(viewsets.ReadOnlyModelViewSet): serializer_class = serializers.ItemCategorySerializer - - class WeaponFilterSet(FilterSet): class Meta: @@ -78,7 +87,6 @@ class Meta: 'key': ['in', 'iexact', 'exact' ], 'name': ['iexact', 'exact'], 'document__key': ['in','iexact','exact'], - 'damage_type': ['in','iexact','exact'], 'damage_dice': ['in','iexact','exact'], 'versatile_dice': ['in','iexact','exact'], 'range_reach': ['exact','lt','lte','gt','gte'], diff --git a/api_v2/views/size.py b/api_v2/views/size.py new file mode 100644 index 00000000..54851214 --- /dev/null +++ b/api_v2/views/size.py @@ -0,0 +1,16 @@ +from rest_framework import viewsets + +from api_v2 import models +from api_v2 import serializers + + +class SizeViewSet(viewsets.ReadOnlyModelViewSet): + """ + list: API endpoint for returning a list of damage types. + retrieve: API endpoint for returning a particular damage type. + """ + queryset = models.Size.objects.all().order_by('pk') + serializer_class = serializers.SizeSerializer + + + diff --git a/data/v2/en-publishing/a5esrd/Spell.json b/data/v2/en-publishing/a5esrd/Spell.json index 2cd7bc41..5c01efc7 100644 --- a/data/v2/en-publishing/a5esrd/Spell.json +++ b/data/v2/en-publishing/a5esrd/Spell.json @@ -7,7 +7,7 @@ "desc": "You play a complex and quick up-tempo piece that gradually gets faster and more complex, instilling the targets with its speed. You cannot cast another spell through your spellcasting focus while concentrating on this spell.\n\nUntil the spell ends, targets gain cumulative benefits the longer you maintain concentration on this spell (including the turn you cast it).\n\n* **1 Round:** Double Speed.\n* **2 Rounds:** +2 bonus to AC.\n* **3 Rounds:** Advantage on Dexterity saving throws.\n* **4 Rounds:** An additional action each turn. This action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, a target can't move or take actions until after its next turn as the impact of their frenetic speed catches up to it.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "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", @@ -38,7 +38,7 @@ "desc": "A jet of acid streaks towards the target like a hissing, green arrow. Make a ranged spell attack.\n\nOn a hit the target takes 4d4 acid damage and 2d4 ongoing acid damage for 1 round. On a miss the target takes half damage.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "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", @@ -71,7 +71,7 @@ "desc": "A stinking bubble of acid is conjured out of thin air to fly at the targets, dealing 1d6 acid damage.", "document": "a5esrd", "level": 0, - "school": "Conjuration", + "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", @@ -102,7 +102,7 @@ "desc": "You draw upon divine power, imbuing the targets with fortitude. Until the spell ends, each target increases its hit point maximum and current hit points by 5.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "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", @@ -133,7 +133,7 @@ "desc": "Your deft weapon swing sends a wave of cutting air to assault a creature within range. Make a melee weapon attack against the target. If you are wielding one weapon in each hand, your attack deals an additional 1d6 damage. Regardless of the weapon you are wielding, your attack deals slashing damage.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", "target_type": "creature", "range": "30 feet", @@ -164,7 +164,7 @@ "desc": "You set an alarm against unwanted intrusion that alerts you whenever a creature of size Tiny or larger touches or enters the warded area. When you cast the spell, choose any number of creatures. These creatures don't set off the alarm.\n\nChoose whether the alarm is silent or audible. The silent alarm is heard in your mind if you are within 1 mile of the warded area and it awakens you if you are sleeping. An audible alarm produces a loud noise of your choosing for 10 seconds within 60 feet.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "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", @@ -195,7 +195,7 @@ "desc": "You use magic to mold yourself into a new form. Choose one of the options below. Until the spell ends, you can use an action to choose a different option.\n\n* **Amphibian:** Your body takes on aquatic adaptations. You can breathe underwater normally and gain a swimming speed equal to your base Speed.\n* **Altered State:** You decide what you look like. \n \nNone of your gameplay statistics change but you can alter anything about your body's appearance, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, sound of your voice, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot become a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to become a quadruped. Until the spell ends, you can use an action to change your appearance.\n* **Red in Tooth and Claw:** You grow magical natural weapons of your choice with a +1 bonus to attack and damage. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage of a type determined by the natural weapon you chose; for example a tentacle deals bludgeoning, a horn deals piercing, and claws deal slashing.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -226,7 +226,7 @@ "desc": "You briefly transform your weapon or fist into another material and strike with it, making a melee weapon attack against a target within your reach.\n\nYou use your spellcasting ability for your attack and damage rolls, and your melee weapon attack counts as if it were made with a different material for the purpose of overcoming resistance and immunity to nonmagical attacks and damage: either bone, bronze, cold iron, steel, stone, or wood.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "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", @@ -257,7 +257,7 @@ "desc": "The target is bombarded with a fraction of energy stolen from some slumbering, deific source, immediately taking 40 radiant damage. This spell ignores resistances but does not ignore immunities. A creature killed by this spell does not decay and cannot become undead for the spell's duration. Days spent under the influence of this spell don't count against the time limit of spells such as _raise dead_. This effect ends early if the corpse takes necrotic damage.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "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", @@ -290,7 +290,7 @@ "desc": "You allow your inner beauty to shine through in song and dance whether to call a bird from its tree or a badger from its sett. Until the spell ends or one of your companions harms it (whichever is sooner), the target is charmed by you.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "Choose one additional target for each slot level above 1st.", "target_type": "creature", "range": "30 feet", @@ -321,7 +321,7 @@ "desc": "You call a Tiny beast to you, whisper a message to it, and then give it directions to the message's recipient. It is now your messenger.\n\nSpecify a location you have previously visited and a recipient who matches a general description, such as \"a person wearing a pointed red hat in Barter Town\" or \"a half-orc in a wheelchair at the Striped Lion Inn.\" Speak a message of up to 25 words. For the duration of the spell, the messenger travels towards the location at a rate of 50 miles per day for a messenger with a flying speed, or else 25 miles without.\n\nWhen the messenger arrives, it delivers your message to the first creature matching your description, replicating the sound of your voice exactly. If the messenger can't find the recipient or reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "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", @@ -352,7 +352,7 @@ "desc": "You transform the bodies of creatures into beasts without altering their minds. Each target transforms into a Large or smaller beast with a Challenge Rating of 4 or lower. Each target may have the same or a different form than other targets.\n\nOn subsequent turns, you can use your action to transform targets into new forms, gaining new hit points when they do so.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points) are replaced by the statistics of the chosen beast excepting its Intelligence, Wisdom, and Charisma scores. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effect on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", "document": "a5esrd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -383,7 +383,7 @@ "desc": "You animate a mortal's remains to become your undead servant.\n\nIf the spell is cast upon bones you create a skeleton, and if cast upon a corpse you choose to create a skeleton or a zombie. The Narrator has the undead's statistics.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours.\n\nCasting the spell in this way reasserts control over up to 4 of your previously-animated undead instead of animating a new one.", "document": "a5esrd", "level": 3, - "school": "Necromancy", + "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", @@ -414,7 +414,7 @@ "desc": "Objects come to life at your command just like you dreamt of when you were an apprentice! Choose up to 6 unattended nonmagical Small or Tiny objects. You may also choose larger objects; treat Medium objects as 2 objects, Large objects as 3 objects, and Huge objects as 6 objects. You can't animate objects larger than Huge.\n\nUntil the spell ends or a target is reduced to 0 hit points, you animate the targets and turn them into constructs under your control.\n\nEach construct has Constitution 10, Intelligence 3, Wisdom 3, and Charisma 1, as well as a flying speed of 30 feet and the ability to hover (if securely fastened to something larger, it has a Speed of 0), and blindsight to a range of 30 feet (blind beyond that distance). Otherwise a construct's statistics are determined by its size.\n\nIf you animate 4 or more Small or Tiny objects, instead of controlling each construct individually they function as a construct swarm. Add together all swarm's total hit points. Attacks against a construct swarm deal half damage. The construct swarm reverts to individual constructs when it is reduced to 15 hit points or less.\n\nYou can use a bonus action to mentally command any construct made with this spell while it is within 500 feet. When you command multiple constructs using this spell, you may simultaneously give them all the same command. You decide the action the construct takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. Without commands the construct only defends itself. The construct continues to follow a command until its task is complete.\n\nWhen you command a construct to attack, it makes a single slam melee attack against a creature within 5 feet of it. On a hit the construct deals bludgeoning, piercing, or slashing damage appropriate to its shape.\n\nWhen the construct drops to 0 hit points, any excess damage carries over to its normal object form.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "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", @@ -445,7 +445,7 @@ "desc": "A barrier that glimmers with an oily rainbow hue pops into existence around you. The barrier moves with you and prevents creatures other than undead and constructs from passing or reaching through its surface.\n\nThe barrier does not prevent spells or attacks with ranged or reach weapons from passing through the barrier.\n\nThe spell ends if you move so that a Tiny or larger living creature is forced to pass through the barrier.", "document": "a5esrd", "level": 5, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -476,7 +476,7 @@ "desc": "An invisible sphere of antimagic forms around you, moving with you and suppressing all magical effects within it. At the Narrator's discretion, sufficiently powerful artifacts and deities may be able to ignore the sphere's effects.\n\n* **Area Suppression:** When a magical effect protrudes into the sphere, that part of the effect's area is suppressed. For example, the ice created by a wall of ice is suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n* **Creatures and Objects:** While within the sphere, any creatures or objects created or conjured by magic temporarily wink out of existence, reappearing immediately once the space they occupied is no longer within the sphere.\n* **Dispel Magic:** The sphere is immune to dispel magic and similar magical effects, including other antimagic field spells.\n* **Magic Items:** While within the sphere, magic items function as if they were mundane objects. Magic weapons and ammunition cease to be suppressed when they fully leave the sphere.\n* **Magical Travel:** Whether the sphere includes a destination or departure point, any planar travel or teleportation within it automatically fails. Until the spell ends or the sphere moves, magical portals and extradimensional spaces (such as that created by a bag of holding) within the sphere are closed.\n* **Spells:** Any spell cast within the sphere or at a target within the sphere is suppressed and the spell slot is consumed. Active spells and magical effects are also suppressed within the sphere. If a spell or magical effect has a duration, time spent suppressed counts against it.", "document": "a5esrd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Self", @@ -507,7 +507,7 @@ "desc": "You mystically impart great love or hatred for a place, thing, or creature. Designate a kind of intelligent creature, such as dragons, goblins, or vampires.\n\nThe target now causes either antipathy or sympathy for the specified creatures for the duration of the spell. When a designated creature successfully saves against the effects of this spell, it immediately understands it was under a magical effect and is immune to this spell's effects for 1 minute.\n\n* **Antipathy:** When a designated creature can see the target or comes within 60 feet of it, the creature makes a Wisdom saving throw or becomes frightened. While frightened the creature must use its movement to move away from the target to the nearest safe spot from which it can no longer see the target. If the creature moves more than 60 feet from the target and can no longer see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n* **Sympathy:** When a designated creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw. On a failure, the creature uses its movement on each of its turns to enter the area or move within reach of the target, and is unwilling to move away from the target. \nIf the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect. An affected creature can also make a saving throw once every 24 hours while within the area of the spell, and whenever it ends its turn more than 60 feet from the target and is unable to see the target.", "document": "a5esrd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -538,7 +538,7 @@ "desc": "Until the spell ends, you create an invisible, floating magical eye that hovers in the air and sends you visual information. The eye has normal vision, darkvision to a range of 30 feet, and it can look in every direction.\n\nYou can use an action to move the eye up to 30 feet in any direction as long as it remains on the same plane of existence. The eye can pass through openings as small as 1 inch across but otherwise its movement is blocked by solid barriers.", "document": "a5esrd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -569,7 +569,7 @@ "desc": "You create a Large hand of shimmering, translucent force that mimics the appearance and movements of your own hand.\n\nThe hand doesn't fill its space and has AC 20, Strength 26 (+8), Dexterity 10 (+0), maneuver DC 18, and hit points equal to your hit point maximum. The spell ends early if it is dropped to 0 hit points.\n\nWhen you cast the spell and as a bonus action on subsequent turns, you can move the hand up to 60 feet and then choose one of the following.\n\n* **_Shove:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the hand pushes the creature in a direction of your choosing for up to 5 feet plus a number of feet equal to 5 times your spellcasting ability modifier, and remains within 5 feet of it.\n* **_Smash:_** Make a melee spell attack against a creature or object within 5 feet of the hand. On a hit, the hand deals 4d8 force damage.\n* **_Snatch:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the creature is grappled by the hand. You can use a bonus action to crush a creature grappled by the hand, dealing bludgeoning damage equal to 2d6 + your spellcasting ability modifier.\n* **_Stop:_** Until the hand is given another command it moves to stay between you and a creature of your choice, providing you with three-quarters cover against the chosen creature. A creature with a Strength score of 26 or less cannot move through the hand's space, and stronger creatures treat the hand as difficult terrain.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "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", @@ -600,7 +600,7 @@ "desc": "The target is sealed to all creatures except those you designate (who can open the object normally). Alternatively, you may choose a password that suppresses this spell for 1 minute when it is spoken within 5 feet of the target. The spell can also be suppressed for 10 minutes by casting _knock_ on the target. Otherwise, the target cannot be opened normally and it is more difficult to break or force open, increasing the DC to break it or pick any locks on it by 10 (minimum DC 20).", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "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", @@ -631,7 +631,7 @@ "desc": "Your muscles swell with arcane power. They're too clumsy to effectively wield weapons but certainly strong enough for a powerful punch. Until the spell ends, you can choose to use your spellcasting ability score for Athletics checks, and for the attack and damage rolls of unarmed strikes. In addition, your unarmed strikes deal 1d6 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -662,7 +662,7 @@ "desc": "You respond to an incoming attack with a magically-infused attack of your own. Make a melee spell attack against the creature that attacked you. If you hit, the creature takes 3d6 acid, cold, fire, lightning, poison, or thunder damage.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "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", @@ -700,7 +700,7 @@ "desc": "You summon an insubstantial yet deadly sword to do your bidding.\n\nMake a melee spell attack against a target of your choice within 5 feet of the sword, dealing 3d10 force damage on a hit.\n\nUntil the spell ends, you can use a bonus action on subsequent turns to move the sword up to 20 feet to a space you can see and make an identical melee spell attack against a target.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -731,7 +731,7 @@ "desc": "You craft an illusion to deceive others about the target's true magical properties.\n\nChoose one or both of the following effects. When cast upon the same target with the same effect for 30 successive days, it lasts until it is dispelled.\n\n* **False Aura:** A magical target appears nonmagical, a nonmagical target appears magical, or you change a target's magical aura so that it appears to belong to a school of magic of your choosing. Additionally, you can choose to make the false magic apparent to any creature that handles the item.\n* **Masking Effect:** Choose a creature type. Spells and magical effects that detect creature types (such as a herald's Divine Sense or the trigger of a symbol spell) treat the target as if it were a creature of that type. Additionally, you can choose to mask the target's alignment trait (if it has one).", "document": "a5esrd", "level": 2, - "school": "Illusion", + "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", @@ -762,7 +762,7 @@ "desc": "You throw your head back and howl like a beast, embracing your most basic impulses. Until the spell ends your hair grows, your features become more feral, and sharp claws grow on your fingers. You gain a +1 bonus to AC, your Speed increases by 10 feet, you have advantage on Perception checks, and your unarmed strikes deal 1d8 slashing damage. You may use your Strength or Dexterity for attack and damage rolls with unarmed strikes, and treat your unarmed strikes as weapons with the finesse property. You gain an additional action on your turn, which may only be used to make a melee attack with your unarmed strike. If you are hit by a silvered weapon, you have disadvantage on your Constitution saving throw to maintain concentration.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -793,7 +793,7 @@ "desc": "Until the spell ends, the targets leave their material bodies (unconscious and in a state of suspended animation, not aging or requiring food or air) and project astral forms that resemble their mortal forms in nearly all ways, keeping their game statistics and possessions.\n\nWhile in this astral form you trail a tether, a silvery-white cord that sprouts from between your shoulder blades and fades into immateriality a foot behind you. As long as the tether remains intact you can find your way back to your material body. When it is cut—which requires an effect specifically stating that it cuts your tether —your soul and body are separated and you immediately die. Damage against and other effects on your astral form have no effect on your material body either during this spell or after its duration ends. Your astral form travels freely through the Astral Plane and can pass through interplanar portals on the Astral Plane leading to any other plane. When you enter a new plane or return to the plane you were on when casting this spell, your material body and possessions are transported along the tether, allowing you to return fully intact with all your gear as you enter the new plane.\n\nThe spell ends for all targets when you use an action to dismiss it, for an individual target when a successful dispel magic is cast upon its astral form or material body, or when either its material body or its astral form drops to 0 hit points. When the spell ends for a target and the tether is intact, the tether pulls the target's astral form back to its material body, ending the suspended animation.\n\nIf the spell ends for you prematurely, other targets remain in their astral forms and must find their own way back to their bodies (usually by dropping to 0 hit points).", "document": "a5esrd", "level": 9, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "point", "range": "Touch", @@ -824,7 +824,7 @@ "desc": "With the aid of a divining tool, you receive an omen from beyond the Material Plane about the results of a specific course of action that you intend to take within the next 30 minutes. The Narrator chooses from the following:\n\n* Fortunate omen (good results)\n* Calamity omen (bad results)\n* Ambivalence omen (both good and bad results)\n* No omen (results that aren't especially good or bad)\n\nThis omen does not account for possible circumstances that could change the outcome, such as making additional preparations.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", "document": "a5esrd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -855,7 +855,7 @@ "desc": "You impart sentience in the target, granting it an Intelligence of 10 and proficiency in a language you know. A plant targeted by this spell gains the ability to move, as well as senses identical to those of a human. The Narrator assigns awakened plant statistics (such as an awakened shrub or awakened tree).\n\nThe target is charmed by you for 30 days or until you or your companions harm it. Depending on how you treated the target while it was charmed, when the condition ends the awakened creature may choose to remain friendly to you.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "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", @@ -886,7 +886,7 @@ "desc": "The senses of the targets are filled with phantom energies that make them more vulnerable and less capable. Until the spell ends, a d4 is subtracted from attack rolls and saving throws made by a target.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "You target an additional creature for each slot level above 1st.", "target_type": "creature", "range": "30 feet", @@ -917,7 +917,7 @@ "desc": "You employ sheer force of will to make reality question the existence of a nearby creature, causing them to warp visibly in front of you.\n\nUntil the spell ends, a target native to your current plane is banished to a harmless demiplane and incapacitated. At the end of the duration the target reappears in the space it left (or the nearest unoccupied space). A target native to a different plane is instead banished to its native plane.\n\nAt the end of each of its turns, a banished creature can repeat the saving throw with a -1 penalty for each round it has spent banished, returning on a success. If the spell ends before its maximum duration, the target reappears in the space it left (or the nearest unoccupied space) but otherwise a target native to a different plane doesn't return.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", "target_type": "creature", "range": "60 feet", @@ -948,7 +948,7 @@ "desc": "The target's skin takes on the texture and appearance of bark, increasing its AC to 16 (unless its AC is already higher).", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", "target_type": "creature", "range": "Touch", @@ -979,7 +979,7 @@ "desc": "You fill your allies with a thirst for glory and battle using your triumphant rallying cry. Expend and roll a Bardic Inspiration die to determine the number of rounds you can maintain concentration on this spell (minimum 1 round). Each target gains a bonus to attack and damage rolls equal to the number of rounds you have maintained concentration on this spell (maximum +4).\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -1010,7 +1010,7 @@ "desc": "The targets are filled with hope and vitality.\n\nUntil the spell ends, each target gains advantage on Wisdom saving throws and death saving throws, and when a target receives healing it regains the maximum number of hit points possible.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -1041,7 +1041,7 @@ "desc": "Choose one of the following:\n\n* Select one ability score; the target has disadvantage on ability checks and saving throws using that ability score.\n* The target makes attack rolls against you with disadvantage.\n* Each turn, the target loses its action unless it succeeds a Wisdom saving throw at the start of its turn.\n* Your attacks and spells deal an additional 1d8 necrotic damage against the target.\n\nA curse lasts until the spell ends. At the Narrator's discretion you may create a different curse effect with this spell so long as it is weaker than the options above.\n\nA _remove curse_ spell ends the effect if the spell slot used to cast it is equal to or greater than the spell slot used to cast _bestow curse_.", "document": "a5esrd", "level": 3, - "school": "Necromancy", + "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", @@ -1072,7 +1072,7 @@ "desc": "Writhing black tentacles fill the ground within the area turning it into difficult terrain. When a creature starts its turn in the area or enters the area for the first time on its turn, it takes 3d6 bludgeoning damage and is restrained by the tentacles unless it succeeds on a Dexterity saving throw. A creature that starts its turn restrained by the tentacles takes 3d6 bludgeoning damage.\n\nA restrained creature can use its action to make an Acrobatics or Athletics check against the spell save DC, freeing itself on a success.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", "target_type": "area", "range": "60 feet", @@ -1105,7 +1105,7 @@ "desc": "You create a wall of slashing blades. The wall can be up to 20 feet high and 5 feet thick, and can either be a straight wall up to 100 feet long or a ringed wall of up to 60 feet in diameter. The wall provides three-quarters cover and its area is difficult terrain.\n\nWhen a creature starts its turn within the wall's area or enters the wall's area for the first time on a turn, it makes a Dexterity saving throw, taking 6d10 slashing damage on a failed save, or half as much on a successful save.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 6th.", "target_type": "area", "range": "120 feet", @@ -1136,7 +1136,7 @@ "desc": "The blessing you bestow upon the targets makes them more durable and competent. Until the spell ends, a d4 is added to attack rolls and saving throws made by a target.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "You target one additional creature for each slot level above 1st.", "target_type": "creature", "range": "30 feet", @@ -1167,7 +1167,7 @@ "desc": "Necrotic energies drain moisture and vitality from the target, dealing 8d8 necrotic damage. Undead and constructs are immune to this spell.\n\nA plant creature or magical plant has disadvantage on its saving throw and takes the maximum damage possible from this spell. A nonmagical plant that isn't a creature receives no saving throw and instead withers until dead.", "document": "a5esrd", "level": 4, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", "range": "30 feet", @@ -1198,7 +1198,7 @@ "desc": "Until the spell ends, the target is blinded or deafened (your choice). At the end of each of its turns the target can repeat its saving throw, ending the spell on a success.", "document": "a5esrd", "level": 2, - "school": "Necromancy", + "school": "necromancy", "higher_level": "You target one additional creature for each slot level above 2nd.", "target_type": "creature", "range": "30 feet", @@ -1229,7 +1229,7 @@ "desc": "Until the spell ends, roll 1d20 at the end of each of your turns. When you roll an 11 or higher you disappear and reappear in the Ethereal Plane (if you are already on the Ethereal Plane, the spell fails and the spell slot is wasted). At the start of your next turn you return to an unoccupied space that you can see within 10 feet of where you disappeared from. If no unoccupied space is available within range, you reappear in the nearest unoccupied space (determined randomly when there are multiple nearest choices). As an action, you can dismiss this spell.\n\nWhile on the Ethereal Plane, you can see and hear into the plane you were originally on out to a range of 60 feet, but everything is obscured by mist and in shades of gray. You can only target and be targeted by other creatures on the Ethereal Plane.\n\nCreatures on your original plane cannot perceive or interact with you, unless they are able to interact with the Ethereal Plane.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1260,7 +1260,7 @@ "desc": "This spell creates a pact which is enforced by celestial or fiendish forces. You and another willing creature commit to a mutual agreement, clearly declaring your parts of the agreement during the casting.\n\nUntil the spell ends, if for any reason either participant breaks the agreement or fails to uphold their part of the bargain, beings of celestial or fiendish origin appear within unoccupied spaces as close as possible to the participant who broke the bargain. The beings are hostile to the deal-breaking participant and attempt to kill them, as well as any creatures that defend them. When the dealbreaking participant is killed, or the spell's duration ends, the beings disappear in a flash of smoke.\n\nThe spellcaster chooses whether the beings are celestial or fiendish while casting the spell, and the Narrator chooses the exact creatures summoned (such as a couatl or 5 imps). There may be any number of beings, but their combined Challenge Rating can't exceed 5.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "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", @@ -1291,7 +1291,7 @@ "desc": "Until the spell ends, you are shrouded in distortion and your image is blurred. Creatures make attack rolls against you with disadvantage unless they have senses that allow them to perceive without sight or to see through illusions (like blindsight or truesight).", "document": "a5esrd", "level": 2, - "school": "Illusion", + "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", @@ -1322,7 +1322,7 @@ "desc": "A thin sheet of flames shoots forth from your outstretched hands. Each creature in the area takes 3d6 fire damage. The fire ignites any flammable unattended objects in the area.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -1355,7 +1355,7 @@ "desc": "You instantly know the answer to any mathematical equation that you speak aloud. The equation must be a problem that a creature with Intelligence 20 could solve using nonmagical tools with 1 hour of calculation. Additionally, you gain an expertise die on Engineering checks made during the duration of the spell.\n\nNote: Using the _calculate_ cantrip allows a player to make use of a calculator at the table in order to rapidly answer mathematical equations.", "document": "a5esrd", "level": 0, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1386,7 +1386,7 @@ "desc": "You surround yourself with a dampening magical field and collect the energy of a foe's attack to use against them. When you take damage from a weapon attack, you can end the spell to halve the attack's damage against you, gaining a retribution charge that lasts until the end of your next turn. By expending the retribution charge when you hit with a melee attack, you deal an additional 2d10 force damage.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "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", @@ -1417,7 +1417,7 @@ "desc": "A 60-foot radius storm cloud that is 10 feet high appears in a space 100 feet above you. If there is not a point in the air above you that the storm cloud could appear, the spell fails (such as if you are in a small cavern or indoors).\n\nOn the round you cast it, and as an action on subsequent turns until the spell ends, you can call down a bolt of lightning to a point directly beneath the cloud. Each creature within 5 feet of the point makes a Dexterity saving throw, taking 3d10 lightning damage on a failed save or half as much on a successful one.\n\nIf you are outdoors in a storm when you cast this spell, you take control of the storm instead of creating a new cloud and the spell's damage is increased by 1d10.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", "target_type": "point", "range": "100 feet", @@ -1448,7 +1448,7 @@ "desc": "Strong and harmful emotions are suppressed within the area. You can choose which of the following two effects to apply to each target of this spell.\n\n* Suppress the charmed or frightened conditions, though they resume when the spell ends (time spent suppressed counts against a condition's duration).\n* Suppress hostile feelings towards creatures of your choice until the spell ends. This suppression ends if a target is attacked or sees its allies being attacked. Targets act normally when the spell ends.", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", "target_type": "area", "range": "60 feet", @@ -1479,7 +1479,7 @@ "desc": "You perform a religious ceremony during the casting time of this spell. When you cast the spell, you choose one of the following effects, any targets of which must be within range during the entire casting.\n\n* **Funeral:** You bless one or more corpses, acknowledging their transition away from this world. For the next week, they cannot become undead by any means short of a wish spell. This benefit lasts indefinitely regarding undead of CR 1/4 or less. A corpse can only benefit from this effect once.\n* **Guide the Passing:** You bless one or more creatures within range for their passage into the next life. For the next 7 days, their souls cannot be trapped or captured by any means short of a wish spell. Once a creature benefits from this effect, it can't do so again until it has been restored to life.\n* **Offering:** The gifts of the faithful are offered to the benefit of the gods and the community. Choose one skill or tool proficiency and target a number of creatures equal to your proficiency bonus that are within range. When a target makes an ability check using the skill or tool within the next week, it can choose to use this benefit to gain an expertise die on the check. A creature can be targeted by this effect no more than once per week.\n* **Purification:** A creature you touch is washed with your spiritual energy. Choose one disease or possession effect on the target. If the save DC for that effect is equal to or lower than your spell save DC, the effect ends.\n* **Rite of Passage:** You shepherd one or more creatures into the next phase of life, such as in a child dedication, coming of age, marriage, or conversion ceremony. These creatures gain inspiration. A creature can benefit from this effect no more than once per year.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -1510,7 +1510,7 @@ "desc": "You fire a bolt of electricity at the primary target that deals 10d8 lightning damage. Electricity arcs to up to 3 additional targets you choose that are within 30 feet of the primary target.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "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", @@ -1541,7 +1541,7 @@ "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", "document": "a5esrd", "level": 4, - "school": "Enchantment", + "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", @@ -1572,7 +1572,7 @@ "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "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", @@ -1603,7 +1603,7 @@ "desc": "You reach out with a spectral hand that carries the chill of death. Make a ranged spell attack. On a hit, the target takes 1d8 necrotic damage, and it cannot regain hit points until the start of your next turn. The hand remains visibly clutching onto the target for the duration. If the target you hit is undead, it makes attack rolls against you with disadvantage until the end of your next turn.", "document": "a5esrd", "level": 0, - "school": "Necromancy", + "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", @@ -1636,7 +1636,7 @@ "desc": "A sphere of negative energy sucks life from the area.\n\nCreatures in the area take 9d6 necrotic damage.", "document": "a5esrd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 2d6 for each slot level above 6th.", "target_type": "area", "range": "120 feet", @@ -1667,7 +1667,7 @@ "desc": "You begin carefully regulating your breath so that you can continue playing longer or keep breathing longer in adverse conditions.\n\nUntil the spell ends, you can breathe underwater, and you can utilize bardic performances that would normally require breathable air. In addition, you have advantage on saving throws against gases and environments with adverse breathing conditions.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "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", @@ -1698,7 +1698,7 @@ "desc": "An invisible sensor is created within the spell's range. The sensor remains there for the duration, and it cannot be targeted or attacked.\n\nChoose seeing or hearing when you cast the spell.\n\nYou may use that sense through the sensor as if you were there. As an action, you may switch which sense you are using through the sensor.\n\nA creature able to see invisible things (from the see invisibility spell or truesight, for instance) sees a 4-inch diameter glowing, ethereal orb.", "document": "a5esrd", "level": 3, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "1 mile", @@ -1729,7 +1729,7 @@ "desc": "This spell grows a duplicate of the target that remains inert indefinitely as long as its vessel is sealed.\n\nThe clone grows inside the sealed vessel and matures over the course of 120 days. You can choose to have the clone be a younger version of the target.\n\nOnce the clone has matured, when the target dies its soul is transferred to the clone so long as it is free and willing. The clone is identical to the target (except perhaps in age) and has the same personality, memories, and abilities, but it is without the target's equipment. The target's original body cannot be brought back to life by magic since its soul now resides within the cloned body.", "document": "a5esrd", "level": 8, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -1760,7 +1760,7 @@ "desc": "You create a sphere of poisonous, sickly green fog, which can spread around corners but not change shape. The area is heavily obscured. A strong wind disperses the fog, ending the spell early.\n\nUntil the spell ends, when a creature enters the area for the first time on its turn or starts its turn there, it takes 5d8 poison damage.\n\nThe fog moves away from you 10 feet at the start of each of your turns, flowing along the ground. The fog is thicker than air, sinks to the lowest level in the land, and can even flow down openings and pits.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d8 for each slot level above 5th.", "target_type": "area", "range": "120 feet", @@ -1793,7 +1793,7 @@ "desc": "Until the spell ends, you can use an action to spit venom, making a ranged spell attack at a creature or object within 30 feet. On a hit, the venom deals 4d8 poison damage, and if the target is a creature it is poisoned until the end of its next turn.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", "target_type": "creature", "range": "Self", @@ -1824,7 +1824,7 @@ "desc": "A blast of dazzling multicolored light flashes from your hand to blind your targets until the start of your next turn. Starting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area are blinded, in ascending order according to their hit points.\n\nWhen a target is blinded, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any affect.", "document": "a5esrd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", "target_type": "point", "range": "Self", @@ -1855,7 +1855,7 @@ "desc": "You only require line of sight to the target (not line of effect). On its next turn the target follows a one-word command of your choosing. The spell fails if the target is undead, if it does not understand your command, or if the command is immediately harmful to it.\n\nBelow are example commands, but at the Narrator's discretion you may give any one-word command.\n\n* **Approach/Come/Here:** The target uses its action to take the Dash action and move toward you by the shortest route, ending its turn if it reaches within 5 feet of you.\n* **Bow/Grovel/Kneel:** The target falls prone and ends its turn.\n* **Drop:** The target drops anything it is holding and ends its turn.\n* **Flee/Run:** The target uses its action to Dash and moves away from you as far as it can.\n* **Halt:** The target remains where it is and takes no actions. A flying creature that cannot hover moves the minimum distance needed to remain aloft.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "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", @@ -1886,7 +1886,7 @@ "desc": "You contact your deity, a divine proxy, or a personified source of divine power and ask up to 3 questions that could be answered with a yes or a no. You must complete your questions before the spell ends. You receive a correct answer for each question, unless the being does not know. When the being does not know, you receive \"unclear\" as an answer. The being does not try to deceive, and the Narrator may offer a short phrase as an answer if necessary.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a no answer increases.\n\nThe Narrator makes the following roll in secret: second casting —25%, third casting —50%, fourth casting—75%, fifth casting—100%.", "document": "a5esrd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1917,7 +1917,7 @@ "desc": "Until the spell ends, your spirit bonds with that of nature and you learn about the surrounding land.\n\nWhen cast outdoors the spell reaches 3 miles around you, and in natural underground settings it reaches only 300 feet. The spell fails if you are in a heavily constructed area, such as a dungeon or town.\n\nYou learn up to 3 facts of your choice about the surrounding area:\n\n* Terrain and bodies of water\n* Common flora, fauna, minerals, and peoples\n* Any unnatural creatures in the area\n* Weaknesses in planar boundaries\n* Built structures", "document": "a5esrd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "area", "range": "Self", @@ -1948,7 +1948,7 @@ "desc": "You gain a +10 bonus on Insight checks made to understand the meaning of any spoken language that you hear, or any written language that you can touch. Typically interpreting an unknown language is a DC 20 check, but the Narrator may use DC 15 for a language closely related to one you know, DC 25 for a language that is particularly unfamiliar or ancient, or DC 30 for a lost or dead language. This spell doesn't uncover secret messages or decode cyphers, and it does not assist in uncovering lies.", "document": "a5esrd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "The bonus increases by +5 for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -1979,7 +1979,7 @@ "desc": "Frigid cold blasts from your hands. Each creature in the area takes 8d8 cold damage. Creatures killed by this spell become frozen statues until they thaw.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 5th.", "target_type": "creature", "range": "Self", @@ -2012,7 +2012,7 @@ "desc": "You assault the minds of your targets, filling them with delusions and making them confused until the spell ends. On a successful saving throw, a target is rattled for 1 round. At the end of each of its turns, a confused target makes a Wisdom saving throw to end the spell's effects on it.", "document": "a5esrd", "level": 4, - "school": "Enchantment", + "school": "enchantment", "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", "target_type": "area", "range": "120 feet", @@ -2043,7 +2043,7 @@ "desc": "You summon forth the spirit of a beast that takes the physical form of your choosing in unoccupied spaces you can see.\n\nChoose one of the following:\n\n* One beast of CR 2 or less\n* Two beasts of CR 1 or less\n* Three beasts of CR 1/2 or less\n\n Beasts summoned this way are allied to you and your companions. While it is within 60 feet you can use a bonus action to mentally command a summoned beast. When you command multiple beasts using this spell, you must give them all the same command. You may decide the action the beast takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, a conjured beast only defends itself.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "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", @@ -2074,7 +2074,7 @@ "desc": "You summon a creature from the realms celestial.\n\nThis creature uses the statistics of a celestial creature (detailed below) with certain traits determined by your choice of its type: an angel of battle, angel of protection, or angel of vengeance.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the celestial creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", "document": "a5esrd", "level": 7, - "school": "Conjuration", + "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", @@ -2105,7 +2105,7 @@ "desc": "You summon a creature from the Elemental Planes. This creature uses the statistics of a conjured elemental creature (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the elemental creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "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", @@ -2136,7 +2136,7 @@ "desc": "You summon a creature from The Dreaming.\n\nThis creature uses the statistics of a fey creature (detailed below) with certain traits determined by your choice of its type: hag, hound, or redcap.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the summoned creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "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", @@ -2167,7 +2167,7 @@ "desc": "You summon up to 3 creatures from the Elemental Planes. These creatures use the statistics of a minor elemental (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor elemental's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple minor elementals using this spell, you must give them all the same command.\n\nWithout such commands, a minor elemental only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "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", @@ -2198,7 +2198,7 @@ "desc": "You summon up to 3 creatures from The Dreaming. These creatures use the statistics of a woodland being (detailed below) with certain traits determined by your choice of its type: blink dog, satyr, or sprite. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor woodland being's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple woodland beings using this spell, you must give them all the same command.\n\nWithout such commands, a summoned creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "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", @@ -2229,7 +2229,7 @@ "desc": "You consult an otherworldly entity, risking your very mind in the process. Make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and suffer four levels of strife until you finish a long rest. A _greater restoration_ spell ends this effect.\n\nOn a successful save, you can ask the entity up to 5 questions before the spell ends. When possible the entity responds with one-word answers: yes, no, maybe, never, irrelevant, or unclear. At the Narrator's discretion, it may instead provide a brief but truthful answer when necessary.", "document": "a5esrd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2260,7 +2260,7 @@ "desc": "Your touch inflicts a hideous disease. Make a melee spell attack. On a hit, you afflict the target with a disease chosen from the list below.\n\nThe target must make a Constitution saving throw at the end of each of its turns. After three failed saves, the disease lasts for the duration and the creature stops making saves, or after three successful saves, the creature recovers and the spell ends. A greater restoration spell or similar effect also ends the disease.\n\n* **Blinding Sickness:** The target's eyes turn milky white. It is blinded and has disadvantage on Wisdom checks and saving throws.\n* **Filth Fever:** The target is wracked by fever. It has disadvantage when using Strength for an ability check, attack roll, or saving throw.\n* **Flesh Rot:** The target's flesh rots. It has disadvantage on Charisma ability checks and becomes vulnerable to all damage.\n* **Mindfire:** The target hallucinates. During combat it is confused, and it has disadvantage when using Intelligence for an ability check or saving throw.\n* **Rattling Cough:** The target becomes discombobulated as it hacks with body-wracking coughs. It is rattled and has disadvantage when using Dexterity for an ability check, attack roll, or saving throw.\n* **Slimy Doom:** The target bleeds uncontrollably. It has disadvantage when using Constitution for an ability check or saving throw. Whenever it takes damage, the target is stunned until the end of its next turn.", "document": "a5esrd", "level": 5, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2291,7 +2291,7 @@ "desc": "As part of this spell, cast a spell of 5th-level or lower that has a casting time of 1 action, expending spell slots for both. The second spell must target you, and doesn't target others even if it normally would.\n\nDescribe the circumstances under which the second spell should be cast. It is automatically triggered the first time these circumstances are met. This spell ends when the second spell is triggered, when you cast _contingency_ again, or if the material component for it is not on your person. For example, when you cast _contingency_ with _blur_ as a second spell you might make the trigger be when you see a creature target you with a weapon attack, or you might make it be when you make a weapon attack against a creature, or you could choose for it to be when you see an ally make a weapon attack against a creature.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2322,7 +2322,7 @@ "desc": "A magical torch-like flame springs forth from the target. The flame creates no heat, doesn't consume oxygen, and can't be extinguished, but it can be covered.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2353,7 +2353,7 @@ "desc": "Water inside the area is yours to command. On the round you cast it, and as an action on subsequent turns until the spell ends, you can choose one of the following effects. When you choose a different effect, the current one ends.\n\n* **Flood:** The standing water level rises by up to 20 feet. The flood water spills onto land if the area includes a shore, but when the area is in a large body of water you instead create a 20-foottall wave. The wave travels across the area and crashes down, carrying Huge or smaller vehicles to the other side, each of which has a 25% chance of capsizing. The wave repeats on the start of your next turn while this effect continues.\n* **Part Water:** You create a 20-foot wide trench spanning the area with walls of water to either side. When this effect ends, the trench slowly refills over the course of the next round.\nRedirect Flow: Flowing water in the area moves in a direction you choose, including up. Once the water moves beyond the spell's area, it resumes its regular flow based on the terrain.\n* **Whirlpool:** If the affected body of water is at least 50 feet square and 25 feet deep, a whirlpool forms within the area in a 50-foot wide cone that is 25 feet long. Creatures and objects that are in the area and within 25 feet of the whirlpool make an Athletics check against your spell save DC or are pulled 10 feet toward it. Once within the whirlpool, checks made to swim out of it have disadvantage. When a creature first enters the whirlpool on a turn or starts its turn there, it makes a Strength saving throw or takes 2d8 bludgeoning damage and is pulled into the center of the whirlpool. On a successful save, the creature takes half damage and isn't pulled.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -2386,7 +2386,7 @@ "desc": "You must be outdoors to cast this spell, and it ends early if you don't have a clear path to the sky.\n\nUntil the spell ends, you change the weather conditions in the area from what is normal for the current climate and season. Choose to increase or decrease each weather condition (precipitation, temperature, and wind) up or down by one stage on the following tables. Whenever you change the wind, you can also change its direction. The new conditions take effect after 1d4 × 10 minutes, at which point you can change the conditions again. The weather gradually returns to normal when the spell ends.", "document": "a5esrd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "Self", @@ -2417,7 +2417,7 @@ "desc": "A corpse explodes in a poisonous cloud. Each creature in a 10-foot radius of the corpse must make a Constitution saving throw. A creature takes 3d6 thunder damage and is poisoned for 1 minute on a failed save, or it takes half as much damage and is not poisoned on a successful one. A poisoned creature can repeat the saving throw at the end of each of its turns, ending the effect for itself on a success.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", "target_type": "creature", "range": "60 feet", @@ -2450,7 +2450,7 @@ "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 2nd-level or lower, its spell fails and has no effect.\n\nIf it is casting a spell of 3rd-level or higher, make an ability check using your spellcasting ability (DC 10 + the spell's level). On a success, the creature's spell fails and has no effect, but the creature can use its reaction to reshape the fraying magic and cast another spell with the same casting time as the original spell.\n\nThis new spell must be cast at a spell slot level equal to or less than half the original spell slot.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -2481,7 +2481,7 @@ "desc": "Your magic turns one serving of food or water into 3 Supply. The food is nourishing but bland, and the water is clean. After 24 hours uneaten food spoils and water affected or created by this spell goes bad.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", "target_type": "object", "range": "30 feet", @@ -2512,7 +2512,7 @@ "desc": "Choose one of the following.\n\n* **Create Water:** You fill the target with up to 10 gallons of nonpotable water or 1 Supply of clean water. Alternatively, the water falls as rain that extinguishes exposed flames in the area.\n* **Destroy Water:** You destroy up to 10 gallons of water in the target. Alternatively, you destroy fog in the area.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "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", @@ -2543,7 +2543,7 @@ "desc": "This spell cannot be cast in sunlight. You reanimate the targets as undead and transform them into ghouls under your control.\n\nWhile it is within 120 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours. Casting the spell in this way reasserts control over up to 3 undead you have animated with this spell, rather than animating a new one.", "document": "a5esrd", "level": 6, - "school": "Necromancy", + "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", @@ -2574,7 +2574,7 @@ "desc": "You weave raw magic into a mundane physical object no larger than a 5-foot cube. The object must be of a form and material you have seen before. Using the object as a material component for another spell causes that spell to fail.\n\nThe spell's duration is determined by the object's material. An object composed of multiple materials uses the shortest duration.", "document": "a5esrd", "level": 5, - "school": "Illusion", + "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", @@ -2605,7 +2605,7 @@ "desc": "Your fist reverberates with destructive energy, and woe betide whatever it strikes. As part of casting the spell, make a melee spell attack against a creature or object within 5 feet. If you hit, the target of your attack takes 7d6 thunder damage, and must make a Constitution saving throw or be knocked prone and stunned until the end of its next turn. This spell's damage is doubled against objects and structures.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", "target_type": "creature", "range": "Self", @@ -2638,7 +2638,7 @@ "desc": "The target regains hit points equal to 1d8 + your spellcasting ability modifier.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", "target_type": "point", "range": "Touch", @@ -2669,7 +2669,7 @@ "desc": "You create up to four hovering lights which appear as torches, lanterns, or glowing orbs that can be combined into a glowing Medium-sized humanoid form. Each sheds dim light in a 10-foot radius.\n\nYou can use a bonus action to move the lights up to 60 feet so long as each remains within 20 feet of another light created by this spell. A dancing light winks out when it exceeds the spell's range.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -2700,7 +2700,7 @@ "desc": "You create an enchanted flame that surrounds your hand and produces no heat, but sheds bright light in a 20-foot radius around you and dim light for an additional 20 feet. Only you and up to 6 creatures of your choice can see this light.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2731,7 +2731,7 @@ "desc": "Magical darkness heavily obscures darkvision and blocks nonmagical light in the area. The darkness spreads around corners. If any of the area overlaps with magical light created by a spell of 2nd-level or lower, the spell that created the light is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the darkness emanates from it and moves with it. Completely covering the object with something that is not transparent blocks the darkness.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "60 feet", @@ -2762,7 +2762,7 @@ "desc": "The target gains darkvision out to a range of 60 feet.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -2793,7 +2793,7 @@ "desc": "Magical light fills the area. The area is brightly lit and sheds dim light for an additional 60 feet. If any of the area overlaps with magical darkness created by a spell of 3rd-level or lower, the spell that created the darkness is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the light shines from it and moves with it. Completely covering the object with something that is not transparent blocks the light.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "60 feet", @@ -2824,7 +2824,7 @@ "desc": "The target object's weight is greatly increased. Any creature holding the object must succeed on a Strength saving throw or drop it. A creature which doesn't drop the object has disadvantage on attack rolls until the start of your next turn as it figures out the object's new balance.\n\nCreatures that attempt to push, drag, or lift the object must succeed on a Strength check against your spell save DC to do so.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2855,7 +2855,7 @@ "desc": "The first time damage would reduce the target to 0 hit points, it instead drops to 1 hit point. If the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is negated. The spell ends immediately after either of these conditions occur.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "point", "range": "Touch", @@ -2886,7 +2886,7 @@ "desc": "A glowing bead of yellow light flies from your finger and lingers at a point at the center of the area until you end the spell—either because your concentration is broken or because you choose to end it—and the bead detonates. Each creature in the area takes 12d6 fire damage. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.\n\nIf touched before the spell ends, the creature touching the bead makes a Dexterity saving throw or the bead detonates. On a successful save, the creature can use an action to throw the bead up to 40 feet, moving the area with it. If the bead strikes a creature or solid object, the bead detonates.\n\nThe fire spreads around corners, and it damages and ignites any flammable unattended objects in the area.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 7th.", "target_type": "point", "range": "120 feet", @@ -2919,7 +2919,7 @@ "desc": "You create a shadowy door on the target. The door is large enough for Medium creatures to pass through. The door leads to a demiplane that appears as an empty, 30-foot-cube chamber made of wood or stone. When the spell ends, the door disappears from both sides, trapping any creatures or objects inside the demiplane.\n\nEach time you cast this spell, you can either create a new demiplane, conjure the door to a demiplane you have previously created, or make a door leading to a demiplane whose nature or contents you are familiar with.", "document": "a5esrd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -2950,7 +2950,7 @@ "desc": "You attempt to sense the presence of otherworldly forces. You automatically know if there is a place or object within range that has been magically consecrated or desecrated. In addition, on the round you cast it and as an action on subsequent turns until the spell ends, you may make a Wisdom (Religion) check against the passive Deception score of any aberration, celestial, elemental, fey, fiend, or undead creature within range. On a success, you sense the creature's presence, as well as where the creature is located.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", "document": "a5esrd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -2981,7 +2981,7 @@ "desc": "Until the spell ends, you automatically sense the presence of magic within range, and you can use an action to study the aura of a magic effect to learn its schools of magic (if any).\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", "document": "a5esrd", "level": 1, - "school": "Divination", + "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", @@ -3012,7 +3012,7 @@ "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can attempt to sense the presence of poisons, poisonous creatures, and disease by making a Perception check. On a success you identify the type of each poison or disease within range. Typically noticing and identifying a poison or disease is a DC 10 check, but the Narrator may use DC 15 for uncommon afflictions, DC 20 for rare afflictions, or DC 25 for afflictions that are truly unique. On a failed check, this casting of the spell cannot sense that specific poison or disease.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", "document": "a5esrd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -3043,7 +3043,7 @@ "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can probe a creature's mind to read its thoughts by focusing on one creature you can see within range. The creature makes a Wisdom saving throw. Creatures with an Intelligence score of 3 or less or that don't speak any languages are unaffected. On a failed save, you learn the creature's surface thoughts —what is most on its mind in that moment. On a successful save, you fail to read the creature's thoughts and can't attempt to probe its mind for the duration. Conversation naturally shapes the course of a creature's thoughts and what it is thinking about may change based on questions verbally directed at it.\n\nOnce you have read a creature's surface thoughts, you can use an action to probe deeper into its mind. The creature makes a second Wisdom saving throw. On a successful save, you fail to read the creature's deeper thoughts and the spell ends. On a failure, you gain insight into the creature's motivations, emotional state, and something that looms large in its mind.\n\nThe creature then becomes aware you are probing its mind and can use an action to make an Intelligence check contested by your Intelligence check, ending the spell if it succeeds.\n\nAdditionally, you can use an action to scan for thinking creatures within range that you can't see.\n\nOnce you detect the presence of a thinking creature, so long as it remains within range you can attempt to read its thoughts as described above (even if you can't see it).\n\nThe spell penetrates most barriers but is blocked by 2 feet of stone, 2 inches of common metal, or a thin sheet of lead.", "document": "a5esrd", "level": 2, - "school": "Divination", + "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", @@ -3074,7 +3074,7 @@ "desc": "You teleport to any place you can see, visualize, or describe by stating distance and direction such as 200 feet straight downward or 400 feet upward at a 30-degree angle to the southeast.\n\nYou can bring along objects if their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn't carrying gear beyond its carrying capacity and is within 5 feet.\n\nIf you would arrive in an occupied space the spell fails, and you and any creature with you each take 4d6 force damage.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "500 feet", @@ -3105,7 +3105,7 @@ "desc": "Until the spell ends or you use an action to dismiss it, you and your gear are cloaked by an illusory disguise that makes you appear like another creature of your general size and body type, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot disguise yourself as a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", "document": "a5esrd", "level": 1, - "school": "Illusion", + "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", @@ -3136,7 +3136,7 @@ "desc": "A pale ray emanates from your pointed finger to the target as you attempt to undo it.\n\nThe target takes 10d6 + 40 force damage. A creature reduced to 0 hit points is obliterated, leaving behind nothing but fine dust, along with anything it was wearing or carrying (except magic items). Only true resurrection or a wish spell can restore it to life.\n\nThis spell automatically disintegrates nonmagical objects and creations of magical force that are Large-sized or smaller. Larger objects and creations of magical force have a 10-foot-cube portion disintegrated instead. Magic items are unaffected.", "document": "a5esrd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The damage increases by 3d6 for each slot level above 6th.", "target_type": "creature", "range": "60 feet", @@ -3169,7 +3169,7 @@ "desc": "A nimbus of power surrounds you, making you more able to resist and destroy beings from beyond the realms material.\n\nUntil the spell ends, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you.\n\nYou can end the spell early by using an action to do either of the following.\n\n* **Mental Resistance:** Choose up to 3 friendly creatures within 60 feet. Each of those creatures that is charmed, frightened, or possessed by a celestial, elemental, fey, fiend, or undead may make an immediate saving throw with advantage against the condition or possession, ending it on a success.\n* **Retribution:** Make a melee spell attack against a celestial, elemental, fey, fiend, or undead within reach. On a hit, the creature takes 7d8 radiant or necrotic damage (your choice) and is stunned until the beginning of your next turn.", "document": "a5esrd", "level": 5, - "school": "Abjuration", + "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", @@ -3203,7 +3203,7 @@ "desc": "You scour the magic from your target. Any spell cast on the target ends if it was cast with a spell slot of 3rd-level or lower. For spells using a spell slot of 4th-level or higher, make an ability check with a DC equal to 10 + the spell's level for each one, ending the effect on a success.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -3234,7 +3234,7 @@ "desc": "Your offering and magic put you in contact with the higher power you serve or its representatives.\n\nYou ask a single question about something that will (or could) happen in the next 7 days. The Narrator offers a truthful reply, which may be cryptic or even nonverbal as appropriate to the being in question.\n\nThe reply does not account for possible circumstances that could change the outcome, such as making additional precautions.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", "document": "a5esrd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3265,7 +3265,7 @@ "desc": "You imbue divine power into your strikes. Until the spell ends, you deal an extra 1d4 radiant damage with your weapon attacks.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3296,7 +3296,7 @@ "desc": "You utter a primordial imprecation that brings woe upon your enemies. A target suffers an effect based on its current hit points.\n\n* Fewer than 50 hit points: deafened for 1 minute.\n* Fewer than 40 hit points: blinded and deafened for 10 minutes.\n* Fewer than 30 hit points: stunned, blinded, and deafened for 1 hour.\n* Fewer than 20 hit points: instantly killed outright.\n\nAdditionally, when a celestial, elemental, fey, or fiend is affected by this spell it is immediately forced back to its home plane and for 24 hours it is unable to return to your current plane by any means less powerful than a wish spell. Such a creature does not suffer this effect if it is already on its plane of origin.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -3327,7 +3327,7 @@ "desc": "You assert control over the target beast's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", "document": "a5esrd", "level": 4, - "school": "Enchantment", + "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", @@ -3358,7 +3358,7 @@ "desc": "You assert control over the target creature's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", "document": "a5esrd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "The duration is Concentration (8 hours)", "target_type": "creature", "range": "60 feet", @@ -3389,7 +3389,7 @@ "desc": "You assert control over the target humanoid's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", "document": "a5esrd", "level": 5, - "school": "Enchantment", + "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", @@ -3420,7 +3420,7 @@ "desc": "You frighten the target by echoing its movements with ominous music and terrifying sound effects. It takes 1d4 psychic damage and becomes frightened of you until the spell ends.\n\nAt the end of each of the creature's turns, it can make another Wisdom saving throw, ending the effect on itself on a success. On a failed save, the creature takes 1d4 psychic damage.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "The damage increases by 1d4 for each slot level above 1st.", "target_type": "creature", "range": "30 feet", @@ -3453,7 +3453,7 @@ "desc": "Until the spell ends, you manipulate the dreams of another creature. You designate a messenger, which may be you or a willing creature you touch, to enter a trance. The messenger remains aware of its surroundings while in the trance but cannot take actions or move.\n\nIf the target is sleeping the messenger appears in its dreams and can converse with the target as long as it remains asleep and the spell remains active. The messenger can also manipulate the dream, creating objects, landscapes, and various other sensory sensations. The messenger can choose to end the trance at any time, ending the spell. The target remembers the dream in perfect detail when it wakes. The messenger knows if the target is awake when you cast the spell and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the spell works as described.\n\nYou can choose to let the messenger terrorize the target. The messenger can deliver a message of 10 words or fewer and the target must make a Wisdom saving throw. If you have a portion of the target's body (some hair or a drop of blood) it has disadvantage on its saving throw. On a failed save, echoes of the messenger's fearful aspect create a nightmare that lasts the duration of the target's sleep and prevents it from gaining any benefit from the rest. In addition, upon waking the target suffers a level of fatigue or strife (your choice), up to a maximum of 3 in either condition.\n\nCreatures that don't sleep or don't dream (such as elves) cannot be contacted by this spell.", "document": "a5esrd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Special", @@ -3484,7 +3484,7 @@ "desc": "You call upon your mastery of nature to produce one of the following effects within range:\n\n* You create a minor, harmless sensory effect that lasts for 1 round and predicts the next 24 hours of weather in your current location. For example, the effect might create a miniature thunderhead if storms are predicted.\n* You instantly make a plant feature develop, but never to produce Supply. For example, you can cause a flower to bloom or a seed pod to open.\n* You create an instantaneous, harmless sensory effect such as the sound of running water, birdsong, or the smell of mulch. The effect must fit in a 5-foot cube.\n* You instantly ignite or extinguish a candle, torch, smoking pipe, or small campfire.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -3515,7 +3515,7 @@ "desc": "Choose an unoccupied space between you and the source of the attack which triggers the spell. You call forth a pillar of earth or stone (3 feet diameter, 20 feet tall, AC 10, 20 hit points) in that space that provides you with three-quarters cover (+5 to AC, Dexterity saving throws, and ability checks made to hide).", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -3546,7 +3546,7 @@ "desc": "You create a seismic disturbance in the spell's area. Until the spell ends, an intense tremor rips through the ground and shakes anything in contact with it.\n\nThe ground in the spell's area becomes difficult terrain as it warps and cracks.\n\nWhen you cast this spell and at the end of each turn you spend concentrating on it, each creature in contact with the ground in the spell's area must make a Dexterity saving throw or be knocked prone.\n\nAdditionally, any creature that is concentrating on a spell while in contact with the ground in the spell's area must make a Constitution saving throw or lose concentration.\n\nAt the Narrator's discretion, this spell may have additional effects depending on the terrain in the area.\n\n* **Fissures:** Fissures open within the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations you choose. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens makes a Dexterity saving throw or falls in. On a successful save, a creature moves with the fissure's edge as it opens.\n* A structure automatically collapses if a fissure opens beneath it (see below).\n* **Structures:** A structure in contact with the ground in the spell's area takes 50 bludgeoning damage when you cast the spell and again at the start of each of your turns while the spell is active. A structure reduced to 0 hit points this way collapses.\n* Creatures within half the distance of a collapsing structure's height make a Dexterity saving throw or take 5d6 bludgeoning damage, are knocked prone, and are buried in the rubble, requiring a DC 20 Acrobatics or Athletics check as an action to escape. A creature inside (instead of near) a collapsing structure has disadvantage on its saving throw. The Narrator can adjust the DC higher or lower depending on the composition of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", "document": "a5esrd", "level": 8, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "500 feet", @@ -3579,7 +3579,7 @@ "desc": "A black, nonreflective, incorporeal 10-foot cube appears in an unoccupied space that you can see. Its space can be in midair if you so desire. When a creature starts its turn in the cube or enters the cube for the first time on its turn it must make an Intelligence saving throw, taking 5d6 psychic damage on a failed save, or half damage on a success.\n\nAs a bonus action, you can move the cube up to 10 feet in any direction to a space you can see. The cube cannot be made to pass through other creatures in this way.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -3610,7 +3610,7 @@ "desc": "You bestow a magical enhancement on the target. Choose one of the following effects for the target to receive until the spell ends.\n\n* **Bear's Endurance:** The target has advantage on Constitution checks and it gains 2d6 temporary hit points (lost when the spell ends).\n* **Bull's Strength:** The target has advantage on Strength checks and doubles its carrying capacity.\n* **Cat's Grace:** The target has advantage on Dexterity checks and it reduces any falling damage it takes by 10 unless it is incapacitated.\n* **Eagle's Splendor:** The target has advantage on Charisma checks and is instantly cleaned (as if it had just bathed and put on fresh clothing).\n* **Fox's Cunning:** The target has advantage on Intelligence checks and on checks using gaming sets.\n* **Owl's Wisdom:** The target has advantage on Wisdom checks and it gains darkvision to a range of 30 feet (or extends its existing darkvision by 30 feet).", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "You target one additional creature for each slot level above 2nd.", "target_type": "point", "range": "Touch", @@ -3641,7 +3641,7 @@ "desc": "You cause the target to grow or shrink. An unwilling target may attempt a saving throw to resist the spell.\n\nIf the target is a creature, all items worn or carried by it also change size with it, but an item dropped by the target immediately returns to normal size.\n\n* **Enlarge:** Until the spell ends, the target's size increases by one size category. Its size doubles in all dimensions and its weight increases eightfold. The target also has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 1d4 damage.\n* **Reduce:** Until the spell ends, the target's size decreases one size category. Its size is halved in all dimensions and its weight decreases to one-eighth of its normal value. The target has disadvantage on Strength checks and Strength saving throws and its weapons shrink, dealing 1d4 less damage (its attacks deal a minimum of 1 damage).", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -3672,7 +3672,7 @@ "desc": "You animate and enrage a target building that lashes out at its inhabitants and surroundings. As a bonus action you may command the target to open, close, lock, or unlock any nonmagical doors or windows, or to thrash about and attempt to crush its inhabitants. While the target is thrashing, any creature inside or within 30 feet of it must make a Dexterity saving throw, taking 2d10+5 bludgeoning damage on a failed save or half as much on a successful one. When the spell ends, the target returns to its previous state, magically repairing any damage it sustained during the spell's duration.", "document": "a5esrd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -3703,7 +3703,7 @@ "desc": "Constraining plants erupt from the ground in the spell's area, wrapping vines and tendrils around creatures. Until the spell ends, the area is difficult terrain.\n\nA creature in the area when you cast the spell makes a Strength saving throw or it becomes restrained as the plants wrap around it. A creature restrained in this way can use its action to make a Strength check against your spell save DC, freeing itself on a success.\n\nWhen the spell ends, the plants wither away.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -3734,7 +3734,7 @@ "desc": "You weave a compelling stream of words that captivates your targets. Any target that can't be charmed automatically succeeds on its saving throw, and targets fighting you or creatures friendly to you have advantage on the saving throw.\n\nUntil the spell ends or a target can no longer hear you, it has disadvantage on Perception checks made to perceive any creature other than you. The spell ends if you are incapacitated or can no longer speak.", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -3765,7 +3765,7 @@ "desc": "Until the spell ends or you use an action to end it, you step into the border regions of the Ethereal Plane where it overlaps with your current plane. While on the Ethereal Plane, you can move in any direction, but vertical movement is considered difficult terrain. You can see and hear the plane you originated from, but everything looks desaturated and you can see no further than 60 feet.\n\nWhile on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures not on the Ethereal Plane can't perceive you unless some special ability or magic explicitly allows them to.\n\nWhen the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space and you take force damage equal to twice the number of feet you are moved.\n\nThe spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as an Outer Plane.", "document": "a5esrd", "level": 7, - "school": "Transmutation", + "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", @@ -3796,7 +3796,7 @@ "desc": "Until the spell ends, you're able to move with incredible speed. When you cast the spell and as a bonus action on subsequent turns, you can take the Dash action.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -3827,7 +3827,7 @@ "desc": "Your eyes become an inky void imbued with fell power. One creature of your choice within 60 feet of you that you can see and that can see you must succeed on a Wisdom saving throw or be afflicted by one of the following effects for the duration. Until the spell ends, on each of your turns you can use an action to target a creature that has not already succeeded on a saving throw against this casting of _eyebite_.\n\n* **Asleep:** The target falls unconscious, waking if it takes any damage or another creature uses an action to rouse it.\n* **Panicked:** The target is frightened of you. On each of its turns, the frightened creature uses its action to take the Dash action and move away from you by the safest and shortest available route unless there is nowhere for it to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\n* **Sickened:** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another Wisdom saving throw, ending this effect on a successful save.", "document": "a5esrd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3858,7 +3858,7 @@ "desc": "You convert raw materials into finished items of the same material. For example, you can fabricate a pitcher from a lump of clay, a bridge from a pile of lumber or group of trees, or rope from a patch of hemp.\n\nWhen you cast the spell, select raw materials you can see within range. From them, the spell fabricates a Large or smaller object (contained within a single 10-foot cube or up to eight connected 5-foot cubes) given a sufficient quantity of raw material. When fabricating with metal, stone, or another mineral substance, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of any objects made with the spell is equivalent to the quality of the raw materials.\n\nCreatures or magic items can't be created or used as materials with this spell. It also may not be used to create items that require highly-specialized craftsmanship such as armor, weapons, clockworks, glass, or jewelry unless you have proficiency with the type of artisan's tools needed to craft such objects.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "120 feet", @@ -3889,7 +3889,7 @@ "desc": "Each object in a 20-foot cube within range is outlined in light (your choice of color). Any creature in the area when the spell is cast is also outlined unless it makes a Dexterity saving throw. Until the spell ends, affected objects and creatures shed dim light in a 10-foot radius.\n\nAny attack roll against an affected object or creature has advantage. The spell also negates the benefits of invisibility on affected creatures and objects.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "60 feet", @@ -3920,7 +3920,7 @@ "desc": "You conjure a phantasmal watchdog. Until the spell ends, the hound remains in the area unless you spend an action to dismiss it or you move more than 100 feet away from it.\n\nThe hound is invisible except to you and can't be harmed. When a Small or larger creature enters the area without speaking a password you specify when casting the spell, the hound starts barking loudly. The hound sees invisible creatures, can see into the Ethereal Plane, and is immune to illusions.\n\nAt the start of each of your turns, the hound makes a bite attack against a hostile creature of your choice that is within the area, using your spell attack bonus and dealing 4d8 piercing damage on a hit.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "30 feet", @@ -3951,7 +3951,7 @@ "desc": "You are bolstered with fell energies resembling life, gaining 1d4+4 temporary hit points that last until the spell ends.", "document": "a5esrd", "level": 1, - "school": "Necromancy", + "school": "necromancy", "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", "target_type": "point", "range": "Self", @@ -3982,7 +3982,7 @@ "desc": "You project a phantasmal image into the minds of each creature in the area showing them what they fear most. On a failed save, a creature becomes frightened until the spell ends and must drop whatever it is holding.\n\nOn each of its turns, a creature frightened by this spell uses its action to take the Dash action and move away from you by the safest available route. If there is nowhere it can move, it remains stationary. When the creature ends its turn in a location where it doesn't have line of sight to you, the creature can repeat the saving throw, ending the spell's effects on it on a successful save.", "document": "a5esrd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -4013,7 +4013,7 @@ "desc": "Magic slows the descent of each target. Until the spell ends, a target's rate of descent slows to 60 feet per round. If a target lands before the spell ends, it takes no falling damage and can land on its feet, ending the spell for that target.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "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", @@ -4044,7 +4044,7 @@ "desc": "You blast the target's mind, attempting to crush its intellect and sense of self. The target takes 4d6 psychic damage.\n\nOn a failed save, until the spell ends the creature's Intelligence and Charisma scores are both reduced to 1\\. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way, but it is still able to recognize, follow, and even protect its allies.\n\nAt the end of every 30 days, the creature can repeat its saving throw against this spell, ending it on a success.\n\n_Greater restoration_, _heal_, or _wish_ can also be used to end the spell.", "document": "a5esrd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -4077,7 +4077,7 @@ "desc": "Your familiar, a spirit that takes the form of any CR 0 beast of Small or Tiny size, appears in an unoccupied space within range. It has the statistics of the chosen form, but is your choice of a celestial, fey, or fiend (instead of a beast).\n\nYour familiar is an independent creature that rolls its own initiative and acts on its own turn in combat (but cannot take the Attack action). However, it is loyal to you and always obeys your commands.\n\nWhen the familiar drops to 0 hit points, it vanishes without a trace. Casting the spell again causes it to reappear.\n\nYou are able to communicate telepathically with your familiar when it is within 100 feet. As long as it is within this range, you can use an action to see through your familiar's eyes and hear through its ears until the beginning of your next turn, gaining the benefit of any special senses it has. During this time, you are blind and deaf to your body's surroundings.\n\nYou can use an action to either permanently dismiss your familiar or temporarily dismiss it to a pocket dimension where it awaits your summons. While it is temporarily dismissed, you can use an action to call it back, causing it to appear in any unoccupied space within 30 feet of you.\n\nYou can't have more than one familiar at a time, but if you cast this spell while you already have a familiar, you can cause it to adopt a different form.\n\nFinally, when you cast a spell with a range of Touch and your familiar is within 100 feet of you, it can deliver the spell as if it was the spellcaster. Your familiar must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, use your attack bonus for the spell.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -4108,7 +4108,7 @@ "desc": "You summon a spirit that takes the form of a loyal mount, creating a lasting bond with it. You decide on the steed's appearance, and choose whether it uses the statistics of an elk, giant lizard, panther, warhorse, or wolf (the Narrator may offer additional options.) Its statistics change in the following ways:\n\n* Its type is your choice of celestial, fey, or fiend.\n* Its size is your choice of Medium or Large.\n* Its Intelligence is 6.\n* You can communicate with it telepathically while it's within 1 mile.\n* It understands one language that you speak.\n\nWhile mounted on your steed, when you cast a spell that targets only yourself, you may also target the steed.\n\nWhen you use an action to dismiss the steed, or when it drops to 0 hit points, it temporarily disappears. Casting this spell again resummons the steed, fully healed and with all conditions removed. You can't summon a different steed unless you spend an action to release your current steed from its bond, permanently dismissing it.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "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", @@ -4139,7 +4139,7 @@ "desc": "Name a specific, immovable location that you have visited before. If no such location is within range, the spell fails. For the duration, you know the location's direction and distance. While you are traveling there, you have advantage on ability checks made to determine the shortest path.", "document": "a5esrd", "level": 6, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "point", "range": "Special", @@ -4170,7 +4170,7 @@ "desc": "This spell reveals whether there is at least one trap within range and within line of sight. You don't learn the number, location, or kind of traps detected. For the purpose of this spell, a trap is a hidden mechanical device or magical effect which is designed to harm you or put you in danger, such as a pit trap, symbol spell, or alarm bell on a door, but not a natural hazard.", "document": "a5esrd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -4201,7 +4201,7 @@ "desc": "Negative energy wracks the target and deals 7d8 + 30 necrotic damage. A humanoid killed by this spell turns into a zombie at the start of your next turn. It is permanently under your control and follows your spoken commands.", "document": "a5esrd", "level": 7, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 2d8 for each slot level above 7th.", "target_type": "creature", "range": "60 feet", @@ -4232,7 +4232,7 @@ "desc": "You cast a streak of flame at the target. Make a ranged spell attack. On a hit, you deal 1d10 fire damage. An unattended flammable object is ignited.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "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", @@ -4263,7 +4263,7 @@ "desc": "Until the spell ends, flames envelop your body, casting bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to end the spell early. Choose one of the following options:\n\n* **Chill Shield:** You have resistance to fire damage. A creature within 5 feet of you takes 2d8 cold damage when it hits you with a melee attack.\n* **Warm Shield:** You have resistance to cold damage. A creature within 5 feet of you takes 2d8 fire damage when it hits you with a melee attack.", "document": "a5esrd", "level": 4, - "school": "Evocation", + "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", @@ -4296,7 +4296,7 @@ "desc": "Flames roar, dealing 7d10 fire damage to creatures and objects in the area and igniting unattended flammable objects. If you choose, plant life in the area is unaffected. This spell's area consists of a contiguous group of ten 10-foot cubes in an arrangement you choose, with each cube adjacent to at least one other cube.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 7th.", "target_type": "creature", "range": "120 feet", @@ -4327,7 +4327,7 @@ "desc": "A fiery mote streaks to a point within range and explodes in a burst of flame. The fire spreads around corners and ignites unattended flammable objects. Each creature in the area takes 6d6 fire damage.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "point", "range": "120 feet", @@ -4360,7 +4360,7 @@ "desc": "A scimitar-shaped blade of fire appears in your hand, lasting for the duration. It disappears if you drop it, but you can use a bonus action to recall it. The blade casts bright light in a 10-foot radius and dim light for another 10 feet. You can use an action to make a melee spell attack with the blade that deals 3d6 fire damage.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", "target_type": "creature", "range": "Self", @@ -4391,7 +4391,7 @@ "desc": "A column of divine flame deals 4d6 fire damage and 4d6 radiant damage to creatures in the area.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "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", @@ -4422,7 +4422,7 @@ "desc": "A 5-foot-diameter sphere of fire appears within range, lasting for the duration. It casts bright light in a 20-foot radius and dim light for another 20 feet, and ignites unattended flammable objects it touches.\n\nYou can use a bonus action to move the sphere up to 30 feet. It can jump over pits 10 feet wide or obstacles 5 feet tall. If you move the sphere into a creature, the sphere ends its movement for that turn and the creature makes a Dexterity saving throw, taking 2d6 fire damage on a failed save, or half as much on a successful one. A creature that ends its turn within 5 feet of the sphere makes a Dexterity saving throw against the sphere's damage.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", "target_type": "object", "range": "60 feet", @@ -4453,7 +4453,7 @@ "desc": "The target becomes restrained as it begins to turn to stone. On a successful saving throw, the target is instead slowed until the end of its next turn and the spell ends.\n\nA creature restrained by this spell makes a second saving throw at the end of its turn. On a success, the spell ends. On a failure, the target is petrified for the duration. If you maintain concentration for the maximum duration of the spell, this petrification is permanent.\n\nAny pieces removed from a petrified creature are missing when the petrification ends.", "document": "a5esrd", "level": 6, - "school": "Transmutation", + "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", @@ -4484,7 +4484,7 @@ "desc": "You bestow a glamor upon a creature that highlights its physique to show a stunning idealized form. For the spell's duration, the target adds both its Strength modifier and Charisma modifier to any Charisma checks it makes.", "document": "a5esrd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "Target one additional creature for each slot level above 2nd.", "target_type": "creature", "range": "Touch", @@ -4515,7 +4515,7 @@ "desc": "A metallic disc made of force, 3 feet in diameter and hovering 3 feet off the ground, appears within range. It can support up to 500 pounds. If it is overloaded, or if you move more than 100 feet away from it, the spell ends. You can end the spell as an action. While it is not carrying anything, you can use a bonus action to teleport the disk to an unoccupied space within range.\n\nWhile you are within 20 feet of the disk, it is immobile. If you move more than 20 feet away, it tries to follow you, remaining 20 feet away. It can traverse stairs, slopes, and obstacles up to 3 feet high.\n\nAdditionally, you can ride the disc, spending your movement on your turn to move the disc up to 30 feet (following the movement rules above).\n\nMoving the disk in this way is just as tiring as walking for the same amount of time.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "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", @@ -4546,7 +4546,7 @@ "desc": "The target gains a flying speed of 60 feet. When the spell ends, the target falls if it is off the ground.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "Target one additional creature for each slot level above 3rd.", "target_type": "creature", "range": "Touch", @@ -4577,7 +4577,7 @@ "desc": "You create a heavily obscured area of fog. The fog spreads around corners and can be dispersed by a moderate wind (at least 10 miles per hour).", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", "target_type": "area", "range": "120 feet", @@ -4608,7 +4608,7 @@ "desc": "You protect the target area against magical travel. Creatures can't teleport into the area, use a magical portal to enter it, or travel into it from another plane of existence, such as the Astral or Ethereal Plane. The spell's area can't overlap with another _forbiddance_ spell.\n\nThe spell damages specific types of trespassing creatures. Choose one or more of celestials, elementals, fey, fiends, and undead. When a chosen creature first enters the area on a turn or starts its turn there, it takes 5d10 radiant or necrotic damage (your choice when you cast the spell). You may designate a password. A creature speaking this password as it enters takes no damage from the spell.\n\nAfter casting this spell on the same area for 30 consecutive days it becomes permanent until dispelled. This final casting to make the spell permanent consumes its material components.", "document": "a5esrd", "level": 6, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Touch", @@ -4642,7 +4642,7 @@ "desc": "Your iron resolve allows you to withstand an attack. The damage you take from the triggering attack is reduced by 2d10 + your spellcasting ability modifier.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", "target_type": "creature", "range": "Self", @@ -4673,7 +4673,7 @@ "desc": "Make a melee spell attack. On a hit, the target takes 3d8 force damage.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -4706,7 +4706,7 @@ "desc": "An opaque cube of banded force surrounds the area, preventing any matter or spells from passing through it, though creatures can breathe inside it. Creatures that make a Dexterity saving throw and creatures that are only partially inside the area are pushed out of the area. Any other creature is trapped and can't leave by nonmagical means. The cage also traps creatures on the Ethereal Plane, and can only be destroyed by being dealt at least 25 force damage at once or by a _dispel magic_ spell cast using an 8th-level or higher spell slot.\n\nIf a trapped creature tries to teleport or travel to another plane, it makes a Charisma saving throw. On a failure, the attempt fails and the spell or effect is wasted.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "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", @@ -4737,7 +4737,7 @@ "desc": "You impart the ability to see flashes of the immediate future. The target can't be surprised and has advantage on ability checks, attack rolls, and saving throws. Other creatures have disadvantage on attack rolls against the target.", "document": "a5esrd", "level": 9, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4768,7 +4768,7 @@ "desc": "While casting and concentrating on this spell, you enter a deep trance and awaken an army of trees and plants within range. These plants rise up under your control as a grove swarm and act on your initiative. Although you are in a trance and deaf and blind with regard to your own senses, you see and hear through your grove swarm's senses. You can command your grove swarm telepathically, ordering it to advance, attack, or retreat. If the grove swarm enters your space, you can order it to carry you.\n\nIf you take any action other than continuing to concentrate on this spell, the spell ends and the trees and plants set down roots wherever they are currently located.", "document": "a5esrd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -4799,7 +4799,7 @@ "desc": "The target ignores difficult terrain. Spells and magical effects can't reduce its speed or cause it to be paralyzed or restrained. It can spend 5 feet of movement to escape from nonmagical restraints or grapples. The target's movement and attacks aren't penalized from being underwater.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "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", @@ -4830,7 +4830,7 @@ "desc": "A freezing globe streaks to a point within range and explodes, dealing 10d6 cold damage to creatures in the area. Liquid in the area is frozen to a depth of 6 inches for 1 minute. Any creature caught in the ice can use an action to make a Strength check against your spell save DC to escape.\n\nInstead of firing the globe, you can hold it in your hand. If you handle it carefully, it won't explode until a minute after you cast the spell. At any time, you or another creature can strike the globe, throw it up to 60 feet, or use it as a slingstone, causing it to explode on impact.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 6th.", "target_type": "point", "range": "120 feet", @@ -4861,7 +4861,7 @@ "desc": "Once before the start of your next turn, when you make a Charisma ability check against the target, you gain an expertise die. If you roll a 1 on the ability or skill check, the target realizes its judgment was influenced by magic and may become hostile.", "document": "a5esrd", "level": 0, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -4892,7 +4892,7 @@ "desc": "The target, along with anything it's wearing and carrying, becomes a hovering, wispy cloud. In this form, it can't attack, use or drop objects, talk, or cast spells.\n\nAs a cloud, the target's base Speed is 0 and it gains a flying speed of 10 feet. It can enter another creature's space, and can pass through small holes and cracks, but not through liquid. It is resistant to nonmagical damage, has advantage on Strength, Dexterity, and Constitution saving throws, and can't fall.\n\nThe spell ends if the creature drops to 0 hit points.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", "target_type": "object", "range": "Touch", @@ -4923,7 +4923,7 @@ "desc": "You create a magic portal, a door between a space you can see and a specific place on another plane of existence. Each portal is a one-sided circular opening from 5 to 25 feet in diameter. Entering either portal transports you to the portal on the other plane. Deities and other planar rulers can prevent portals from opening in their domains.\n\nWhen you cast this spell, you can speak the true name of a specific creature (not its nickname or title). If that creature is on another plane, the portal opens next to it and draws it through to your side of the portal. This spell gives you no power over the creature, and it might choose to attack you, leave, or listen to you.", "document": "a5esrd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -4954,7 +4954,7 @@ "desc": "You give a command to a target which can understand you. It becomes charmed by you.\n\nWhile charmed in this way, it takes 5d10 psychic damage the first time each day that it disobeys your command. Your command can be any course of action or inaction that wouldn't result in the target's death. The spell ends if the command is suicidal or you use an action to dismiss the spell. Alternatively, a _remove curse_, _greater restoration_, or _wish_ spell cast on the target using a spell slot at least as high as the slot used to cast this spell also ends it.", "document": "a5esrd", "level": 5, - "school": "Enchantment", + "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", @@ -4987,7 +4987,7 @@ "desc": "The target can't become undead and doesn't decay. Days spent under the influence of this spell don't count towards the time limit of spells which raise the dead.", "document": "a5esrd", "level": 2, - "school": "Necromancy", + "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", @@ -5018,7 +5018,7 @@ "desc": "You transform insects and other vermin into monstrous versions of themselves. Until the spell ends, up to 3 spiders become giant spiders, 2 ants become giant ants, 2 crickets or mantises become ankhegs, a centipede becomes a giant centipede, or a scorpion becomes a giant scorpion. The spell ends for a creature when it dies or when you use an action to end the effect on it.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the insects. When you command multiple insects using this spell, you may simultaneously give them all the same command.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "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", @@ -5049,7 +5049,7 @@ "desc": "When you make a Charisma check, you can replace the number you rolled with 15\\. Also, magic that prevents lying has no effect on you, and magic cannot determine that you are lying.", "document": "a5esrd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5080,7 +5080,7 @@ "desc": "An immobile, glimmering sphere forms around you. Any spell of 5th-level or lower cast from outside the sphere can't affect anything inside the sphere, even if it's cast with a higher level spell slot. Targeting something inside the sphere or including the globe's space in an area has no effect on anything inside.", "document": "a5esrd", "level": 6, - "school": "Abjuration", + "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", @@ -5111,7 +5111,7 @@ "desc": "You trace a glyph on the target. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen you cast the spell, choose Explosive Runes or Spell Glyph.\n\n* **Explosive Runes:** When triggered, the glyph explodes. Creatures in a 20-foot radius sphere make a Dexterity saving throw or take 5d8 acid, cold, fire, lightning, or thunder damage (your choice when you cast the spell), or half damage on a successful save. The explosion spreads around corners.\n* **Spell Glyph:** You store a spell of 3rd-level or lower as part of creating the glyph, expending its spell slot. The stored spell must target a single creature or area with a non-beneficial effect and it is cast when the glyph is triggered. A spell that targets a creature targets the triggering creature. A spell with an area is centered on the targeting creature. A creation or conjuration spell affects an area next to that creature, and targets it with any harmful effects. Spells requiring concentration last for their full duration.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -5142,7 +5142,7 @@ "desc": "You transform the components into 2d4 berries.\n\nFor the next 24 hours, any creature that consumes one of these berries regains 1 hit point. Eating or administering a berry is an action. The berries do not provide any nourishment or sate hunger.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", "target_type": "creature", "range": "Touch", @@ -5173,7 +5173,7 @@ "desc": "You cause a message in Druidic to appear on a tree or plant within range which you have seen before.\n\nYou can cast the spell again to erase the message.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "100 miles", @@ -5204,7 +5204,7 @@ "desc": "Grease erupts from a point that you can see within range and coats the ground in the area, turning it into difficult terrain until the spell ends.\n\nWhen the grease appears, each creature within the area must succeed on a Dexterity saving throw or fall prone. A creature that enters or ends its turn in the area must also succeed on a Dexterity saving throw or fall prone.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -5235,7 +5235,7 @@ "desc": "The target is invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession.", "document": "a5esrd", "level": 4, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5266,7 +5266,7 @@ "desc": "Healing energy rejuvenates a creature you touch and undoes a debilitating effect. You can remove one of:\n\n* a level of fatigue.\n* a level of strife.\n* a charm or petrification effect.\n* a curse or cursed item attunement.\n* any reduction to a single ability score.\n* an effect that has reduced the target's hit point maximum.", "document": "a5esrd", "level": 5, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5297,7 +5297,7 @@ "desc": "A large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. This guardian occupies that space and is indistinct except for a gleaming sword and sheild emblazoned with the symbol of your deity.\n\nAny creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -5330,7 +5330,7 @@ "desc": "You create wards that protect the target area. Each warded area has a maximum height of 20 feet and can be shaped. Several stories of a stronghold can be warded by dividing the area among them if you can walk from one to the next while the spell is being cast.\n\nWhen cast, you can create a password that can make a creature immune to these effects when it is spoken aloud. You may also specify individuals that are unaffected by any or all of the effects that you choose.\n\n_Guards and wards_ creates the following effects within the area of the spell.\n\n* **_Corridors:_** Corridors are heavily obscured with fog. Additionally, creatures that choose between multiple passages or branches have a 50% chance to unknowingly choose a path other than the one they meant to choose.\n* **_Doors:_** Doors are magically locked as if by an _arcane lock_ spell. Additionally, you may conceal up to 10 doors with an illusion as per the illusory object component of the _minor illusion_ spell to make the doors appear as unadorned wall sections.\n* **_Stairs:_** Stairs are filled from top to bottom with webs as per the _web_ spell. Until the spell ends, the webbing strands regrow 10 minutes after they are damaged or destroyed.\n\nIn addition, one of the following spell effects can be placed within the spell's area.\n\n* _Dancing lights_ can be placed in 4 corridors and you can choose for them to repeat a simple sequence.\n* _Magic mouth_ spells can be placed in 2 locations.\n_Stinking clouds_ can be placed in 2 locations.\n\nThe clouds return after 10 minutes if dispersed while the spell remains.\n* A _gust of wind_ can be placed in a corridor or room.\n* Pick a 5-foot square. Any creature that passes through it subjected to a _suggestion_ spell, hearing the suggestion mentally.\n\nThe entirety of the warded area radiates as magic. Each effect must be targeted by separate dispel magic spells to be removed.\n\nThe spell can be made permanent by recasting the spell every day for a year.", "document": "a5esrd", "level": 6, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Touch", @@ -5361,7 +5361,7 @@ "desc": "The target may gain an expertise die to one ability check of its choice, ending the spell. The expertise die can be rolled before or after the ability check is made.", "document": "a5esrd", "level": 0, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5392,7 +5392,7 @@ "desc": "A bolt of light erupts from your hand. Make a ranged spell attack against the target. On a hit, you deal 4d6 radiant damage and the next attack roll made against the target before the end of your next turn has advantage.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d6 for each slot level above 1st.", "target_type": "creature", "range": "120 feet", @@ -5423,7 +5423,7 @@ "desc": "A torrent of wind erupts from your hand in a direction you choose. Each creature that starts its turn in the area or moves into the area must succeed on a Strength saving throw or be pushed 15 feet from you in the direction of the line.\n\nAny creature in the area must spend 2 feet of movement for every foot moved when trying to approach you.\n\nThe blast of wind extinguishes small fires and disperses gas or vapor.\n\nYou can use a bonus action to change the direction of the gust.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5454,7 +5454,7 @@ "desc": "You imbue the area with divine power, bolstering some creatures and hindering others. Celestials, elementals, fey, fiends, and undead cannot enter the area. They are also incapable of charming, frightening, or possessing another creature within the area. Any such effects end on a creature that enters the area. When casting, you may exclude one or more creature types from this effect.\n\nAdditionally, you may anchor additional magical effects to the area. Choose one effect from the list below (the Narrator may also offer specific effects).\n\nSome effects apply to creatures. You may choose to affect all creatures, creatures of a specific type, or those that follow a specific leader or deity. Creatures make a Charisma saving throw when the spell is cast, when they enter the area for the first time on a turn, or if they end their turn within the area. On a successful save, a creature is immune to the effect until it leaves the area.\n\n* **Courage:** Creatures in the area cannot be frightened.\n* **Darkness:** The area is filled by darkness, and normal light sources or sources from a lower level spell slot are smothered within it.\n* **Daylight:** The area is filled with bright light, dispelling magical darkness created by spells of a lower level spell slot.\n* **Energy Protection:** Creatures in the area gain resistance against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Energy Vulnerability:** Creatures in the area gain vulnerability against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Everlasting Rest:** Dead bodies laid to rest in the area cannot be turned into undead by any means.\n* **Extradimensional Interference:** Extradimensional movement or travel is blocked to and from the area, including all teleportation effects.\n* **Fear**: Creatures are frightened while within the area.\n* **Silence:** No sound can enter or emanate from the area.\n* **Tongues:** Creatures within the area can freely communicate with one another whether they share a language or not.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "Touch", @@ -5485,7 +5485,7 @@ "desc": "You weave a veil over the natural terrain within the area, making it look, sound, or smell like another sort of terrain. A small lake could be made to look like a grassy glade. A path or trail could be made to look like an impassable swamp. A cliff face could even appear as a gentle slope or seem to extend further than it does. This spell does not affect any manufactured structures, equipment, or creatures.\n\nOnly the visual, auditory, and olfactory components of the terrain are changed. Any creature that enters or attempts to interact with the illusion feels the real terrain below. If given sufficient reason, a creature may make an Investigation check against your spell save DC to disbelieve it. On a successful save, the creature sees the illusion superimposed over the actual terrain.", "document": "a5esrd", "level": 4, - "school": "Illusion", + "school": "illusion", "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", "target_type": "area", "range": "300 feet", @@ -5516,7 +5516,7 @@ "desc": "You assail a target with an agonizing disease. The target takes 14d6 necrotic damage. If it fails its saving throw its hit point maximum is reduced by an amount equal to the damage taken for 1 hour or until the disease is magically cured. This spell cannot reduce a target to less than 1 hit point.", "document": "a5esrd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", "target_type": "point", "range": "60 feet", @@ -5549,7 +5549,7 @@ "desc": "You harmonize with the rhythm of those around you until you're perfectly in sync. You may take the Help action as a bonus action. Additionally, when a creature within 30 feet uses a Bardic Inspiration die, you may choose to reroll the die after it is rolled but before the outcome is determined.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5580,7 +5580,7 @@ "desc": "Until the spell ends, the target's Speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains one additional action on each of its turns. This action can be used to make a single weapon attack, or to take the Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, the target is tired and cannot move or take actions until after its next turn.", "document": "a5esrd", "level": 3, - "school": "Transformation", + "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", @@ -5611,7 +5611,7 @@ "desc": "A torrent of healing energy suffuses the target and it regains 70 hit points. The spell also ends blindness, deafness, and any diseases afflicting the target.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", "target_type": "point", "range": "60 feet", @@ -5642,7 +5642,7 @@ "desc": "Healing energy washes over the target and it regains hit points equal to 1d4 + your spellcasting modifier.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", "target_type": "point", "range": "60 feet", @@ -5673,7 +5673,7 @@ "desc": "You magically replace your heart with one forged on the second layer of Hell. While the spell lasts, you are immune to fear and can't be poisoned, and you are immune to fire and poison damage. You gain resistance to cold damage, as well as to bludgeoning, piercing, and slashing damage from nonmagical weapons that aren't silvered. You have advantage on saving throws against spells and other magical effects. Finally, while you are conscious, any creature hostile to you that starts its turn within 20 feet of you must make a Wisdom saving throw. On a failed save, the creature is frightened of you until the start of your next turn. On a success, the creature is immune to the effect for 24 hours.\n\nCasting this spell magically transports your mortal heart to the lair of one of the lords of Hell. The heart returns to your body when the spell ends. If you die while under the effects of this spell, you can't be brought back to life until your original heart is retrieved.", "document": "a5esrd", "level": 8, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "object", "range": "Self", @@ -5704,7 +5704,7 @@ "desc": "The target becomes oven hot. Any creature touching the target takes 2d8 fire damage when the spell is cast. Until the spell ends, on subsequent turns you can use a bonus action to inflict the same damage. If a creature is holding or wearing the target and suffers damage, it makes a Constitution saving throw or it drops the target. If a creature does not or cannot drop the target, it has disadvantage on attack rolls and ability checks until the start of your next turn.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", "target_type": "creature", "range": "60 feet", @@ -5737,7 +5737,7 @@ "desc": "The spell summons forth a sumptuous feast with a cuisine of your choosing that provides 1 Supply for a number of creatures equal to twice your proficiency bonus. Consuming the food takes 1 hour and leaves a creature feeling nourished—it immediately makes a saving throw with advantage against any disease or poison it is suffering from, and it is cured of any effect that frightens it.\n\nFor up to 24 hours afterward the feast's participants have advantage on Wisdom saving throws, advantage on saving throws made against disease and poison, resistance against damage from poison and disease, and each increases its hit point maximum by 2d10.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -5768,7 +5768,7 @@ "desc": "The target's spirit is bolstered. Until the spell ends, the target gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns and it cannot be frightened. Any temporary hit points remaining are lost when the spell ends.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "Target one additional creature for each slot level above 1st.", "target_type": "point", "range": "Touch", @@ -5799,7 +5799,7 @@ "desc": "The target is overwhelmed by the absurdity of the world and is crippled by paroxysms of laughter. The target falls prone, becomes incapacitated, and cannot stand.\n\nUntil the spell ends, at the end of each of the target's turns and when it suffers damage, the target may attempt another saving throw (with advantage if triggered by damage). On a successful save, the spell ends.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "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", @@ -5830,7 +5830,7 @@ "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", "document": "a5esrd", "level": 5, - "school": "Enchantment", + "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", @@ -5861,7 +5861,7 @@ "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "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", @@ -5892,7 +5892,7 @@ "desc": "Holy radiance emanates from you and fills the area. Targets shed dim light in a 5-foot radius and have advantage on saving throws. Attacks made against a target have disadvantage. When a fiend or undead hits a target, the aura erupts into blinding light, forcing the attacker to make a Constitution saving throw or be blinded until the spell ends.", "document": "a5esrd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Self", @@ -5923,7 +5923,7 @@ "desc": "You conjure a swirling pattern of twisting hues that roils through the air, appearing for a moment and then vanishing. Creatures in the area that can perceive the pattern make a Wisdom saving throw or become charmed. A creature charmed by this spell becomes incapacitated and its Speed is reduced to 0.\n\nThe effect ends on a creature when it takes damage or when another creature uses an action to shake it out of its daze.", "document": "a5esrd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -5954,7 +5954,7 @@ "desc": "A bombardment of jagged ice erupts throughout the target area. All creatures in the area take 2d8 bludgeoning damage and 4d6 cold damage. Large chunks of ice turn the area into difficult terrain until the end of your next turn.", "document": "a5esrd", "level": 4, - "school": "Evocation", + "school": "evocation", "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", "target_type": "area", "range": "300 feet", @@ -5985,7 +5985,7 @@ "desc": "You learn the target item's magical properties along with how to use them. This spell also reveals whether or not a targeted item requires attunement and how many charges it has. You learn what spells are affecting the targeted item (if any) along with what spells were used to create it.\n\nAlternatively, you learn any spells that are currently affecting a targeted creature.\n\nWhat this spell can reveal is at the Narrator's discretion, and some powerful and rare magics are immune to identify.", "document": "a5esrd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "Touch", @@ -6016,7 +6016,7 @@ "desc": "You inscribe a message onto the target and wrap it in illusion until the spell ends. You and any creatures that you designate when the spell is cast perceive the message as normal. You may choose to have other creatures view the message as writing in an unknown or unintelligible magical script or a different message. If you choose to create another message, you can change the handwriting and the language that the message is written in, though you must know the language in question.\n\nIf the spell is dispelled, both the message and its illusory mask disappear.\n\nThe true message can be perceived by any creature with truesight.", "document": "a5esrd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6047,7 +6047,7 @@ "desc": "You utter the target's name and attempt to bind them for eternity. On a successful save, a target is immune to any future attempts by you to cast this spell on it. On a failed save, choose from one of the forms of bindings below (each lasts until the spell ends).\n\n* **Burial:** The target is buried deep below the surface of the earth in a tomb just large enough to contain it. Nothing can enter the tomb. No teleportation or planar travel can be used to enter, leave, or affect the tomb or its contents. A small mithral orb is required for this casting.\n* **Chaining:** Chains made of unbreakable material erupt from the ground and root the target in place. The target is restrained and cannot be moved by any means. A small adamantine chain is required for this casting.\n* **Hedged Prison:** The target is imprisoned in a maze-like demiplane of your choosing, such as a labyrinth, a cage, a tower, a hedge maze, or any similar structure you desire. The demiplane is warded against teleportation and planar travel. A small jade representation of the demiplane is required for this casting.\n* **Minimus Containment:** The target shrinks to just under an inch and is imprisoned inside a gemstone, crystal, jar, or similar object. Nothing but light can pass in and out of the vessel, and it cannot be broken, cut, or otherwise damaged. The special component for this effect is whatever prison you wish to use.\n* **Slumber:** The target is plunged into an unbreakable slumber and cannot be awoken. Special soporific draughts are required for this casting.\n\nThe target does not need sustenance or air, nor does it age. No divination spells of any sort can be used to reveal the target's location.\n\nWhen cast, you must specify a condition that will cause the spell to end and release the target. This condition must be based on some observable action or quality and not related to mechanics like level, hitpoints, or class, and the Narrator must agree to it.\n\nA dispel magic only dispels an _imprisonment_ if it is cast using a 9th-level spell slot and targets the prison or the special component used to create the prison.\n\nEach casting that uses the same spell effect requires its own special component. Repeated castings with the same component free the prior occupant.", "document": "a5esrd", "level": 9, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -6078,7 +6078,7 @@ "desc": "A cloud of burning embers, smoke, and roiling flame appears within range. The cloud heavily obscures its area, spreading around corners and through cracks. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Dexterity saving throw, taking 10d8 fire damage on a failed save, or half as much on a successful one.\n\nThe cloud can be dispelled by a wind of at least 10 miles per hour. After it is cast, the cloud moves 10 feet away from you in a direction that you choose at the start of each of your turns.", "document": "a5esrd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -6109,7 +6109,7 @@ "desc": "You infect your target with an arcane disease. At any time after you cast this spell, as long as you are on the same plane of existence as the target, you can use an action to deal 7d10 necrotic damage to the target. If this damage would reduce the target to 0 hit points, you can choose to leave it with 1 hit point.\n\nAs part of dealing the damage, you may expend a 7th-level spell slot to sustain the disease. Otherwise, the spell ends. The spell ends when you die.\n\nCasting remove curse, greater restoration, or heal on the target allows the target to make a Constitution saving throw against the disease. Otherwise the disease can only be cured by a wish spell.", "document": "a5esrd", "level": 7, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 1d10 for each slot level above 7th.", "target_type": "point", "range": "60 feet", @@ -6140,7 +6140,7 @@ "desc": "A weapon formed from the essence of Hell appears in your hands. You must use two hands to wield the weapon. If you let go of the weapon, it disappears and the spell ends.\n\nWhen you cast the spell, choose either a flame fork or ice spear. While the spell lasts, you can use an action to make a melee spell attack with the weapon against a creature within 10 feet of you.\n\nOn a hit, you deal 5d8 damage of a type determined by the weapon's form. On a critical hit, you inflict an additional effect.\n\nIn addition, on a hit with the infernal weapon, you can end the spell early to inflict an automatic critical hit.\n\n**Flame Fork.** The weapon deals fire damage.\n\nOn a critical hit, the target catches fire, taking 2d6 ongoing fire damage.\n\n**Ice Spear.** The weapon deals cold damage. On a critical hit, for 1 minute the target is slowed.\n\nAt the end of each of its turns a slowed creature can make a Constitution saving throw, ending the effect on itself on a success.\n\nA creature reduced to 0 hit points by an infernal weapon immediately dies in a gruesome fashion.\n\nFor example, a creature killed by an ice spear might freeze solid, then shatter into a thousand pieces. Each creature of your choice within 60 feet of the creature and who can see it when it dies must make a Wisdom saving throw. On a failure, a creature becomes frightened of you until the end of your next turn.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6171,7 +6171,7 @@ "desc": "You impart fell energies that suck away the target's life force, making a melee spell attack that deals 3d10 necrotic damage.", "document": "a5esrd", "level": 1, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 1d10 for each slot level above 1st.", "target_type": "creature", "range": "Touch", @@ -6202,7 +6202,7 @@ "desc": "A roiling cloud of insects appears, biting and stinging any creatures it touches. The cloud lightly obscures its area, spreads around corners, and is considered difficult terrain. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Constitution saving throw, taking 4d10 piercing damage on a failed save, or half as much on a successful one.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d10 for each slot level above 5th.", "target_type": "creature", "range": "300 feet", @@ -6233,7 +6233,7 @@ "desc": "Until the spell ends, a mystical bond connects the target and the precious stone used to cast this spell.\n\nAny time after, you may crush the stone and speak the name of the item, summoning it instantly into your hand no matter the physical, metaphysical, or planar distances involved, at which point the spell ends. If another creature is holding the item when the stone is crushed, the item is not summoned to you. Instead, the spell grants you the knowledge of who possesses it and a general idea of the creature's location.\n\nEach time you cast this spell, you must use a different precious stone.\n\nDispel magic or a similar effect targeting the stone ends the spell.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "Touch", @@ -6264,7 +6264,7 @@ "desc": "You allow long-forgotten fighting instincts to boil up to the surface. For the duration of the spell, whenever the target deals damage with an unarmed strike or natural weapon, it deals 1d4 extra damage.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -6295,7 +6295,7 @@ "desc": "You wreathe a creature in an illusory veil, making it invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession. The spell's effects end for a target that attacks or casts a spell.", "document": "a5esrd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "Target one additional creature for each slot level above 2nd.", "target_type": "creature", "range": "Touch", @@ -6326,7 +6326,7 @@ "desc": "You murmur a tune that takes root in the target's mind until the spell ends, forcing it to caper, dance, and shuffle. At the start of each of its turns, the dancing target must use all of its movement to dance in its space, and it has disadvantage on attack rolls and saving throws. Attacks made against the target have advantage. On each of its turns, the target can use an action to repeat the saving throw, ending the spell on a successful save.", "document": "a5esrd", "level": 6, - "school": "Enchantment", + "school": "enchantment", "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", "target_type": "creature", "range": "30 feet", @@ -6357,7 +6357,7 @@ "desc": "You imbue a target with the ability to make impossible leaps. The target's jump distances increase 15 feet vertically and 30 feet horizontally.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "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", @@ -6388,7 +6388,7 @@ "desc": "Make a check against the DC of a lock or door using your spell attack bonus. On a success, you unlock or open the target with a loud metallic clanging noise easily audible at up to 300 feet. In addition, any traps on the object are automatically triggered. An item with multiple locks requires multiple castings of this spell to be opened.\n\nWhen you target an object held shut by an arcane lock, that spell is suppressed for 10 minutes, allowing the object to be opened and shut normally during that time.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -6419,7 +6419,7 @@ "desc": "You learn significant information about the target. This could range from the most up-todate research, lore forgotten in old tales, or even previously unknown information. The spell gives you additional, more detailed information if you already have some knowledge of the target. The spell will not return any information for items not of legendary renown.\n\nThe knowledge you gain is always true, but may be obscured by metaphor, poetic language, or verse.\n\nIf you use the spell for a cursed tome, for instance, you may gain knowledge of the dire words spoken by its creator as they brought it into the world.", "document": "a5esrd", "level": 5, - "school": "Divination", + "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", @@ -6450,7 +6450,7 @@ "desc": "Your body melts into a humanoid-shaped mass of liquid flesh. Each creature within 5 feet of you that can see the transformation must make a Wisdom saving throw. On a failure, the creature can't take reactions and is frightened of you until the start of its next turn. Until the end of your turn, your Speed becomes 20 feet, you can't speak, and you can move through spaces as narrow as 1 inch wide without squeezing. You revert to your normal form at the end of your turn.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6481,7 +6481,7 @@ "desc": "Your glowing hand removes one disease or condition affecting the target. Choose from blinded, deafened, paralyzed, or poisoned. At the Narrator's discretion, some diseases might not be curable with this spell.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6512,7 +6512,7 @@ "desc": "Until the spell ends, the target rises vertically in the air up to 20 feet and remains floating there, able to move only by pushing or pulling on fixed objects or surfaces within its reach. This allows the target to move as if it was climbing.\n\nOn subsequent turns, you can use your action to alter the target's altitude by up to 20 feet in either direction so long as it remains within range. If you have targeted yourself you may move up or down as part of your movement.\n\nThe target floats gently to the ground if it is still in the air when the spell ends.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "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", @@ -6543,7 +6543,7 @@ "desc": "Until the spell ends, the target emits bright light in a 20-foot radius and dim light an additional 20 feet. Light emanating from the target may be any color. Completely covering the target with something that is not transparent blocks the light. The spell ends when you use an action to dismiss it or if you cast it again.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -6574,7 +6574,7 @@ "desc": "A bolt of lightning arcs out from you in a direction you choose. Each creature in the area takes 8d6 lightning damage. The lightning ignites flammable objects in its path that aren't worn or carried by another creature.\n\nIf the spell is stopped by an object at least as large as its width, it ends there unless it deals enough damage to break through. When it does, it continues to the end of its area.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", "target_type": "creature", "range": "Self", @@ -6607,7 +6607,7 @@ "desc": "Name or describe in detail a specific kind of beast or plant. The natural magics in range reveal the closest example of the target within 5 miles, including its general direction (north, west, southeast, and so on) and how many miles away it currently is.", "document": "a5esrd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "area", "range": "5 miles", @@ -6638,7 +6638,7 @@ "desc": "Name or describe in detail a creature familiar to you. The spell reveals the general direction the creature is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate specific, known creatures, or the nearest creature of a specific type (like a bat, gnome, or red dragon) provided that you have observed that type within 30 feet at least once. If a specific creature you seek is in a different form (for example a wildshaped druid) the spell is unable to find it.\n\nThe spell cannot travel across running water 10 feet across or wider—it is unable to find the creature and the trail ends.", "document": "a5esrd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "1000 feet", @@ -6669,7 +6669,7 @@ "desc": "Name or describe in detail an object familiar to you. The spell reveals the general direction the object is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate a specific object known to you, provided that you have observed it within 30 feet at least once. You may also find the closest example of a certain type of object (for example an instrument, item of furniture, compass, or vase).\n\nWhen there is any thickness of lead in the direct path between you and the object the spell is unable to find it.", "document": "a5esrd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "1000 feet", @@ -6700,7 +6700,7 @@ "desc": "Until the spell ends, the target's Speed increases by 10 feet.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "Target one additional creature for each slot level above 1st.", "target_type": "creature", "range": "Touch", @@ -6731,7 +6731,7 @@ "desc": "Until the spell ends, the target is protected by a shimmering magical force. Its AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor, or if you use an action to dismiss it.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "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", @@ -6762,7 +6762,7 @@ "desc": "A faintly shimmering phantasmal hand appears at a point you choose within range. It remains until you dismiss it as an action, or until you move more than 30 feet from it.\n\nYou can use an action to control the hand and direct it to do any of the following:\n\n* manipulate an object.\n* open an unlocked container or door.\n* stow or retrieve items from unlocked containers.\n\nThe hand cannot attack, use magic items, or carry more than 10 pounds.", "document": "a5esrd", "level": 0, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -6793,7 +6793,7 @@ "desc": "Magical energies surround the area and stop the type of designated creature from willingly entering by nonmagical means.\n\nDesignated creatures have disadvantage when attacking creatures within the area and are unable to charm, frighten, or possess creatures within the area. When a designated creature attempts to teleport or use interplanar travel to enter the area, it makes a Charisma saving throw or its attempt fails.\n\nYou may also choose to reverse this spell, trapping a creature of your chosen type within the area in order to protect targets outside it.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", "target_type": "area", "range": "30 feet", @@ -6824,7 +6824,7 @@ "desc": "Your body becomes catatonic as your soul enters the vessel used as a material component. While within this vessel, you're aware of your surroundings as if you physically occupied the same space.\n\nThe only action you can take is to project your soul within range, whether to return to your living body (and end the spell) or to possess a humanoid.\n\nYou may not target creatures protected by protection from good and evil or magic circle spells. A creature you try to possess makes a Charisma saving throw or your soul moves from your vessel and into its body. The creature's soul is now within the container. On a successful save, the creature resists and you may not attempt to possess it again for 24 hours.\n\nOnce you possess a creature, you have control of it. Replace your game statistics with the creature's, except your Charisma, Intelligence and Wisdom scores. Your own cultural traits and class features also remain, and you may not use the creature's cultural traits or class features (if it has any).\n\nDuring possession, you can use an action to return to the vessel if it is within range, returning the host creature to its body. If the host body dies while you are possessing it, the creature also dies and you must make a Charisma save. On a success you return to the container if it's within range. Otherwise, you die.\n\nIf the vessel is destroyed, the spell ends and your soul returns to your body if it's within range. If your body is out of range or dead when you try to return, you die.\n\nThe possessed creature perceives the world as if it occupied the same space as the vessel, but may not take any actions or movement. If the vessel is destroyed while occupied by a creature other than yourself, the creature returns to its body if the body is alive and within range. Otherwise, the creature dies.\n\nThe vessel is destroyed when the spell ends.", "document": "a5esrd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -6855,7 +6855,7 @@ "desc": "A trio of glowing darts of magical force unerringly and simultaneously strike the targets, each dealing 1d4+1 force damage.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "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", @@ -6886,7 +6886,7 @@ "desc": "The target is imbued with a spoken message of 25 words or fewer which it speaks when a trigger condition you choose is met. The message may take up to 10 minutes to convey.\n\nWhen your trigger condition is met, a magical mouth appears on the object and recites the message in the same voice and volume as you used when instructing it. If the object chosen has a mouth (for example, a painted portrait) this is where the mouth appears.\n\nYou may choose upon casting whether the message is a single event, or whether it repeats every time the trigger condition is met.\n\nThe trigger condition must be based upon audio or visual cues within 30 feet of the object, and may be highly detailed or as broad as you choose.\n\nFor example, the trigger could be when any attack action is made within range, or when the first spring shoot breaks ground within range.", "document": "a5esrd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -6917,7 +6917,7 @@ "desc": "Until the spell ends, the target becomes +1 magic weapon.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", "target_type": "object", "range": "Touch", @@ -6948,7 +6948,7 @@ "desc": "You conjure an extradimensional residence within range. It has one entrance that is in a place of your choosing, has a faint luster to it, and is 5 feet wide and 10 feet tall. You and any designated creature may enter your mansion while the portal is open. You may open and close the portal while you are within 30 feet of it. Once closed the entrance is invisible.\n\nThe entrance leads to an opulent entrance hall, with many doors and halls coming from it. The atmosphere is welcoming, warm, and comfortable, and the whole place is sparkling clean.\n\nThe floor plan of the residence is up to you, but it must be made up of fifty or fewer 10-foot cubes.\n\nThe furniture and decor are chosen by you. The residence contains enough food to provide Supply for a number of people equal to 5 × your proficiency bonus. A staff of translucent, lustrous servants dwell within the residence. They may otherwise look how you wish. These servants obey your commands without question, and can perform the same nonhostile actions as a human servant—they might carry objects, prepare and serve food and drinks, clean, make simple repairs, and so on. Servants have access to the entire mansion but may not leave.\n\nAll objects and furnishings belonging to the mansion evaporate into shimmering smoke when they leave it. Any creature within the mansion when the spell ends is expelled into an unoccupied space near the entrance.", "document": "a5esrd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "300 feet", @@ -6979,7 +6979,7 @@ "desc": "Until the spell ends, you create an image that appears completely real. The illusion includes sounds, smells, and temperature in addition to visual phenomena. None of the effects of the illusion are able to cause actual harm.\n\nWhile within range you can use an action to move the illusion. As the image moves you may also change its appearance to make the movement seem natural (like a roc moving its wings to fly) and also change the nonvisual elements of the illusion for the same reason (like the sound of beating wings as the roc flies).\n\nAny physical interaction immediately reveals the image is an illusion, as objects and creatures alike pass through it. An Investigation check against your spell save DC also reveals the image is an illusion.\n\nWhen a creature realizes the image is an illusion, the effects become fainter for that creature.", "document": "a5esrd", "level": 3, - "school": "Illusion", + "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", @@ -7010,7 +7010,7 @@ "desc": "Glowing energy rushes through the air and each target regains hit points equal to 3d8 + your spellcasting modifier.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", "target_type": "point", "range": "60 feet", @@ -7041,7 +7041,7 @@ "desc": "Healing energy erupts from your steepled hands and restores up to 700 hit points between the targets.\n\nCreatures healed in this way are also cured of any diseases, and any effect causing them to be blinded or deafened. In addition, on subsequent turns within the next minute you can use a bonus action to distribute any unused hit points.", "document": "a5esrd", "level": 9, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -7072,7 +7072,7 @@ "desc": "Healing energy flows from you in a wash of restorative power and each target regains hit points equal to 1d4 + your spellcasting ability modifier.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", "target_type": "point", "range": "60 feet", @@ -7103,7 +7103,7 @@ "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The targets are magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the targets to perform an action that is obviously harmful to them ends the spell.\n\nA target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after a target has carried out the activity.\n\nYou may specify trigger conditions that cause a target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to a target by you or an ally ends the spell for that creature.", "document": "a5esrd", "level": 6, - "school": "Enchantment", + "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", @@ -7134,7 +7134,7 @@ "desc": "The target is banished to a complex maze on its own demiplane, and remains there for the duration or until the target succeeds in escaping.\n\nThe target can use an action to attempt to escape, making an Intelligence saving throw. On a successful save it escapes and the spell ends. A creature with Labyrinthine Recall (or a similar trait) automatically succeeds on its save.\n\nWhen the spell ends the target reappears in the space it occupied before the spell was cast, or the closest unoccupied space if that space is occupied.", "document": "a5esrd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7165,7 +7165,7 @@ "desc": "Until the spell ends, you meld yourself and your carried equipment into the target stone. Using your movement, you may enter the stone from any point you can touch. No trace of your presence is visible or detectable by nonmagical senses.\n\nWithin the stone, you can't see outside it and have disadvantage on Perception checks made to hear beyond it. You are aware of time passing, and may cast spells upon yourself. You may use your movement only to step out of the target where you entered it, ending the spell.\n\nIf the target is damaged such that its shape changes and you no longer fit within it, you are expelled and take 6d6 bludgeoning damage. Complete destruction of the target, or its transmutation into another substance, expels you and you take 50 bludgeoning damage. When expelled you fall prone into the closest unoccupied space near your entrance point.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "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", @@ -7196,7 +7196,7 @@ "desc": "You repair a single rip or break in the target object (for example, a cracked goblet, torn page, or ripped robe). The break must be smaller than 1 foot in all dimensions. The spell leaves no trace that the object was damaged.\n\nMagic items and constructs may be repaired in this way, but their magic is not restored. You gain an expertise die on maintenance checks if you are able to cast this spell on the item you are treating.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -7227,7 +7227,7 @@ "desc": "You conjure extensions of your own mental fortitude to keep your foes at bay. For the spell's duration, you can use an action to attempt to grapple a creature within range by making a concentration check against its maneuver DC.\n\nOn its turn, a target grappled in this way can use an action to attempt to escape the grapple, using your spell save DC instead of your maneuver DC.\n\nSuccessful escape attempts do not break your concentration on the spell.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7258,7 +7258,7 @@ "desc": "You point and whisper your message at the target.\n\nIt alone hears the message and may reply in a whisper audible only to you.\n\nYou can cast this spell through solid objects if you are familiar with the target and are certain it is beyond the barrier. The message is blocked by 3 feet of wood, 1 foot of stone, 1 inch of common metals, or a thin sheet of lead.\n\nThe spell moves freely around corners or through openings.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -7289,7 +7289,7 @@ "desc": "Scorching spheres of flame strike the ground at 4 different points within range. The effects of a sphere reach around corners. Creatures and objects in the area take 14d6 fire damage and 14d6 bludgeoning damage, and flammable unattended objects catch on fire. If a creature is in the area of more than one sphere, it is affected only once.", "document": "a5esrd", "level": 9, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "1 mile", @@ -7320,7 +7320,7 @@ "desc": "The target is immune to psychic damage, any effect that would read its emotions or thoughts, divination spells, and the charmed condition.\n\nThis immunity extends even to the wish spell, and magical effects or spells of similar power that would affect the target's mind or gain information about it.", "document": "a5esrd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7351,7 +7351,7 @@ "desc": "The target has resistance to psychic damage and advantage on saving throws made to resist being charmed or frightened.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7382,7 +7382,7 @@ "desc": "This spell creates a sound or image of an object.\n\nThe illusion disappears if dismissed or you cast the spell again.\n\nYou may create any sound you choose, ranging in volume from a whisper to a scream. You may choose one sound for the duration or change them at varying points before the spell ends. Sounds are audible outside the spell's area.\n\nVisual illusions may replicate any image and remain within the spell's area, but cannot create sound, light, smell, or other sensory effects.\n\nThe image is revealed as an illusion with any physical interaction as physical objects and creatures pass through it. An Investigation check against your spell save DC also reveals the image is an illusion. When a creature realizes the image is an illusion, the effects become fainter for that creature.", "document": "a5esrd", "level": 0, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -7413,7 +7413,7 @@ "desc": "You make terrain within the spell's area appear as another kind of terrain, tricking all senses (including touch).\n\nThe general shape of the terrain remains the same, however. A small town could resemble a woodland, a smooth road could appear rocky and overgrown, a deep pit could resemble a shallow pond, and so on.\n\nStructures may be altered in the similar way, or added where there are none. Creatures are not disguised, concealed, or added by the spell.\n\nThe illusion appears completely real in all aspects, including physical terrain, and can be physically interacted with. Clear terrain becomes difficult terrain, and vice versa. Any part of the illusory terrain such as a boulder, or water collected from an illusory stream, disappears immediately upon leaving the spell's area.\n\nCreatures with truesight see through the illusion, but are not immune to its effects. They may know that the overgrown path is in fact a well maintained road, but are still impeded by illusory rocks and branches.", "document": "a5esrd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "area", "range": "Sight", @@ -7444,7 +7444,7 @@ "desc": "A total of 3 illusory copies of yourself appear in your space. For the duration, these copies move with you and mimic your actions, creating confusion as to which is real.\n\nYou can use an action to dismiss them.\n\nEach time you're targeted by a creature's attack, roll a d20 to see if it targets you or one of your copies.\n\nWith 3 copies, a roll of 6 or higher means a copy is targeted. With two copies, a roll of 8 or higher targets a copy, and with 1 copy a roll of 11 or higher targets the copy.\n\nA copy's AC is 10 + your Dexterity modifier, and when it is hit by an attack a copy is destroyed.\n\nIt may be destroyed only by an attack that hits it.\n\nAll other damage and effects have no impact.\n\nAttacking creatures that have truesight, cannot see, have blindsight, or rely on other nonvisual senses are unaffected by this spell.", "document": "a5esrd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", "target_type": "creature", "range": "Self", @@ -7475,7 +7475,7 @@ "desc": "You become invisible. At the same time, an illusory copy of you appears where you're standing.\n\nThis invisibility ends when you cast a spell but the copy lasts until the spell ends.\n\nYou can use an action to move your copy up to twice your Speed, have it speak, make gestures, or behave however you'd like.\n\nYou may see and hear through your copy. Until the spell ends, you can use a bonus action to switch between your copy's senses and your own, or back again. While using your copy's senses you are blind and deaf to your body's surroundings.\n\nThe copy is revealed as an illusion with any physical interaction, as solid objects and creatures pass through it.", "document": "a5esrd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "Self", @@ -7506,7 +7506,7 @@ "desc": "You teleport to an unoccupied space that you can see, disappearing and reappearing in a swirl of shimmering mist.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -7537,7 +7537,7 @@ "desc": "The target has advantage on its saving throw if you are in combat with it. The target becomes charmed and incapacitated, though it can still hear you. Until the spell ends, any memories of an event that took place within the last 24 hours and lasted 10 minutes or less may be altered.\n\nYou may destroy the memory, have the target recall the event with perfect clarity, change the details, or create a new memory entirely with the same restrictions in time frame and length.\n\nYou must speak to the target in a language you both know to modify its memories and describe how the memory is changed. The target fills in the gaps in details based on your description.\n\nThe spell automatically ends if the target takes any damage or if it is targeted by another spell. If the spell ends before you have finished modifying its memories, the alteration fails. Otherwise, the alteration is complete when the spell ends and only greater restoration or remove curse can restore the memory.\n\nThe Narrator may deem a modified memory too illogical or nonsensical to affect a creature, in which case the modified memory is simply dismissed by the target. In addition, a modified memory doesn't specifically change the behavior of a creature, especially if the memory conflicts with the creature's personality, beliefs, or innate tendencies.\n\nThere may also be events that are practically unforgettable and after being modified can be remembered correctly when another creature succeeds on a Persuasion check to stir the target's memories. This check is made with disadvantage if the creature does not have indisputable proof on hand that is relevant to the altered memory.", "document": "a5esrd", "level": 5, - "school": "Enchantment", + "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", @@ -7568,7 +7568,7 @@ "desc": "A beam of moonlight fills the area with dim light.\n\nWhen a creature enters the area for the first time on a turn or begins its turn in the area, it is struck by silver flames and makes a Constitution saving throw, taking 2d10 radiant damage on a failed save, or half as much on a success.\n\nShapechangers have disadvantage on this saving throw. On a failed save, a shapechanger is forced to take its original form while within the spell's light.\n\nOn your turn, you may use an action to move the beam 60 feet in any direction.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", "target_type": "area", "range": "120 feet", @@ -7599,7 +7599,7 @@ "desc": "You reshape the area, changing its elevation or creating and eliminating holes, walls, and pillars.\n\nThe only limitation is that the elevation change may not exceed half the area's horizontal dimensions.\n\nFor example, affecting a 40-by-40 area allows you to include 20 foot high pillars, holes 20 feet deep, and changes in terrain elevation of 20 feet or less.\n\nChanges that result in unstable terrain are subject to collapse.\n\nChanges take 10 minutes to complete, after which you can choose another area to affect. Due to the slow speed of transformation, it is nearly impossible for creatures to be hurt or captured by the spell.\n\nThis spell has no effect on stone, objects crafted from stone, or plants, though these objects will shift based on changes in the area.", "document": "a5esrd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -7630,7 +7630,7 @@ "desc": "The target is hidden from divination magic and cannot be perceived by magical scrying sensors.\n\nWhen used on a place or object, the spell only works if the target is no larger than 10 feet in any given dimension.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "object", "range": "Touch", @@ -7661,7 +7661,7 @@ "desc": "You and allies within the area gain advantage and an expertise die on Dexterity (Stealth) checks as an aura of secrecy enshrouds you. Creatures in the area leave behind no evidence of their passage.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Self", @@ -7692,7 +7692,7 @@ "desc": "Until the spell ends, you create a passage extending into the target surface. When creating the passage you define its dimensions, as long as they do not exceed 5 feet in width, 8 feet in height, or 20 feet in depth.\n\nThe appearance of the passage has no effect on the stability of the surrounding environment.\n\nAny creatures or objects within the passage when the spell ends are expelled without harm into unoccupied spaces near where the spell was cast.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -7723,7 +7723,7 @@ "desc": "A swarm of insects fills the area. Creatures that begin their turn within the spell's area or who enter the area for the first time on their turn must make a Constitution saving throw or take 1d4 piercing damage. The pests also ravage any unattended organic material within their radius, such as plant, wood, or fabric.", "document": "a5esrd", "level": 0, - "school": "Conjuration", + "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", @@ -7754,7 +7754,7 @@ "desc": "You create an illusion that invokes the target's deepest fears. Only the target can see this illusion.\n\nWhen the spell is cast and at the end of each of its turns, the target makes a Wisdom saving throw or takes 4d10 psychic damage and becomes frightened.\n\nThe spell ends early when the target succeeds on its saving throw. A target that succeeds on its initial saving throw takes half damage.", "document": "a5esrd", "level": 4, - "school": "Illusion", + "school": "illusion", "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", "target_type": "creature", "range": "120 feet", @@ -7787,7 +7787,7 @@ "desc": "You silently clench your hand into a claw and invisible talons of pure will sprout from your fingers.\n\nThe talons do not interact with physical matter, but rip viciously at the psyche of any creature struck by them. For the duration, your unarmed strikes gain the finesse property and deal psychic damage. In addition, if your unarmed strike normally deals less than 1d4 damage, it instead deals 1d4 damage.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "Self", @@ -7818,7 +7818,7 @@ "desc": "You create an illusory Large creature with an appearance determined by you that comes into being with all the necessary equipment needed to use it as a mount. This equipment vanishes when more than 10 feet away from the creature.\n\nYou or any creature you allow may ride the steed, which uses the statistics for a riding horse but has a Speed of 100 feet and travels at 10 miles per hour at a steady pace (13 miles per hour at a fast pace).\n\nThe steed vanishes if it takes damage (disappearing instantly) or you use an action to dismiss it (fading away, giving the rider 1 minute to dismount).", "document": "a5esrd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -7849,7 +7849,7 @@ "desc": "An entity from beyond the realm material answers your call for assistance. You must know this entity whether it is holy, unholy, or beyond the bounds of mortal comprehension. The entity sends forth a servant loyal to it to aid you in your endeavors. If you have a specific servant in mind you may speak its name during the casting, but ultimately who is sent to answer your call is the entity's decision.\n\nThe creature that appears (a celestial, elemental, fey, or fiend), is under no compulsion to behave in any particular way other than how its nature and personality direct it. Any request made of the creature, simple or complex, requires an equal amount of payment which you must bargain with the creature to ascertain. The creature can request either items, sacrifices, or services in exchange for its assistance. A creature that you cannot communicate with cannot be bargained with.\n\nA task that can be completed in minutes is worth 100 gold per minute, a task that requires hours is worth 1, 000 gold per hour, and a task requiring days is worth 10, 000 gold per day (the creature can only accept tasks contained within a 10 day timeframe). A creature can often be persuaded to lower or raise prices depending on how a task aligns with its personality and the goals of its master —some require no payment at all if the task is deemed worthy. Additionally, a task that poses little or no risk only requires half the usual amount of payment, and an extremely dangerous task might call for double the usual payment. Still, only extreme circumstances will cause a creature summoned this way to accept tasks with a near certain result of death.\n\nA creature returns to its place of origin when a task is completed or if you fail to negotiate an agreeable task and payment. Should a creature join your party, it counts as a member of the group and receives a full portion of any experience gained.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7880,7 +7880,7 @@ "desc": "The target must remain within range for the entire casting of the spell (usually by means of a magic circle spell). Until the spell ends, you force the target to serve you. If the target was summoned through some other means, like a spell, the duration of the original spell is extended to match this spell's duration.\n\nOnce it is bound to you the target serves as best it can and follows your orders, but only to the letter of the instruction. A hostile or malevolent target actively seeks to take any advantage of errant phrasing to suit its nature. When a target completes a task you've assigned to it, if you are on the same plane of existence the target travels back to you to report it has done so. Otherwise, it returns to where it was bound and remains there until the spell ends.", "document": "a5esrd", "level": 5, - "school": "Abjuration", + "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", @@ -7911,7 +7911,7 @@ "desc": "Willing targets are transported to a plane of existence that you choose. If the destination is generally described, targets arrive near that destination in a location chosen by the Narrator. If you know the correct sequence of an existing teleportation circle (see teleportation circle), you can choose it as the destination (when the designated circle is too small for all targets to fit, any additional targets are shunted to the closest unoccupied spaces).\n\nAlternatively this spell can be used offensively to banish an unwilling target. You make a melee spell attack and on a hit the target makes a Charisma saving throw or is transported to a random location on a plane of existence that you choose. Once transported, you must spend 1 minute concentrating on this spell or the target returns to the last space it occupied (otherwise it must find its own way back).", "document": "a5esrd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7942,7 +7942,7 @@ "desc": "You channel vitality into vegetation to achieve one of the following effects, chosen when casting the spell.\n\nEnlarged: Plants in the area are greatly enriched. Any harvests of the affected plants provide twice as much food as normal.\n\nRapid: All nonmagical plants in the area surge with the power of life. A creature that moves through the area must spend 4 feet of movement for every foot it moves. You can exclude one or more areas of any size from being affected.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -7973,7 +7973,7 @@ "desc": "The target becomes poisonous to the touch. Until the spell ends, whenever a creature within 5 feet of the target damages the target with a melee weapon attack, the creature makes a Constitution saving throw. On a failed save, the creature becomes poisoned and takes 1d6 ongoing poison damage.\n\nA poisoned creature can make a Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe target of the spell also becomes bright and multicolored like a poisonous dart frog, giving it disadvantage on Dexterity (Stealth) checks.", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -8006,7 +8006,7 @@ "desc": "The target's body is transformed into a beast with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen beast. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -8037,7 +8037,7 @@ "desc": "With but a word you snuff out the target's life and it immediately dies. If you cast this on a creature with more than 100 hit points, it takes 50 hit points of damage.", "document": "a5esrd", "level": 9, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -8068,7 +8068,7 @@ "desc": "You utter a powerful word that stuns a target with 150 hit points or less. At the end of the target's turn, it makes a Constitution saving throw to end the effect. If the target has more than 150 hit points, it is instead rattled until the end of its next turn.", "document": "a5esrd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -8099,7 +8099,7 @@ "desc": "The targets regain hit points equal to 2d8 + your spellcasting ability modifier.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", "target_type": "point", "range": "30 feet", @@ -8130,7 +8130,7 @@ "desc": "You wield arcane energies to produce minor effects. Choose one of the following:\n\n* create a single burst of magic that manifests to one of the senses (for example a burst of sound, sparks, or an odd odor).\n* clean or soil an object of 1 cubic foot or less.\n* light or snuff a flame.\n* chill, warm, or flavor nonliving material of 1 cubic foot or less for 1 hour.\n* color or mark an object or surface for 1 hour.\n* create an ordinary trinket or illusionary image that fits in your hand and lasts for 1 round.\n\nYou may cast this spell multiple times, though only three effects may be active at a time. Dismissing each effect requires an action.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -8161,7 +8161,7 @@ "desc": "You unleash 8 rays of light, each with a different purpose and effect. For each target in the area, roll a d8 to determine the ray that affects it.\n\n1—Red: The target takes 10d6 fire damage.\n\n2—Orange: The target takes 10d6 acid damage.\n\n3—Yellow: The target takes 10d6 lightning damage.\n\n4—Green: The target takes 10d6 poison damage.\n\n5—Blue: The target takes 10d6 cold damage.\n\n6—Indigo: The target is restrained and at the end of each of its turns it makes a Constitution saving throw. Once it accumulates two failed saves it permanently turns to stone, or when it accumulates two successful saves the effect ends.\n\n7—Violet: The target is blinded. At the start of your next turn, the target makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the target is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane.\n\n8—Special: The target is hit by two rays.\n\nRoll a d8 twice to determine which rays, rerolling any 8s.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "Self", @@ -8194,7 +8194,7 @@ "desc": "You create a nontransparent barrier of prismatic energy that sheds bright light in a 100-foot radius and dim light for an additional 100 feet. You and creatures you choose at the time of casting are immune to the barrier's effects and may pass through it at will.\n\nThe barrier can be created as either a vertical wall or a sphere. If the wall intersects a space occupied by a creature the spell fails, you lose your action, and the spell slot is wasted.\n\nWhen a creature that can see the barrier moves within 20 feet of the area or starts its turn within 20 feet of the area, it makes a Constitution saving throw or it is blinded for 1 minute.\n\nThe wall has 7 layers, each layer of a different color in order from red to violet. Once a layer is destroyed, it is gone for the duration of the spell.\n\nTo pass or reach through the barrier a creature does so one layer at a time and must make a Dexterity saving throw for each layer or be subjected to that layer's effects. On a successful save, any damage taken from a layer is reduced by half.\n\nA rod of cancellation can destroy a prismatic wall, but an antimagic field has no effect.\n\nRed: The creature takes 10d6 fire damage.\n\nWhile active, nonmagical ranged attacks can't penetrate the barrier. The layer is destroyed by 25 cold damage.\n\nOrange: The creature takes 10d6 acid damage. While active, magical ranged attacks can't penetrate the barrier. The layer is destroyed by strong winds.\n\nYellow: The creature takes 10d6 lightning damage. This layer is destroyed by 60 force damage.\n\nGreen: The creature takes 10d6 poison damage. A passwall spell, or any spell of equal or greater level which can create a portal on a solid surface, destroys the layer.\n\nBlue: The creature takes 10d6 cold damage.\n\nThis layer is destroyed by 25 fire damage.\n\nIndigo: The creature is restrained and makes a Constitution saving throw at the end of each of its turns. Once it accumulates three failed saves it permanently turns to stone, or when it accumulates three successful saves the effect ends. This layer can be destroyed by bright light, such as that created by the daylight spell or a spell of equal or greater level.\n\nViolet: The creature is blinded. At the start of your next turn, the creature makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the creature is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane. This layer can be destroyed by dispel magic or a similar spell of equal or greater level capable of ending spells or magical effects.", "document": "a5esrd", "level": 9, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -8227,7 +8227,7 @@ "desc": "You increase the magical security in an area, choosing one or more of the following:\n\n* sound cannot pass the edge of the area.\n* light and vision cannot pass the edge of the area.\n* sensors created by divination spells can neither enter the area nor appear within it.\n* creatures within the area cannot be targeted by divination spells.\n* nothing can teleport into or out of the area.\n* planar travel is impossible within the area.\n\nCasting this spell on the same area every day for a year makes the duration permanent.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "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", @@ -8258,7 +8258,7 @@ "desc": "You create a flame in your hand which lasts until the spell ends and does no harm to you or your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nThe spell ends when you dismiss it, cast it again, or attack with the flame. As part of casting the spell or as an action on a following turn, you can fling the flame at a creature within 30 feet, making a ranged spell attack that deals 1d8 fire damage.", "document": "a5esrd", "level": 0, - "school": "Conjuration", + "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", @@ -8289,7 +8289,7 @@ "desc": "You craft an illusory object, creature, or other effect which executes a scripted performance when a specific condition is met within 30 feet of the area.\n\nYou must describe both the condition and the details of the performance upon casting. The trigger must be based on something that can be seen or heard.\n\nOnce the illusion triggers, it runs its performance for up to 5 minutes before it disappears and goes dormant for 10 minutes. The illusion is undetectable until then and only reactivates when the condition is triggered and after the dormant period has passed.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", "document": "a5esrd", "level": 6, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "120 feet", @@ -8320,7 +8320,7 @@ "desc": "You create an illusory duplicate of yourself that looks and sounds like you but is intangible. The duplicate can appear anywhere within range as long as you have seen the space before (it ignores any obstacles in the way).\n\nYou can use an action to move this duplicate up to twice your Speed and make it speak and behave in whatever way you choose, mimicking your mannerism with perfect accuracy. You can use a bonus action to see through your duplicate's eyes and hear through its ears until the beginning of your next turn. During this time, you are blind and deaf to your body's surroundings.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", "document": "a5esrd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8351,7 +8351,7 @@ "desc": "Until the spell ends, the target has resistance to one of the following damage types: acid, cold, fire, lightning, thunder.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "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", @@ -8382,7 +8382,7 @@ "desc": "The target is protected against the following types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. Creatures of those types have disadvantage on attack rolls against the target and are unable to charm, frighten, or possess the target.\n\nIf the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against that effect.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8413,7 +8413,7 @@ "desc": "The target has advantage on saving throws against being poisoned and resistance to poison damage.\n\nAdditionally, if the target is poisoned, you negate one poison affecting it. If more than one poison affects the target, you negate one poison you know is present (otherwise you negate one at random).", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8444,7 +8444,7 @@ "desc": "You remove all poison and disease from a number of Supply equal to your proficiency bonus.", "document": "a5esrd", "level": 1, - "school": "Transmutation", + "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", @@ -8475,7 +8475,7 @@ "desc": "You unleash the discipline of your magical training and let arcane power burn from your fists, consuming the material components of the spell. Until the spell ends you have resistance to bludgeoning, piercing, and slashing damage from nonmagical weapons, and on each of your turns you can use an action to make a melee spell attack against a target within 5 feet that deals 4d8 force damage on a successful hit.\n\nFor the duration, you cannot cast other spells or concentrate on other spells. The spell ends early if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end this spell early on your turn as a bonus action.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "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", @@ -8506,7 +8506,7 @@ "desc": "You return the target to life, provided its soul is willing and able to return to its body. The creature returns to life with 1 hit point. The spell cannot return an undead creature to life.\n\nThe spell cures any poisons and nonmagical diseases that affected the creature at the time of death. It does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the creature returns to life.\n\nThe spell does not regrow limbs or organs, and it automatically fails if the target is missing any body parts necessary for life (like its heart or head).\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target suffers 3 levels of fatigue and strife. At the conclusion of each long rest, the target removes one level of fatigue and strife until the target completely recovers.", "document": "a5esrd", "level": 5, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8537,7 +8537,7 @@ "desc": "You transform the land around you into a blasted hellscape. When you cast the spell, all nonmagical vegetation in the area immediately dies. In addition, you can create any of the following effects within the area. Fiends are immune to these effects, as are any creatures you specify at the time you cast the spell. A successful dispel magic ends a single effect, not the entire area.\n\nBrimstone Rubble. You can fill any number of unoccupied 5-foot squares in the area with smoldering brimstone. These spaces become difficult terrain. A creature that enters an affected square or starts its turn there takes 2d10 fire damage.\n\nField of Fear. Dread pervades the entire area.\n\nA creature that starts its turn in the area must make a successful Wisdom saving throw or be frightened until the start its next turn. While frightened, a creature must take the Dash action to escape the area by the safest available route on each of its turns. On a successful save, the creature becomes immune to this effect for 24 hours.\n\nSpawning Pits. The ground opens to create up to 6 pits filled with poisonous bile. Each pit fills a 10-foot cube that drops beneath the ground.\n\nWhen this spell is cast, any creature whose space is on a pit may make a Dexterity saving throw, moving to an unoccupied space next to the pit on a success. A creature that enters a pit or starts its turn there takes 15d6 poison damage, or half as much damage on a successful Constitution saving throw. A creature reduced to 0 hit points by this damage immediately dies and rises as a lemure at the start of its next turn. Lemures created this way obey your verbal commands, but they disappear when the spell ends or if they leave the area for any reason.\n\nUnhallowed Spires. Up to four spires of black ice rise from the ground in unoccupied 10-foot squares within the area. Each spire can be up to 66 feet tall and is immune to all damage and magical effects. Whenever a creature within 30 feet of a spire would regain hit points, it does not regain hit points and instead takes 3d6 necrotic damage.\n\nIf you maintain concentration on the spell for the full duration, the effects are permanent until dispelled.", "document": "a5esrd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "Self", @@ -8570,7 +8570,7 @@ "desc": "A black ray of necrotic energy shoots from your fingertip. Make a ranged spell attack against the target. On a hit, the target is weakened and only deals half damage with weapon attacks that use Strength.\n\nAt the end of each of the target's turns, it can make a Strength saving throw, ending the spell on a success.", "document": "a5esrd", "level": 2, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -8601,7 +8601,7 @@ "desc": "An icy beam shoots from your outstretched fingers.\n\nMake a ranged spell attack. On a hit, you deal 1d8 cold damage and reduce the target's Speed by 10 feet until the start of your next turn.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "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", @@ -8632,7 +8632,7 @@ "desc": "You touch a creature, causing its body to spontaneously heal itself. The target immediately regains 4d8 + 15 hit points and regains 10 hit points per minute (1 hit point at the start of each of its turns).\n\nIf the target is missing any body parts, the lost parts are restored after 2 minutes. If a severed part is held against the stump, the limb instantaneously reattaches itself.", "document": "a5esrd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8663,7 +8663,7 @@ "desc": "You return the target to life, provided the target's soul is willing and able to return to its body. If you only have a piece of the target, the spell reforms a new adult body for the soul to inhabit. Once reincarnated the target remembers everything from its former life, and retains all its proficiencies, cultural traits, and class features.\n\nThe target's heritage traits change according to its new form. The Narrator chooses the form of the new body, or rolls on Table: Reincarnation.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8694,7 +8694,7 @@ "desc": "This spell ends a curse inflicted with a spell slot of 3rd-level or lower. If the curse was instead inflicted by a feature or trait, the spell ends a curse inflicted by a creature of Challenge Rating 6 or lower. If cast on a cursed object of Rare or lesser rarity, this spell breaks the owner's attunement to the item (although it does not end the curse on the object).", "document": "a5esrd", "level": 3, - "school": "Abjuration", + "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", @@ -8725,7 +8725,7 @@ "desc": "A transparent sphere of force encloses the target.\n\nThe sphere is weightless and just large enough for the target to fit inside. The sphere can be destroyed without harming anyone inside by being dealt at least 15 force damage at once or by being targeted with a dispel magic spell cast using a 4th-level or higher spell slot. The sphere is immune to all other damage, and no spell effects, physical objects, or anything else can pass through, though a target can breathe while inside it. The target cannot be damaged by any attacks or effects originating from outside the sphere, and the target cannot damage anything outside of it.\n\nThe target can use an action to roll the sphere at half its Speed. Similarly, the sphere can be picked up and moved by other creatures.", "document": "a5esrd", "level": 4, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -8756,7 +8756,7 @@ "desc": "The target gains an expertise die to one saving throw of its choice, ending the spell. The expertise die can be rolled before or after the saving throw is made.", "document": "a5esrd", "level": 0, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8787,7 +8787,7 @@ "desc": "Provided the target's soul is willing and able to return to its body, so long as it is not undead it returns to life with all of its hit points.\n\nThe spell cures any poisons and nonmagical diseases that affected the target at the time of death.\n\nIt does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the target returns to life. The spell closes all mortal wounds and restores any missing body parts.\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target takes a -4 penalty to attack rolls, saving throws, and ability checks.\n\nAt the conclusion of each long rest, the penalty is reduced by 1 until the target completely recovers.\n\nResurrecting a creature that has been dead for one year or longer is exhausting. Until you finish a long rest, you can't cast spells again and you have disadvantage on attack rolls, ability checks, and saving throws.", "document": "a5esrd", "level": 7, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8818,7 +8818,7 @@ "desc": "Gravity reverses in the area. Any creatures or objects not anchored to the ground fall upward until they reach the top of the area. A creature may make a Dexterity saving throw to prevent the fall by grabbing hold of something. If a solid object (such as a ceiling) is encountered, the affected creatures and objects impact against it with the same force as a downward fall. When an object or creature reaches the top of the area, it remains suspended there until the spell ends.\n\nWhen the spell ends, all affected objects and creatures fall back down.", "document": "a5esrd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -8849,7 +8849,7 @@ "desc": "The target returns to life with 1 hit point. The spell does not restore any missing body parts and cannot return to life a creature that died of old age.", "document": "a5esrd", "level": 3, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "point", "range": "Touch", @@ -8880,7 +8880,7 @@ "desc": "One end of the target rope rises into the air until it hangs perpendicular to the ground. At the upper end, a nearly imperceptible entrance opens to an extradimensional space that can fit up to 8 Medium or smaller creatures. The entrance can be reached by climbing the rope. Once inside, the rope can be pulled into the extradimensional space.\n\nNo spells or attacks can cross into or out of the extradimensional space. Creatures inside the extradimensional space can see out of a 3-foot-by- 5-foot window centered on its entrance. Creatures outside the space can spot the entrance with a Perception check against your spell save DC. If they can reach it, creatures can pass in and out of the space.\n\nWhen the spell ends, anything inside the extradimensional space falls to the ground.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8911,7 +8911,7 @@ "desc": "As long as you can see the target (even if it has cover) radiant holy flame envelops it, dealing 1d8 radiant damage.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "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", @@ -8942,7 +8942,7 @@ "desc": "You ward a creature against intentional harm.\n\nAny creature that makes an attack against or casts a harmful spell against the target must first make a Wisdom saving throw. On a failed save, the attacking creature must choose a different creature to attack or it loses the attack or spell. This spell doesn't protect the target from area effects, such as an explosion.\n\nThis spell ends early when the target attacks or casts a spell that affects an enemy creature.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -8973,7 +8973,7 @@ "desc": "Three rays of blazing orange fire shoot from your fingertips. Make a ranged spell attack for each ray.\n\nOn a hit, the target takes 2d6 fire damage.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "Create an additional ray for each slot level above 2nd.", "target_type": "creature", "range": "120 feet", @@ -9006,7 +9006,7 @@ "desc": "You can see and hear a specific creature that you choose. The difficulty of the saving throw for this spell is modified by your knowledge of the target and whether you possess a physical item with a connection to the target.\n\nOn a failed save, you can see and hear the target through an invisible sensor that appears within 10 feet of it and moves with the target. Any creature who can see invisibility or rolls a critical success on its saving throw perceives the sensor as a fist-sized glowing orb hovering in the air. Creatures cannot see or hear you through the sensor.\n\nIf you choose to target a location, the sensor appears at that location and is immobile.", "document": "a5esrd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9037,7 +9037,7 @@ "desc": "You briefly go into a magical trance and whisper an alien equation which you never fully remember once the spell is complete. Each creature in the area takes 3d4 psychic damage and is deafened for 1 round.\n\nCreatures who are unable to hear the equation, immune to psychic damage, or who have an Intelligence score lower than 4 are immune to this spell.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -9070,7 +9070,7 @@ "desc": "You stash a chest and its contents on the Ethereal Plane. To do so, you must touch the chest and its Tiny replica. The chest can hold up to 12 cubic feet of nonliving matter. Food stored in the chest spoils after 1 day.\n\nWhile the chest is in the Ethereal Plane, you can recall it to you at any point by using an action to touch the Tiny replica. The chest reappears in an unoccupied space on the ground within 5 feet of you. You can use an action at any time to return the chest to the Ethereal Plane so long as you are touching both the chest and its Tiny replica.\n\nThis effect ends if you cast the spell again on a different chest, if the replica is destroyed, or if you use an action to end the spell. After 60 days without being recalled, there is a cumulative 5% chance per day that the spell effect will end. If for whatever reason the spell ends while the chest is still in the Ethereal Plane, the chest and all of its contents are lost.", "document": "a5esrd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "Touch", @@ -9101,7 +9101,7 @@ "desc": "You can see invisible creatures and objects, and you can see into the Ethereal Plane. Ethereal creatures and objects appear translucent.", "document": "a5esrd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9132,7 +9132,7 @@ "desc": "Up to four seeds appear in your hand and are infused with magic for the duration. As an action, a creature can throw one of these seeds at a point up to 60 feet away. Each creature within 5 feet of that point makes a Dexterity saving throw or takes 4d6 piercing damage. Depending on the material component used, a seed bomb also causes one of the following additional effects: Pinecone. Seed shrapnel explodes outward.\n\nA creature in the area of the exploding seed bomb makes a Constitution saving throw or it is blinded until the end of its next turn.\n\nSunflower. Seeds enlarge into a blanket of pointy needles. The area affected by the exploding seed bomb becomes difficult terrain for the next minute.\n\nTumbleweed. The weeds unravel to latch around creatures. A creature in the area of the exploding seed bomb makes a Dexterity saving throw or it becomes grappled until the end of its next turn.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", "target_type": "creature", "range": "Self", @@ -9165,7 +9165,7 @@ "desc": "Until the spell ends or you use an action to dispel it, you can change the appearance of the targets. The spell disguises their clothing, weapons, and items as well as changes to their physical appearance. An unwilling target can make a Charisma saving throw to avoid being affected by the spell.\n\nYou can alter the appearance of the target as you see fit, including but not limited to: its heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex and any other distinguishing features.\n\nYou cannot disguise the target as a creature of a different size category, and its limb structure remains the same; for example if it's bipedal, you can't use this spell to make it appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", "document": "a5esrd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9196,7 +9196,7 @@ "desc": "You send a message of 25 words or less to the target. It recognizes you as the sender and can reply immediately in kind. The message travels across any distance and into other planes of existence. If the target is on a different plane of existence than you, there is a 5% chance it doesn't receive your message. A target with an Intelligence score of at least 1 understands your message as you intend it (whether you share a language or not).", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Unlimited", @@ -9227,7 +9227,7 @@ "desc": "You magically hide away a willing creature or object. The target becomes invisible, and it cannot be traced or detected by divination or scrying sensors. If the target is a living creature, it falls into a state of suspended animation and stops aging.\n\nThe spell ends when the target takes damage or a condition you set occurs. The condition can be anything you choose, like a set amount of time or a specific event, but it must occur within or be visible within 1 mile of the target.", "document": "a5esrd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9258,7 +9258,7 @@ "desc": "You assume the form of a creature of a Challenge Rating equal to or lower than your level. The creature cannot be an undead or a construct, and it must be a creature you have seen. You change into the average version of that creature, and do not gain any class levels or the Spellcasting trait.\n\nUntil the spell ends or you are dropped to 0 hit points, your game statistics (including your hit points) are replaced by the statistics of the chosen creature, though you keep your Charisma, Intelligence, and Wisdom scores. You also keep your skill and saving throw proficiencies as well as gaining the creature's. However, if you share a proficiency with the creature, and the creature's bonus is higher than yours, you use the creature's bonus. You keep all of your features, skills, and traits gained from your class, heritage, culture, background, or other sources, and can use them as long as the creature is physically capable of doing so. You do not keep any special senses, such as darkvision, unless the creature also has them. You can only speak if the creature is typically capable of speech. You cannot use legendary actions or lair actions. Your gear melds into the new form. Equipment that merges with your form has no effect until you leave the form.\n\nWhen you revert to your normal form, you return to the number of hit points you had before you transformed. If the spell's effect on you ends early from dropping to 0 hit points, any excess damage carries over to your normal form and knocks you unconscious if the damage reduces you to 0 hit points.\n\nUntil the spell ends, you can use an action to change into another form of your choice. The new form follows all the rules as the previous form, with one exception: if the new form has more hit points than your previous form, your hit points remain at their previous value.", "document": "a5esrd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9289,7 +9289,7 @@ "desc": "An ear-splitting ringing sound emanates through the area. Creatures in the area take 3d8 thunder damage. A creature made of stone, metal, or other inorganic material has disadvantage on its saving throw.\n\nAny nonmagical items within the area that are not worn or carried also take damage.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", "target_type": "area", "range": "60 feet", @@ -9320,7 +9320,7 @@ "desc": "You create three orbs of jagged broken glass and hurl them at targets within range. You can hurl them at one target or several.\n\nMake a ranged spell attack for each orb. On a hit, the target takes 2d4 slashing damage and the shards of broken glass remain suspended in midair, filling the area they occupy (or 5 feet of the space they occupy if the creature is Large-sized or larger) with shards of suspended broken glass. Whenever a creature enters an area of broken glass for the first time or starts its turn there, it must succeed on a Dexterity saving throw or take 2d4 slashing damage.\n\nThe shards of broken glass dissolve into harmless wisps of sand and blow away after 1 minute.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "You create one additional orb for each slot level above 2nd.", "target_type": "area", "range": "120 feet", @@ -9353,7 +9353,7 @@ "desc": "You create a shimmering arcane barrier between yourself and an oncoming attack. Until the spell ends, you gain a +5 bonus to your AC (including against the triggering attack) and any magic missile targeting you is harmlessly deflected.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9384,7 +9384,7 @@ "desc": "Until the spell ends, a barrier of divine energy envelops the target and increases its AC by +2.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", "target_type": "creature", "range": "60 feet", @@ -9415,7 +9415,7 @@ "desc": "You imbue the target with nature's magical energy. Until the spell ends, the target becomes a magical weapon (if it wasn't already), its damage becomes 1d8, and you can use your spellcasting ability instead of Strength for melee attack and damage rolls made using it. The spell ends if you cast it again or let go of the target.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -9446,7 +9446,7 @@ "desc": "Electricity arcs from your hand to shock the target. Make a melee spell attack (with advantage if the target is wearing armor made of metal). On a hit, you deal 1d8 lightning damage, and the target can't take reactions until the start of its next turn as the electricity courses through its body.", "document": "a5esrd", "level": 0, - "school": "Evocation", + "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", @@ -9477,7 +9477,7 @@ "desc": "Until the spell ends, a bubble of silence envelops the area, and no sound can travel in or out of it.\n\nWhile in the area a creature is deafened and immune to thunder damage. Casting a spell that requires a vocalized component is impossible while within the area.", "document": "a5esrd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -9508,7 +9508,7 @@ "desc": "You create an illusory image of a creature, object, or other visible effect within the area. The illusion is purely visual, it cannot produce sound or smell, and items and other creatures pass through it.\n\nAs an action, you can move the image to any point within range. The image's movement can be natural and lifelike (for example, a ball will roll and a bird will fly).\n\nA creature can spend an action to make an Investigation check against your spell save DC to determine if the image is an illusion. On a success, it is able to see through the image.", "document": "a5esrd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -9539,7 +9539,7 @@ "desc": "You sculpt an illusory duplicate of the target from ice and snow. The duplicate looks exactly like the target and uses all the statistics of the original, though it is formed without any gear, and has only half of the target's hit point maximum. The duplicate is a creature, can take actions, and be affected like any other creature. If the target is able to cast spells, the duplicate cannot cast spells of 7th-level or higher.\n\nThe duplicate is friendly to you and creatures you designate. It follows your spoken commands, and moves and acts on your turn in combat. It is a static creature and it does not learn, age, or grow, so it never increases in levels and cannot regain any spent spell slots.\n\nWhen the simulacrum is damaged you can repair it in an alchemy lab using components worth 100 gold per hit point it regains. The simulacrum remains until it is reduced to 0 hit points, at which point it crumbles into snow and melts away immediately.\n\nIf you cast this spell again, any existing simulacrum you have created with this spell is instantly destroyed.", "document": "a5esrd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "point", "range": "Touch", @@ -9570,7 +9570,7 @@ "desc": "You send your enemies into a magical slumber.\n\nStarting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area fall unconscious in ascending order according to their hit points. Slumbering creatures stay asleep until the spell ends, they take damage, or someone uses an action to physically wake them.\n\nAs each target falls asleep, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any effect.\n\nIf the spell puts no creatures to sleep, the creature in the area with the lowest hit point total is rattled until the beginning of its next turn.\n\nConstructs and undead are not affected by this spell.", "document": "a5esrd", "level": 1, - "school": "Enchantment", + "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", @@ -9601,7 +9601,7 @@ "desc": "You conjure a storm of freezing rain and sleet in the area. The ground in the area is covered with slick ice that makes it difficult terrain, exposed flames in the area are doused, and the area is heavily obscured.\n\nWhen a creature enters the area for the first time on a turn or starts its turn there, it makes a Dexterity saving throw or falls prone.\n\nWhen a creature concentrating on a spell starts its turn in the area or first enters into the area on a turn, it makes a Constitution saving throw or loses concentration.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -9632,7 +9632,7 @@ "desc": "You alter the flow of time around your targets and they become slowed. On a successful saving throw, a target is rattled until the end of its next turn.\n\nIn addition, if a slowed target casts a spell with a casting time of 1 action, roll a d20\\. On an 11 or higher, the target doesn't finish casting the spell until its next turn. The target must use its action on that turn to complete the spell or the spell fails.\n\nAt the end of each of its turns, a slowed target repeats the saving throw to end the spell's effect on it.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -9663,7 +9663,7 @@ "desc": "The target's hands harden with inner power, turning dexterous fingers into magical iron cudgels.\n\nUntil the spell ends, the target drops anything it is holding and cannot use its hands to grasp objects or perform complex tasks. A target can still cast any spell that does not specifically require its hands.\n\nWhen making unarmed strikes, the target can use its spellcasting ability or Dexterity (its choice) instead of Strength for the attack and damage rolls of unarmed strikes. In addition, the target's unarmed strikes deal 1d8 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -9694,7 +9694,7 @@ "desc": "A jolt of healing energy flows through the target and it becomes stable.", "document": "a5esrd", "level": 0, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9725,7 +9725,7 @@ "desc": "You call upon the secret lore of beasts and gain the ability to speak with them. Beasts have a different perspective of the world, and their knowledge and awareness is filtered through that perspective. At a minimum, beasts can tell you about nearby locations and monsters, including things they have recently perceived. At the Narrator's discretion, you might be able to persuade a beast to perform a small favor for you.", "document": "a5esrd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9756,7 +9756,7 @@ "desc": "You call forth the target's memories, animating it enough to answer 5 questions. The corpse's knowledge is limited: it knows only what it knew in life and cannot learn new information or speak about anything that has occurred since its death. It speaks only in the languages it knew, and is under no compulsion to offer a truthful answer if it has reason not to. Answers might be brief, cryptic, or repetitive.\n\nThis spell does not return a departed soul, nor does it have any effect on an undead corpse, or one without a mouth.", "document": "a5esrd", "level": 3, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9787,7 +9787,7 @@ "desc": "Your voice takes on a magical timbre, awakening the targets to limited sentience. Until the spell ends, the targets can communicate with you and follow simple commands, telling you about recent events including creatures that have passed, weather, and nearby locations.\n\nThe targets have a limited mobility: they can move their branches, tendrils, and stalks freely. This allows them to turn ordinary terrain into difficult terrain, or make difficult terrain caused by vegetation into ordinary terrain for the duration as vines and branches move at your request. This spell can also release a creature restrained by an entangle spell.\n\nAt the Narrator's discretion the targets may be able to perform other tasks, though each must remain rooted in place. If a plant creature is in the area, you can communicate with it but it is not compelled to follow your requests.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9818,7 +9818,7 @@ "desc": "The target gains the ability to walk on walls and upside down on ceilings, as well as a climbing speed equal to its base Speed.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "You can affect one additional target for each slot level above 2nd.", "target_type": "creature", "range": "Touch", @@ -9849,7 +9849,7 @@ "desc": "You cause sharp spikes and thorns to sprout in the area, making it difficult terrain. When a creature enters or moves within the area, it takes 2d4 piercing damage for every 5 feet it travels.\n\nYour magic causes the ground to look natural. A creature that can't see the area when the spell is cast can spot the hazardous terrain just before entering it by making a Perception check against your spell save DC.", "document": "a5esrd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -9882,7 +9882,7 @@ "desc": "You call down spirits of divine fury, filling the area with flitting spectral forms. You choose the form taken by the spirits.\n\nCreatures of your choice halve their Speed while in the area. When a creature enters the area for the first time on a turn or starts its turn there, it takes 3d6 radiant or necrotic damage (your choice).", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "area", "range": "Self", @@ -9916,7 +9916,7 @@ "desc": "You create a floating, incandescent weapon with an appearance of your choosing and use it to attack your enemies. On the round you cast it, you can make a melee spell attack against a creature within 5 feet of the weapon that deals force damage equal to 1d8 + your spellcasting ability modifier.\n\nAs a bonus action on subsequent turns until the spell ends, you can move the weapon up to 20 feet and make another attack against a creature within 5 feet of it.", "document": "a5esrd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", "target_type": "creature", "range": "60 feet", @@ -9947,7 +9947,7 @@ "desc": "You throw a mushroom at a point within range and detonate it, creating a cloud of spores that fills the area. The cloud of spores travels around corners, and the area is considered lightly obscured for everyone except you. Creatures and objects within the area are covered in spores.\n\nUntil the spell ends, you know the exact location of all affected objects and creatures. Any attack roll you make against an affected creature or object has advantage, and the affected creatures and objects can't benefit from being invisible.", "document": "a5esrd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -9978,7 +9978,7 @@ "desc": "You create a roiling, noxious cloud that hinders creatures and leaves them retching. The cloud spreads around corners and lingers in the air until the spell ends.\n\nThe area is heavily obscured. A creature in the area at the start of its turn makes a Constitution saving throw or uses its action to retch and reel.\n\nCreatures that don't need to breathe or are immune to poison automatically succeed on the save.\n\nA moderate wind (10 miles per hour) disperses the cloud after 4 rounds, a strong wind (20 miles per hour) after 1 round.", "document": "a5esrd", "level": 3, - "school": "Conjuration", + "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", @@ -10009,7 +10009,7 @@ "desc": "You reshape the target into any form you choose.\n\nFor example, you could shape a large rock into a weapon, statue, or chest, make a small passage through a wall (as long as it isn't more than 5 feet thick), seal a stone door shut, or create a hiding place. The target can have up to two hinges and a latch, but finer mechanical detail isn't possible.", "document": "a5esrd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "You may select one additional target for every slot level above 4th.", "target_type": "object", "range": "Touch", @@ -10040,7 +10040,7 @@ "desc": "Until the spell ends, the target's flesh becomes as hard as stone and it gains resistance to nonmagical bludgeoning, piercing, and slashing damage.", "document": "a5esrd", "level": 4, - "school": "Abjuration", + "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", @@ -10071,7 +10071,7 @@ "desc": "You must be able to move in order to cast this spell.\n\nYou leap into the air and flash across the battlefield, arriving feet-first with the force of a thunderbolt. As part of casting this spell, make a ranged spell attack against a creature you can see within range. If you hit, you instantly flash to an open space of your choosing adjacent to the target, dealing bludgeoning damage equal to 1d6 + your spellcasting modifier plus 3d8 thunder damage and 6d8 lightning damage. If your unarmed strike normally uses a larger die, use that instead of a d6\\. If you miss, you may still choose to teleport next to the target.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "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", @@ -10102,7 +10102,7 @@ "desc": "You conjure a churning storm cloud that spreads to cover the target area. As it forms, lightning and thunder mix with howling winds, and each creature beneath the cloud makes a Constitution saving throw or takes 2d6 thunder damage and becomes deafened for 5 minutes.\n\nUntil the spell ends, at the start of your turn the cloud produces additional effects: Round 2\\. Acidic rain falls throughout the area dealing 1d6 acid damage to each creature and object beneath the cloud.\n\nRound 3\\. Lightning bolts strike up to 6 creatures or objects of your choosing that are beneath the cloud (no more than one bolt per creature or object). A creature struck by this lightning makes a Dexterity saving throw, taking 10d6 lightning damage on a failed save, or half damage on a successful save.\n\nRound 4\\. Hailstones fall throughout the area dealing 2d6 bludgeoning damage to each creature beneath the cloud.\n\nRound 5�10\\. Gusts and freezing rain turn the area beneath the cloud into difficult terrain that is heavily obscured. Ranged weapon attacks are impossible while a creature or its target are beneath the cloud. When a creature concentrating on a spell starts its turn beneath the cloud or enters into the area, it makes a Constitution saving throw or loses concentration. Gusts of strong winds between 20�50 miles per hour automatically disperse fog, mists, and similar effects (whether mundane or magical). Finally, each creature beneath the cloud takes 1d6 cold damage.", "document": "a5esrd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "Sight", @@ -10135,7 +10135,7 @@ "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The target is magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the target to perform an action that is obviously harmful to it ends the spell.\n\nThe target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after the target has carried out the activity.\n\nYou may specify trigger conditions that cause the target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to the target by you or an ally ends the spell for that creature.", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "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", @@ -10166,7 +10166,7 @@ "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. A beam of radiant sunlight streaks from your hand. Each creature in the area takes 6d8 radiant damage and is blinded for 1 round.\n\nUntil the spell ends, you can use an action on subsequent turns to create a new beam of sunlight and a mote of brilliant radiance lingers on your hand, shedding bright light in a 30-foot radius and dim light an additional 30 feet. This light is sunlight.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", "target_type": "creature", "range": "Self", @@ -10199,7 +10199,7 @@ "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. You create a burst of radiant sunlight that fills the area. Each creature in the area takes 12d6 radiant damage and is blinded for 1 minute. A creature blinded by this spell repeats its saving throw at the end of each of its turns, ending the blindness on a successful save.\n\nThis spell dispels any magical darkness in its area.", "document": "a5esrd", "level": 8, - "school": "Evocation", + "school": "evocation", "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", "target_type": "area", "range": "120 feet", @@ -10232,7 +10232,7 @@ "desc": "You inscribe a potent glyph on the target, setting a magical trap for your enemies. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen triggered, the glyph sheds dim light in a 60-foot radius for 10 minutes, after which the spell ends. Each creature within the sphere's area is targeted by the glyph, as are creatures that enter the sphere for the first time on a turn.\n\nWhen you cast the spell, choose one of the following effects.\n\nDeath: Creatures in the area make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much on a successful save.\n\nDiscord: Creatures in the area make a Constitution saving throw or bicker and argue with other creatures for 1 minute. While bickering, a creature cannot meaningfully communicate and it has disadvantage on attack rolls and ability checks.\n\nConfused: Creatures in the area make an Intelligence saving throw or become confused for 1 minute.\n\nFear: Creatures in the area make a Wisdom saving throw or are frightened for 1 minute.\n\nWhile frightened, a creature drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns.\n\nHopelessness: Creatures in the area make a Charisma saving throw or become overwhelmed with despair for 1 minute. While despairing, a creature can't attack or target any creature with harmful features, spells, traits, or other magical effects.\n\nPain: Creatures in the area make a Constitution saving throw or become incapacitated for 1 minute.\n\nSleep: Creatures in the area make a Wisdom saving throw or fall unconscious for 10 minutes.\n\nA sleeping creature awakens if it takes damage or an action is used to wake it.\n\nStunning: Creatures in the area make a Wisdom saving throw or become stunned for 1 minute.", "document": "a5esrd", "level": 7, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10263,7 +10263,7 @@ "desc": "You quietly play a tragedy, a song that fills those around you with magical sorrow. Each creature in the area makes a Charisma saving throw at the start of its turn. On a failed save, a creature takes 2d4 psychic damage, it spends its action that turn crying, and it can't take reactions until the start of its next turn. Creatures that are immune to the charmed condition automatically succeed on this saving throw.\n\nIf a creature other than you hears the entire song (remaining within the spell's area from the casting through the duration) it is so wracked with sadness that it is stunned for 1d4 rounds.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", "document": "a5esrd", "level": 4, - "school": "Enchantment", + "school": "enchantment", "higher_level": "The damage increases by 2d4 for each slot level above 4th.", "target_type": "creature", "range": "Self", @@ -10296,7 +10296,7 @@ "desc": "You move the target with the power of your mind.\n\nUntil the spell ends you can use an action on subsequent turns to pick a new target or continue to affect the same target. Depending on whether you target a creature or an object, the spell has the following effects:\n\n**Creature.** The target makes a Strength check against your spell save DC or it is moved up to 30 feet in any direction and restrained (even in mid-air) until the end of your next turn. You cannot move a target beyond the range of the spell.\n\n**Object.** You move the target 30 feet in any direction. If the object is worn or carried by a creature, that creature can make a Strength check against your spell save DC. If the target fails, you pull the object away from that creature and can move it up to 30 feet in any direction, but not beyond the range of the spell.\n\nYou can use telekinesis to finely manipulate objects as though you were using them yourself—you can open doors and unscrew lids, dip a quill in ink and make it write, and so on.", "document": "a5esrd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", "target_type": "creature", "range": "60 feet", @@ -10327,7 +10327,7 @@ "desc": "Until the spell ends, a telepathic link connects the minds of the targets. So long as they remain on the same plane of existence, targets may communicate telepathically with each other regardless of language and across any distance.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", "target_type": "creature", "range": "30 feet", @@ -10358,7 +10358,7 @@ "desc": "You teleport the targets instantly across vast distances. When you cast this spell, choose a destination. You must know the location you're teleporting to, and it must be on the same plane of existence.\n\nTeleportation is difficult magic and you may arrive off-target or somewhere else entirely depending on how familiar you are with the location you're teleporting to. When you teleport, the Narrator rolls 1d100 and consults Table: Teleport Familiarity.\n\nFamiliarity is determined as follows: Permanent Circle: A permanent teleportation circle whose sigil sequence you know (see teleportation circle).\n\nAssociated Object: You have an object taken from the target location within the last 6 months, such as a piece of wood from the pew in a grand temple or a pinch of grave dust from a vampire's hidden redoubt.\n\nVery Familiar: A place you have frequented, carefully studied, or can see at the time you cast the spell.\n\nSeen Casually: A place you have seen more than once but don't know well. This could be a castle you've passed by but never visited, or the farms you look down on from your tower of ivory.\n\nViewed Once: A place you have seen once, either in person or via magic.\n\nDescription: A place you only know from someone else's description (whether spoken, written, or even marked on a map).\n\nFalse Destination: A place that doesn't actually exist. This typically happens when someone deceives you, either intentionally (like a wizard creating an illusion to hide their actual tower) or unintentionally (such as when the location you attempt to teleport to no longer exists).\n\nYour arrival is determined as follows: On Target: You and your targets arrive exactly where you mean to.\n\nOff Target: You and your targets arrive some distance away from the target in a random direction. The further you travel, the further away you are likely to arrive. You arrive off target by a number of miles equal to 1d10 × 1d10 percent of the total distance of your trip.\n\nIf you tried to travel 1, 000 miles and roll a 2 and 4 on the d10s, you land 6 percent off target and arrive 60 miles away from your intended destination in a random direction. Roll 1d8 to randomly determine the direction: 1—north, 2 —northeast, 3 —east, 4 —southeast, 5—south, 6 —southwest, 7—west, 8—northwest.\n\nSimilar Location: You and your targets arrive in a different location that somehow resembles the target area. If you tried to teleport to your favorite inn, you might end up at a different inn, or in a room with much of the same decor.\n\nTypically you appear at the closest similar location, but that is not always the case.\n\nMishap: The spell's magic goes awry, and each teleporting creature or object takes 3d10 force damage. The Narrator rerolls on the table to determine where you arrive. When multiple mishaps occur targets take damage each time.", "document": "a5esrd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "Special", @@ -10391,7 +10391,7 @@ "desc": "You draw a 10-foot diameter circle on the ground and open within it a shimmering portal to a permanent teleportation circle elsewhere in the world. The portal remains open until the end of your next turn. Any creature that enters the portal instantly travels to the destination circle.\n\nPermanent teleportation circles are commonly found within major temples, guilds, and other important locations. Each circle has a unique sequence of magical runes inscribed in a certain pattern called a sigil sequence.\n\nWhen you cast teleportation circle, you inscribe runes that match the sigil sequence of a teleportation circle you know. When you first gain the ability to cast this spell, you learn the sigil sequences for 2 destinations on the Material Plane, determined by the Narrator. You can learn a new sigil sequence with 1 minute of observation and study.\n\nCasting the spell in the same location every day for a year creates a permanent teleportation circle with its own unique sigil sequence. You do not need to teleport when casting the spell to make a permanent destination.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10422,7 +10422,7 @@ "desc": "You draw upon divine power and create a minor divine effect. When you cast the spell, choose one of the following:\n\n* Your voice booms up to three times louder than normal\n* You cause flames to flicker, brighten, dim, or change color\n* You send harmless tremors throughout the ground.\n* You create an instantaneous sound, like ethereal chimes, sinister laughter, or a dragon's roar at a point of your choosing within range.\n* You instantaneously cause an unlocked door or window to fly open or slam shut.\n* You alter the appearance of your eyes.\n\nLingering effects last until the spell ends. If you cast this spell multiple times, you can have up to 3 of the lingering effects active at a time, and can dismiss an effect at any time on your turn.", "document": "a5esrd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -10453,7 +10453,7 @@ "desc": "You create a wave of thunderous force, damaging creatures and pushing them back. Creatures in the area take 2d8 thunder damage and are pushed 10 feet away from you.\n\nUnsecured objects completely within the area are also pushed 10 feet away from you. The thunderous boom of the spell is audible out to 300 feet.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 1st.", "target_type": "creature", "range": "Self", @@ -10484,7 +10484,7 @@ "desc": "You stop time, granting yourself extra time to take actions. When you cast the spell, the world is frozen in place while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal.\n\nThe spell ends if you move more than 1, 000 feet from where you cast the spell, or if you affect either a creature other than yourself or an object worn or carried by someone else.", "document": "a5esrd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -10515,7 +10515,7 @@ "desc": "You create an immobile dome of protective force that provides shelter and can be used as a safe haven (Chapter 4: Exploration in Trials & Treasures). The dome is of a color of your choosing, can't be seen through from the outside, is transparent on the inside, and can fit up to 10 Medium creatures (including you) within.\n\nThe dome prevents inclement weather and environmental effects from passing through it, though creatures and objects may pass through freely. Spells and other magical effects can't cross the dome in either direction, and the dome provides a comfortable dry interior no matter the conditions outside of it. You can command the interior to become dimly lit or dark at any time on your turn.\n\nThe spell fails if a Large creature or more than 10 creatures are inside the dome. The spell ends when you leave the dome.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -10546,7 +10546,7 @@ "desc": "The target understands any words it hears, and when the target speaks its words are understood by creatures that know at least one language.", "document": "a5esrd", "level": 3, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10577,7 +10577,7 @@ "desc": "You create a magical pathway between the target and a second plant that you've seen or touched before that is on the same plane of existence. Any creature can step into the target and exit from the second plant by using 5 feet of movement.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10608,7 +10608,7 @@ "desc": "Until the spell ends, creatures have disadvantage on Sleight of Hand checks made against the target.\n\nIf a creature fails a Sleight of Hand check to steal from the target, the ward creates a loud noise and a flash of bright light easily heard and seen by creatures within 100 feet.", "document": "a5esrd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10639,7 +10639,7 @@ "desc": "Until the spell ends, once per round you can use 5 feet of movement to enter a living tree and move to inside another living tree of the same kind within 500 feet so long as you end your turn outside of a tree. Both trees must be at least your size. You instantly know the location of all other trees of the same kind within 500 feet. You may step back outside of the original tree or spend 5 more feet of movement to appear within a spot of your choice within 5 feet of the destination tree. If you have no movement left, you appear within 5 feet of the tree you entered.", "document": "a5esrd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "Target one additional creature within reach for each slot level above 5th.", "target_type": "creature", "range": "Self", @@ -10670,7 +10670,7 @@ "desc": "The target is transformed until it drops to 0 hit points or the spell ends. You can make the transformation permanent by concentrating on the spell for the full duration.\n\nCreature into Creature: The target's body is transformed into a creature with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nThe target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen creature. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.\n\nObject into Creature: The target is transformed into any kind of creature, as long as the creature's size isn't larger than the object's size and it has a Challenge Rating of 9 or less. The creature is friendly to you and your allies and acts on each of your turns. You decide what action it takes and how it moves. The Narrator has the creature's statistics and resolves all of its actions and movement.\n\nIf the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\nCreature into Object: You turn the target and whatever it is wearing and carrying into an object. The target's game statistics are replaced by the statistics of the chosen object. The target has no memory of time spent in this form, and when the spell ends it returns to its normal form.", "document": "a5esrd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -10701,7 +10701,7 @@ "desc": "Provided the target's soul is willing and able to return to its body, it returns to life with all of its hit points.\n\nThe spell cures any poisons and diseases that affected the target at the time of death, closes all mortal wounds, and restores any missing body parts.\n\nIf no body (or body parts) exist, you can still cast the spell but must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you. This option requires diamonds worth at least 50, 000 gold (consumed by the spell).", "document": "a5esrd", "level": 9, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10732,7 +10732,7 @@ "desc": "Until the spell ends, the target gains truesight to a range of 120 feet. The target also notices secret doors hidden by magic.", "document": "a5esrd", "level": 6, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -10763,7 +10763,7 @@ "desc": "You gain an innate understanding of the defenses of a creature or object in range. You have advantage on your first attack roll made against the target before the end of your next turn.", "document": "a5esrd", "level": 0, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -10794,7 +10794,7 @@ "desc": "A meteor ripped from diabolical skies streaks through the air and explodes at a point you can see 100 feet directly above you. The spell fails if you can't see the point where the meteor explodes.\n\nEach creature within range that can see the meteor (other than you) makes a Dexterity saving throw or is blinded until the end of your next turn. Fiery chunks of the meteor then plummet to the ground at different areas you choose within range. Each creature in an area makes a Dexterity saving throw, taking 6d6 fire damage and 6d6 necrotic damage on a failed save, or half as much damage on a successful one. A creature in more than one area is affected only once.\n\nThe spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", "document": "a5esrd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -10825,7 +10825,7 @@ "desc": "You create an invisible, mindless, shapeless force to perform simple tasks. The servant appears in an unoccupied space on the ground that you can see and endures until it takes damage, moves more than 60 feet away from you, or the spell ends. It has AC 10, a Strength of 2, and it can't attack.\n\nYou can use a bonus action to mentally command it to move up to 15 feet and interact with an object.\n\nThe servant can do anything a humanoid servant can do —fetching things, cleaning, mending, folding clothes, lighting fires, serving food, pouring wine, and so on. Once given a command the servant performs the task to the best of its ability until the task is completed, then waits for its next command.", "document": "a5esrd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "You create an additional servant for each slot level above 1st.", "target_type": "point", "range": "60 feet", @@ -10856,7 +10856,7 @@ "desc": "Shadows roil about your hand and heal you by siphoning away the life force from others. On the round you cast it, and as an action on subsequent turns until the spell ends, you can make a melee spell attack against a creature within your reach.\n\nOn a hit, you deal 3d6 necrotic damage and regain hit points equal to half the amount of necrotic damage dealt.", "document": "a5esrd", "level": 3, - "school": "Necromancy", + "school": "necromancy", "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", "range": "Self", @@ -10887,7 +10887,7 @@ "desc": "You cause a searing poison to burn quickly through the target's wounds, dealing 1d6 poison damage. The target regains 2d4 hit points at the start of each of its turns for the next 1d4+1 rounds.", "document": "a5esrd", "level": 3, - "school": "Evocation", + "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", @@ -10918,7 +10918,7 @@ "desc": "You verbally insult or mock the target so viciously its mind is seared. As long as the target hears you (understanding your words is not required) it takes 1d6 psychic damage and has disadvantage on the first attack roll it makes before the end of its next turn.", "document": "a5esrd", "level": 0, - "school": "Enchantment", + "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", @@ -10951,7 +10951,7 @@ "desc": "You create a wall of fire on a solid surface. The wall can be up to 60 feet long (it does not have to be a straight line; sections of the wall can angle as long as they are contiguous), 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall blocks sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 5d8 fire damage on a failed save, or half as much damage on a successful save.\n\nOne side of the wall (chosen when the spell is cast) deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall itself for the first time on a turn or ends its turn there. The other side of the wall deals no damage.", "document": "a5esrd", "level": 4, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 4th.", "target_type": "creature", "range": "120 feet", @@ -10982,7 +10982,7 @@ "desc": "A squirming wall of bodies, groping arms and tentacles, and moaning, biting mouths heaves itself up from the ground at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. The wall can have any shape you desire.\n\nIf the wall enters a creature's space when it appears, the creature makes a Dexterity saving throw, and on a success it moves up to its Speed to escape. On a failed save, it is swallowed by the wall (as below).\n\nWhen a creature enters the area for the first time on a turn or starts its turn within 10 feet of the wall, tentacles and arms reach out to grab it. The creature makes a Dexterity saving throw or takes 5d8 bludgeoning damage and becomes grappled. If the creature was already grappled by the wall at the start of its turn and fails its saving throw, a mouth opens in the wall and swallows the creature.\n\nA creature swallowed by the wall takes 5d8 ongoing bludgeoning damage and is blinded, deafened, and restrained.\n\nA creature grappled or restrained by the wall can use its action to make a Strength saving throw against your spell save DC. On a success, a grappled creature frees itself and a restrained creature claws its way out of the wall's space, exiting to an empty space next to the wall and still grappled.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", "target_type": "point", "range": "120 feet", @@ -11015,7 +11015,7 @@ "desc": "You create an invisible wall of force at a point you choose. The wall is a horizontal or vertical barrier, or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1/4 inch thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape. Any creature without a special sense like blindsight has disadvantage on this saving throw.\n\nNothing can physically pass through the wall.\n\nIt can be destroyed with dispel magic cast using a spell slot of at least 5th-level or by being dealt at least 25 force damage at once. It is otherwise immune to damage. The wall also extends into the Ethereal Plane, blocking ethereal travel through it.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -11046,7 +11046,7 @@ "desc": "You create a wall of ice on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1 foot thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of it (your choice).\n\nIn addition, the creature makes a Dexterity saving throw, taking 10d6 cold damage on a failed save, or half as much damage on a success.\n\nThe wall is an object with vulnerability to fire damage, with AC 12 and 30 hit points per 10-foot section. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the section occupied. A creature moving through the sheet of frigid air for the first time on a turn makes a Constitution saving throw, taking 5d6 cold damage on a failed save, or half as much damage on a successful one.", "document": "a5esrd", "level": 6, - "school": "Evocation", + "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", @@ -11077,7 +11077,7 @@ "desc": "A nonmagical wall of solid stone appears at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. Alternatively, you can create 10-foot-by-20- foot sections that are only 3 inches thick.\n\nThe wall can have any shape you desire, though it can't occupy the same space as a creature or object.\n\nThe wall doesn't need to be vertical or rest on any firm foundation but must merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape.\n\nIf you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenelations, battlements, and so on.\n\nThe wall is an object made of stone. Each panel has AC 15 and 30 hit points per inch of thickness.\n\nReducing a panel to 0 hit points destroys it and at the Narrator's discretion might cause connected panels to collapse.\n\nYou can make the wall permanent by concentrating on the spell for the full duration.", "document": "a5esrd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -11108,7 +11108,7 @@ "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns on a solid surface. You can choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 7d8 piercing damage on a failed save, or half as much damage on a successful save.\n\nA creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. The first time a creature enters the wall on a turn or ends its turn there, it makes a Dexterity saving throw, taking 7d8 slashing damage on a failed save, or half as much damage on a successful save.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", "target_type": "creature", "range": "120 feet", @@ -11139,7 +11139,7 @@ "desc": "Until the spell ends, the target is warded by a mystic connection between it and you. While the target is within 60 feet it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Each time it takes damage, you take an equal amount of damage.\n\nThe spell ends if you are reduced to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if you use an action to dismiss it, or if the spell is cast again on either you or the target.", "document": "a5esrd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", "target_type": "point", "range": "Touch", @@ -11170,7 +11170,7 @@ "desc": "Your senses sharpen, allowing you to anticipate incoming attacks and find weaknesses in the defenses of your foes. Until the spell ends, creatures cannot gain bonuses (like those granted by bless or expertise dice) or advantage on attack rolls against you. In addition, none of your movement provokes opportunity attacks, and you ignore nonmagical difficult terrain. Finally, you can end the spell early to treat a single weapon attack roll as though you had rolled a 15 on the d20.", "document": "a5esrd", "level": 5, - "school": "Divination", + "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", @@ -11201,7 +11201,7 @@ "desc": "Until the spell ends, the targets are able to breathe underwater (and still able to respirate normally).", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -11232,7 +11232,7 @@ "desc": "Until the spell ends, the targets are able to move across any liquid surface (such as water, acid, mud, snow, quicksand, or lava) as if it was solid ground.\n\nCreatures can still take damage from surfaces that would deliver damage from corrosion or extreme temperatures, but they do not sink while moving across it.\n\nA target submerged in a liquid is moved to the surface of the liquid at a rate of 60 feet per round.", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", "target_type": "creature", "range": "30 feet", @@ -11263,7 +11263,7 @@ "desc": "Thick, sticky webs fill the area, lightly obscuring it and making it difficult terrain.\n\nYou must anchor the webs between two solid masses (such as walls or trees) or layer them across a flat surface. If you don't the conjured webs collapse and at the start of your next turn the spell ends.\n\nWebs layered over a flat surface are 5 feet deep.\n\nEach creature that starts its turn in the webs or that enters them during its turn makes a Dexterity saving throw or it is restrained as long as it remains in the webs (or until the creature breaks free).\n\nA creature restrained by the webs can escape by using its action to make a Strength check against your spell save DC.\n\nAny 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", "document": "a5esrd", "level": 2, - "school": "Conjuration", + "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", @@ -11294,7 +11294,7 @@ "desc": "You create illusions which manifest the deepest fears and worst nightmares in the minds of all creatures in the spell's area. Each creature in the area makes a Wisdom saving throw or becomes frightened until the spell ends. At the end of each of a frightened creature's turns, it makes a Wisdom saving throw or it takes 4d10 psychic damage. On a successful save, the spell ends for that creature.", "document": "a5esrd", "level": 9, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -11327,7 +11327,7 @@ "desc": "You must be able to move in order to cast this spell. You leap into the air and spin like a tornado, striking foes all around you with supernatural force as you fly up to 60 feet in a straight line. Your movement (which does not provoke attacks of opportunity) must end on a surface that can support your weight or you fall as normal.\n\nAs part of the casting of this spell, make a melee spell attack against any number of creatures in the area. On a hit, you deal your unarmed strike damage plus 2d6 thunder damage. In addition, creatures in the area make a Dexterity saving throw or are either pulled 10 feet closer to you or pushed 10 feet away (your choice).", "document": "a5esrd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", "target_type": "creature", "range": "Self", @@ -11358,7 +11358,7 @@ "desc": "You wind your power up like a spring. You gain advantage on the next melee attack roll you make before the end of the spell's duration, after which the spell ends.", "document": "a5esrd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -11389,7 +11389,7 @@ "desc": "The targets assume a gaseous form and appear as wisps of cloud. Each target has a flying speed of 300 feet and resistance to damage from nonmagical weapons, but the only action it can take is the Dash action or to revert to its normal form (a process that takes 1 minute during which it is incapacitated and can't move).\n\nUntil the spell ends, a target can change again to cloud form (in an identical transformation process).\n\nWhen the effect ends for a target flying in cloud form, it descends 60 feet each round for up to 1 minute or until it safely lands. If the target can't land after 1 minute, the creature falls the rest of the way normally.", "document": "a5esrd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -11420,7 +11420,7 @@ "desc": "A wall of strong wind rises from the ground at a point you choose. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground.\n\nWhen the wall appears, each creature within its area makes a Strength saving throw, taking 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n\nThe wall keeps fog, smoke, and other gases (including creatures in gaseous form) at bay. Small or smaller flying creatures or objects can't pass through. Loose, lightweight materials brought into the area fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss (larger projectiles such as boulders and siege engine attacks are unaffected).", "document": "a5esrd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", "target_type": "point", "range": "120 feet", @@ -11451,7 +11451,7 @@ "desc": "This is the mightiest of mortal magics and alters reality itself.\n\nThe safest use of this spell is the duplication of any other spell of 8th-level or lower without needing to meet its requirements (including components).\n\nYou may instead choose one of the following:\n\n* One nonmagical object of your choice that is worth up to 25, 000 gold and no more than 300 feet in any dimension appears in an unoccupied space you can see on the ground.\n* Up to 20 creatures that you can see to regain all their hit points, and each is further healed as per the greater restoration spell.\n* Up to 10 creatures that you can see gain resistance to a damage type you choose.\n* Up to 10 creatures you can see gain immunity to a single spell or other magical effect for 8 hours.\n* You force a reroll of any roll made within the last round (including your last turn). You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n\nYou might be able to achieve something beyond the scope of the above examples. State your wish to the Narrator as precisely as possible, being very careful in your wording. Be aware that the greater the wish, the greater the chance for an unexpected result. This spell might simply fizzle, your desired outcome might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. The Narrator has the final authority in ruling what occurs—and reality is not tampered with lightly.\n\n**_Multiple Wishes:_** The stress of casting this spell to produce any effect other than duplicating another spell weakens you. Until finishing a long rest, each time you cast a spell you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented. In addition, your Strength drops to 3 for 2d4 days (if it isn't 3 or lower already). For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33% chance that you are unable to cast wish ever again.", "document": "a5esrd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "Self", @@ -11482,7 +11482,7 @@ "desc": "The targets instantly teleport to a previously designated sanctuary, appearing in the nearest unoccupied space to the spot you designated when you prepared your sanctuary.\n\nYou must first designate a sanctuary by casting this spell within a location aligned with your faith, such as a temple dedicated to or strongly linked to your deity.", "document": "a5esrd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "5 feet", @@ -11513,7 +11513,7 @@ "desc": "You call a Gargantuan monstrosity from the depths of the world to carry you and your allies across great distances. When you cast this spell, the nearest purple worm within range is charmed by you and begins moving toward a point on the ground that you can see. If there are no purple worms within range, the spell fails. The earth rumbles slightly as it approaches and breaks through the surface. Any creatures within 20 feet of that point must make a Dexterity saving throw or be knocked prone and pushed 10 feet away from it.\n\nUpon emerging, the purple worm lays down before you and opens its maw. Targets can climb inside where they are enclosed in an impervious hemispherical dome of force.\n\nOnce targets are loaded into the purple worm, nothing—not physical objects, energy, or other spell effects —can pass through the barrier, in or out, though targets in the sphere can breathe there. The hemisphere is immune to all damage, and creatures and objects inside can't be damaged by attacks or effects originating from outside, nor can a target inside the hemisphere damage anything outside it.\n\nThe atmosphere inside the dome is comfortable and dry regardless of conditions outside it.\n\nThe purple worm waits until you give it a mental command to depart, at which point it dives back into the ground and travels, without need for rest or food, as directly as possible while avoiding obstacles to a destination known to you. It travels 150 miles per day.\n\nWhen the purple worm reaches its destination it surfaces, the dome vanishes, and it disgorges the targets in its mouth before diving back into the depths again.\n\nThe purple worm remains charmed by you until it has delivered you to your destination and returned to the depths, or until it is attacked at which point the charm ends, it vomits its targets in the nearest unoccupied space as soon as possible, and then retreats to safety.", "document": "a5esrd", "level": 6, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "point", "range": "150 miles", @@ -11544,7 +11544,7 @@ "desc": "As part of the casting of this spell, you lay down in the coffin on a patch of bare earth and it buries itself. Over the following week, you are incapacitated and do not need air, food, or sleep. Your insides are eaten by worms, but you do not die and your skin remains intact. If you are exhumed during this time, or if the spell is otherwise interrupted, you die.\n\nAt the end of the week, the transformation is complete and your true form is permanently changed. Your appearance is unchanged but underneath your skin is a sentient mass of worms. Any creature that makes a Medicine check against your spell save DC realizes that there is something moving underneath your skin.\n\nYour statistics change in the following ways:\n\n* Your type changes to aberration, and you do not age or require sleep.\n* You cannot be healed by normal means, but you can spend an action or bonus action to consume 2d6 live worms, regaining an equal amount of hit points by adding them to your body.\n* You can sense and telepathically control all worms that have the beast type and are within 60 feet of you.\n\nIn addition, you are able to discard your shell of skin and travel as a writhing mass of worms. As an action, you can abandon your skin and pour out onto the ground. In this form you have the statistics of **swarm of insects** with the following exceptions: you keep your hit points, Wisdom, Intelligence, and Charisma scores, and proficiencies. You know but cannot cast spells in this form. You also gain a burrow speed of 10 feet. Any worms touching you instantly join with your swarm, granting you a number of temporary hit points equal to the number of worms that join with your form (maximum 40 temporary hit points). These temporary hit points last until you are no longer in this form.\n\nIf you spend an hour in the same space as a dead creature of your original form's size, you can eat its insides and inhabit its skin in the same way you once inhabited your own. While you are in your swarm form, the most recent skin you inhabited remains intact and you can move back into a previously inhabited skin in 1 minute. You have advantage on checks made to impersonate a creature while wearing its skin.", "document": "a5esrd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -11575,7 +11575,7 @@ "desc": "You create a zone that minimizes deception. Any creature that is able to be charmed can't speak a deliberate lie while in the area.\n\nAn affected creature is aware of the spell and can choose not to speak, or it might be evasive in its communications. A creature that enters the zone for the first time on its turn or starts its turn there must make a Charisma saving throw. On a failed save, the creature takes 2d4 psychic damage when it intentionally tries to mislead or occlude important information. Each time the spell damages a creature, it makes a Deception check (DC 8 + the damage dealt) or its suffering is obvious. You know whether a creature succeeds on its saving throw", "document": "a5esrd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", diff --git a/data/v2/en-publishing/a5esrd/SpellSchool.json b/data/v2/en-publishing/a5esrd/SpellSchool.json new file mode 100644 index 00000000..4d04ad6f --- /dev/null +++ b/data/v2/en-publishing/a5esrd/SpellSchool.json @@ -0,0 +1,11 @@ +[ +{ + "model": "api_v2.spellschool", + "pk": "transformation", + "fields": { + "name": "Transformation", + "desc": "No description provided by A5e.", + "document": "a5esrd" + } +} +] diff --git a/data/v2/kobold-press/deep-magic/Spell.json b/data/v2/kobold-press/deep-magic/Spell.json index e8ffdb94..574b8a48 100644 --- a/data/v2/kobold-press/deep-magic/Spell.json +++ b/data/v2/kobold-press/deep-magic/Spell.json @@ -261,7 +261,7 @@ "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", "document": "deep-magic", "level": 0, - "school": "Conjuration", + "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", @@ -666,7 +666,7 @@ "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "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", @@ -1226,7 +1226,7 @@ "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", "document": "deep-magic", "level": 0, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -1319,7 +1319,7 @@ "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -1385,7 +1385,7 @@ "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", "document": "deep-magic", "level": 0, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -1732,7 +1732,7 @@ "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", "document": "deep-magic", "level": 0, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2044,7 +2044,7 @@ "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds]({{ base_url }}/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", "document": "deep-magic", "level": 0, - "school": "Necromancy", + "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", @@ -2552,7 +2552,7 @@ "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -2963,7 +2963,7 @@ "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -3345,7 +3345,7 @@ "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3471,7 +3471,7 @@ "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -4165,7 +4165,7 @@ "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", "document": "deep-magic", "level": 0, - "school": "Enchantment", + "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", @@ -4601,7 +4601,7 @@ "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self]({{ base_url }}/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", "document": "deep-magic", "level": 0, - "school": "Necromancy", + "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", @@ -4793,7 +4793,7 @@ "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", "document": "deep-magic", "level": 0, - "school": "Necromancy", + "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", @@ -5578,7 +5578,7 @@ "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light]({{ base_url }}/spells/light) or [dancing lights]({{ base_url }}/spells/dancing-lights) cantrip.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -5671,7 +5671,7 @@ "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -6115,7 +6115,7 @@ "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic]({{ base_url }}/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6739,7 +6739,7 @@ "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -7977,7 +7977,7 @@ "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -8446,7 +8446,7 @@ "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -8477,7 +8477,7 @@ "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9196,7 +9196,7 @@ "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", "document": "deep-magic", "level": 0, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "object", "range": "Self", @@ -10305,7 +10305,7 @@ "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", "document": "deep-magic", "level": 0, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Self", @@ -10429,7 +10429,7 @@ "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", "document": "deep-magic", "level": 0, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -11274,7 +11274,7 @@ "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -11305,7 +11305,7 @@ "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", "document": "deep-magic", "level": 0, - "school": "Conjuration", + "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", @@ -11402,7 +11402,7 @@ "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -12187,7 +12187,7 @@ "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", "document": "deep-magic", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -12472,7 +12472,7 @@ "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", "document": "deep-magic", "level": 0, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -12565,7 +12565,7 @@ "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", "document": "deep-magic", "level": 0, - "school": "Illusion", + "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", @@ -12596,7 +12596,7 @@ "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", "document": "deep-magic", "level": 0, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -12914,7 +12914,7 @@ "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -13040,7 +13040,7 @@ "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", "document": "deep-magic", "level": 0, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -13540,7 +13540,7 @@ "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -14168,7 +14168,7 @@ "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -15796,7 +15796,7 @@ "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", "document": "deep-magic", "level": 0, - "school": "Evocation", + "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", @@ -16048,7 +16048,7 @@ "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", "document": "deep-magic", "level": 0, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", diff --git a/data/v2/kobold-press/vault-of-magic/Item.json b/data/v2/kobold-press/vault-of-magic/Item.json index 6ee847f9..5558c137 100644 --- a/data/v2/kobold-press/vault-of-magic/Item.json +++ b/data/v2/kobold-press/vault-of-magic/Item.json @@ -5,17 +5,17 @@ "fields": { "name": "Aberrant Agreement", "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -24,17 +24,17 @@ "fields": { "name": "Accursed Idol", "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -43,17 +43,17 @@ "fields": { "name": "Adamantine Spearbiter", "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -62,17 +62,17 @@ "fields": { "name": "Agile Breastplate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -81,17 +81,17 @@ "fields": { "name": "Agile Chain Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -100,17 +100,17 @@ "fields": { "name": "Agile Chain Shirt", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -119,17 +119,17 @@ "fields": { "name": "Agile Half Plate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -138,17 +138,17 @@ "fields": { "name": "Agile Hide", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -157,17 +157,17 @@ "fields": { "name": "Agile Plate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -176,17 +176,17 @@ "fields": { "name": "Agile Ring Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -195,17 +195,17 @@ "fields": { "name": "Agile Scale Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -214,17 +214,17 @@ "fields": { "name": "Agile Splint", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -233,17 +233,17 @@ "fields": { "name": "Air Seed", "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -252,17 +252,17 @@ "fields": { "name": "Akaasit Blade", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -271,17 +271,17 @@ "fields": { "name": "Alabaster Salt Shaker", "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -290,17 +290,17 @@ "fields": { "name": "Alchemical Lantern", "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -309,17 +309,17 @@ "fields": { "name": "Alembic of Unmaking", "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -328,17 +328,17 @@ "fields": { "name": "Almanac of Common Wisdom", "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -347,17 +347,17 @@ "fields": { "name": "Amulet of Memory", "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -366,17 +366,17 @@ "fields": { "name": "Amulet of Sustaining Health", "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -385,17 +385,17 @@ "fields": { "name": "Amulet of the Oracle", "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -404,17 +404,17 @@ "fields": { "name": "Amulet of Whirlwinds", "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -423,17 +423,17 @@ "fields": { "name": "Anchor of Striking", "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -442,17 +442,17 @@ "fields": { "name": "Angelic Earrings", "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -461,17 +461,17 @@ "fields": { "name": "Angry Hornet", "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -480,17 +480,17 @@ "fields": { "name": "Animated Abacus", "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -499,17 +499,17 @@ "fields": { "name": "Animated Chain Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -518,17 +518,17 @@ "fields": { "name": "Ankh of Aten", "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -537,17 +537,17 @@ "fields": { "name": "Anointing Mace", "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -556,17 +556,17 @@ "fields": { "name": "Apron of the Eager Artisan", "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -575,17 +575,17 @@ "fields": { "name": "Arcanaphage Stone", "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -594,17 +594,17 @@ "fields": { "name": "Armor of Cushioning", "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -613,17 +613,17 @@ "fields": { "name": "Armor of the Ngobou", "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -632,17 +632,17 @@ "fields": { "name": "Arrow of Grabbing", "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -651,17 +651,17 @@ "fields": { "name": "Arrow of Unpleasant Herbs", "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -670,17 +670,17 @@ "fields": { "name": "Ash of the Ebon Birch", "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -689,17 +689,17 @@ "fields": { "name": "Ashes of the Fallen", "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -708,17 +708,17 @@ "fields": { "name": "Ashwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -727,17 +727,17 @@ "fields": { "name": "Asp's Kiss", "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -746,17 +746,17 @@ "fields": { "name": "Aurochs Bracers", "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -765,17 +765,17 @@ "fields": { "name": "Baba Yaga's Cinderskull", "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -784,17 +784,17 @@ "fields": { "name": "Badger Hide", "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -803,17 +803,17 @@ "fields": { "name": "Bag of Bramble Beasts", "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -822,17 +822,17 @@ "fields": { "name": "Bag of Traps", "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -841,17 +841,17 @@ "fields": { "name": "Bagpipes of Battle", "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -860,17 +860,17 @@ "fields": { "name": "Baleful Wardrums", "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -879,17 +879,17 @@ "fields": { "name": "Band of Iron Thorns", "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -898,17 +898,17 @@ "fields": { "name": "Band of Restraint", "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -917,17 +917,17 @@ "fields": { "name": "Bandana of Brachiation", "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -936,17 +936,17 @@ "fields": { "name": "Bandana of Bravado", "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -955,17 +955,17 @@ "fields": { "name": "Banner of the Fortunate", "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -974,17 +974,17 @@ "fields": { "name": "Battle Standard of Passage", "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -993,17 +993,17 @@ "fields": { "name": "Bead of Exsanguination", "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1012,17 +1012,17 @@ "fields": { "name": "Bear Paws", "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1031,17 +1031,17 @@ "fields": { "name": "Bed of Spikes", "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1050,17 +1050,17 @@ "fields": { "name": "Belt of the Wilds", "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1069,17 +1069,17 @@ "fields": { "name": "Berserker's Kilt (Bear)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1088,17 +1088,17 @@ "fields": { "name": "Berserker's Kilt (Elk)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1107,17 +1107,17 @@ "fields": { "name": "Berserker's Kilt (Wolf)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1126,17 +1126,17 @@ "fields": { "name": "Big Dipper", "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1145,17 +1145,17 @@ "fields": { "name": "Binding Oath", "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1164,17 +1164,17 @@ "fields": { "name": "Bituminous Orb", "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1183,17 +1183,17 @@ "fields": { "name": "Black and White Daggers", "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1202,17 +1202,17 @@ "fields": { "name": "Black Dragon Oil", "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1221,17 +1221,17 @@ "fields": { "name": "Black Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1240,17 +1240,17 @@ "fields": { "name": "Black Phial", "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1259,17 +1259,17 @@ "fields": { "name": "Blackguard's Dagger", "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -1278,17 +1278,17 @@ "fields": { "name": "Blackguard's Handaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1297,17 +1297,17 @@ "fields": { "name": "Blackguard's Shortsword", "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -1316,17 +1316,17 @@ "fields": { "name": "Blacktooth", "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -1335,17 +1335,17 @@ "fields": { "name": "Blade of Petals", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1354,17 +1354,17 @@ "fields": { "name": "Blade of the Dervish", "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1373,17 +1373,17 @@ "fields": { "name": "Blade of the Temple Guardian", "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1392,17 +1392,17 @@ "fields": { "name": "Blasphemous Writ", "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1411,17 +1411,17 @@ "fields": { "name": "Blessed Pauper's Purse", "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -1430,17 +1430,17 @@ "fields": { "name": "Blinding Lantern", "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1449,17 +1449,17 @@ "fields": { "name": "Blood Mark", "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1468,17 +1468,17 @@ "fields": { "name": "Blood Pearl", "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1487,17 +1487,17 @@ "fields": { "name": "Blood-Soaked Hide", "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1506,17 +1506,17 @@ "fields": { "name": "Bloodbow", "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1525,17 +1525,17 @@ "fields": { "name": "Blooddrinker Spear", "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1544,17 +1544,17 @@ "fields": { "name": "Bloodfuel Battleaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1563,17 +1563,17 @@ "fields": { "name": "Bloodfuel Blowgun", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "blowgun", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1582,17 +1582,17 @@ "fields": { "name": "Bloodfuel Crossbow Hand", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1601,17 +1601,17 @@ "fields": { "name": "Bloodfuel Crossbow Heavy", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1620,17 +1620,17 @@ "fields": { "name": "Bloodfuel Crossbow Light", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1639,17 +1639,17 @@ "fields": { "name": "Bloodfuel Dagger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1658,17 +1658,17 @@ "fields": { "name": "Bloodfuel Dart", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1677,17 +1677,17 @@ "fields": { "name": "Bloodfuel Glaive", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1696,17 +1696,17 @@ "fields": { "name": "Bloodfuel Greataxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1715,17 +1715,17 @@ "fields": { "name": "Bloodfuel Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1734,17 +1734,17 @@ "fields": { "name": "Bloodfuel Halberd", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1753,17 +1753,17 @@ "fields": { "name": "Bloodfuel Handaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1772,17 +1772,17 @@ "fields": { "name": "Bloodfuel Javelin", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1791,17 +1791,17 @@ "fields": { "name": "Bloodfuel Lance", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1810,17 +1810,17 @@ "fields": { "name": "Bloodfuel Longbow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1829,17 +1829,17 @@ "fields": { "name": "Bloodfuel Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1848,17 +1848,17 @@ "fields": { "name": "Bloodfuel Morningstar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1867,17 +1867,17 @@ "fields": { "name": "Bloodfuel Pike", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1886,17 +1886,17 @@ "fields": { "name": "Bloodfuel Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1905,17 +1905,17 @@ "fields": { "name": "Bloodfuel Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1924,17 +1924,17 @@ "fields": { "name": "Bloodfuel Shortbow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1943,17 +1943,17 @@ "fields": { "name": "Bloodfuel Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1962,17 +1962,17 @@ "fields": { "name": "Bloodfuel Sickle", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1981,17 +1981,17 @@ "fields": { "name": "Bloodfuel Spear", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2000,17 +2000,17 @@ "fields": { "name": "Bloodfuel Trident", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2019,17 +2019,17 @@ "fields": { "name": "Bloodfuel Warpick", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2038,17 +2038,17 @@ "fields": { "name": "Bloodfuel Whip", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2057,17 +2057,17 @@ "fields": { "name": "Bloodlink Potion", "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -2076,17 +2076,17 @@ "fields": { "name": "Bloodpearl Bracelet (Gold)", "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2095,17 +2095,17 @@ "fields": { "name": "Bloodpearl Bracelet (Silver)", "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2114,17 +2114,17 @@ "fields": { "name": "Bloodprice Breastplate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2133,17 +2133,17 @@ "fields": { "name": "Bloodprice Chain-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2152,17 +2152,17 @@ "fields": { "name": "Bloodprice Chain-Shirt", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2171,17 +2171,17 @@ "fields": { "name": "Bloodprice Half-Plate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2190,17 +2190,17 @@ "fields": { "name": "Bloodprice Hide", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2209,17 +2209,17 @@ "fields": { "name": "Bloodprice Leather", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2228,17 +2228,17 @@ "fields": { "name": "Bloodprice Padded", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2247,17 +2247,17 @@ "fields": { "name": "Bloodprice Plate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2266,17 +2266,17 @@ "fields": { "name": "Bloodprice Ring-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2285,17 +2285,17 @@ "fields": { "name": "Bloodprice Scale-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2304,17 +2304,17 @@ "fields": { "name": "Bloodprice Splint", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2323,17 +2323,17 @@ "fields": { "name": "Bloodprice Studded-Leather", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2342,17 +2342,17 @@ "fields": { "name": "Bloodthirsty Battleaxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2361,17 +2361,17 @@ "fields": { "name": "Bloodthirsty Blowgun", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "blowgun", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2380,17 +2380,17 @@ "fields": { "name": "Bloodthirsty Crossbow Hand", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2399,17 +2399,17 @@ "fields": { "name": "Bloodthirsty Crossbow Heavy", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2418,17 +2418,17 @@ "fields": { "name": "Bloodthirsty Crossbow Light", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2437,17 +2437,17 @@ "fields": { "name": "Bloodthirsty Dagger", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2456,17 +2456,17 @@ "fields": { "name": "Bloodthirsty Dart", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2475,17 +2475,17 @@ "fields": { "name": "Bloodthirsty Glaive", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2494,17 +2494,17 @@ "fields": { "name": "Bloodthirsty Greataxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2513,17 +2513,17 @@ "fields": { "name": "Bloodthirsty Greatsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2532,17 +2532,17 @@ "fields": { "name": "Bloodthirsty Halberd", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2551,17 +2551,17 @@ "fields": { "name": "Bloodthirsty Handaxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2570,17 +2570,17 @@ "fields": { "name": "Bloodthirsty Javelin", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2589,17 +2589,17 @@ "fields": { "name": "Bloodthirsty Lance", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2608,17 +2608,17 @@ "fields": { "name": "Bloodthirsty Longbow", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2627,17 +2627,17 @@ "fields": { "name": "Bloodthirsty Longsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2646,17 +2646,17 @@ "fields": { "name": "Bloodthirsty Morningstar", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2665,17 +2665,17 @@ "fields": { "name": "Bloodthirsty Pike", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2684,17 +2684,17 @@ "fields": { "name": "Bloodthirsty Rapier", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2703,17 +2703,17 @@ "fields": { "name": "Bloodthirsty Scimitar", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2722,17 +2722,17 @@ "fields": { "name": "Bloodthirsty Shortbow", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2741,17 +2741,17 @@ "fields": { "name": "Bloodthirsty Shortsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2760,17 +2760,17 @@ "fields": { "name": "Bloodthirsty Sickle", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2779,17 +2779,17 @@ "fields": { "name": "Bloodthirsty Spear", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2798,17 +2798,17 @@ "fields": { "name": "Bloodthirsty Trident", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2817,17 +2817,17 @@ "fields": { "name": "Bloodthirsty Warpick", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2836,17 +2836,17 @@ "fields": { "name": "Bloodthirsty Whip", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2855,17 +2855,17 @@ "fields": { "name": "Bloodwhisper Cauldron", "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2874,17 +2874,17 @@ "fields": { "name": "Bludgeon of Nightmares", "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2893,17 +2893,17 @@ "fields": { "name": "Blue Rose", "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2912,17 +2912,17 @@ "fields": { "name": "Blue Willow Cloak", "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2931,17 +2931,17 @@ "fields": { "name": "Bone Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2950,17 +2950,17 @@ "fields": { "name": "Bone Whip", "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2969,17 +2969,17 @@ "fields": { "name": "Bonebreaker Mace", "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2988,17 +2988,17 @@ "fields": { "name": "Book of Ebon Tides", "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3007,17 +3007,17 @@ "fields": { "name": "Book of Eibon", "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -3026,17 +3026,17 @@ "fields": { "name": "Book Shroud", "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3045,17 +3045,17 @@ "fields": { "name": "Bookkeeper Inkpot", "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3064,17 +3064,17 @@ "fields": { "name": "Bookmark of Eldritch Insight", "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3083,17 +3083,17 @@ "fields": { "name": "Boots of Pouncing", "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3102,17 +3102,17 @@ "fields": { "name": "Boots of Quaking", "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3121,17 +3121,17 @@ "fields": { "name": "Boots of Solid Footing", "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3140,17 +3140,17 @@ "fields": { "name": "Boots of the Grandmother", "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3159,17 +3159,17 @@ "fields": { "name": "Boots of the Swift Striker", "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3178,17 +3178,17 @@ "fields": { "name": "Bottled Boat", "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3197,17 +3197,17 @@ "fields": { "name": "Bountiful Cauldron", "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3216,17 +3216,17 @@ "fields": { "name": "Box of Secrets", "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3235,17 +3235,17 @@ "fields": { "name": "Bracelet of the Fire Tender", "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3254,17 +3254,17 @@ "fields": { "name": "Braid Whip Clasp", "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3273,17 +3273,17 @@ "fields": { "name": "Brain Juice", "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3292,17 +3292,17 @@ "fields": { "name": "Brass Clockwork Staff", "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3311,17 +3311,17 @@ "fields": { "name": "Brass Snake Ball", "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3330,17 +3330,17 @@ "fields": { "name": "Brawler's Leather", "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3349,17 +3349,17 @@ "fields": { "name": "Brawn Armor", "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3368,17 +3368,17 @@ "fields": { "name": "Brazen Band", "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3387,17 +3387,17 @@ "fields": { "name": "Brazen Bulwark", "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3406,17 +3406,17 @@ "fields": { "name": "Breaker Lance", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3425,17 +3425,17 @@ "fields": { "name": "Breastplate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3444,17 +3444,17 @@ "fields": { "name": "Breastplate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3463,17 +3463,17 @@ "fields": { "name": "Breastplate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3482,17 +3482,17 @@ "fields": { "name": "Breathing Reed", "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3501,17 +3501,17 @@ "fields": { "name": "Briarthorn Bracers", "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3520,17 +3520,17 @@ "fields": { "name": "Broken Fang Talisman", "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3539,17 +3539,17 @@ "fields": { "name": "Broom of Sweeping", "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3558,17 +3558,17 @@ "fields": { "name": "Brotherhood of Fezzes", "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3577,17 +3577,17 @@ "fields": { "name": "Brown Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -3596,17 +3596,17 @@ "fields": { "name": "Bubbling Retort", "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3615,17 +3615,17 @@ "fields": { "name": "Buckle of Blasting", "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -3634,17 +3634,17 @@ "fields": { "name": "Bullseye Arrow", "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3653,17 +3653,17 @@ "fields": { "name": "Burglar's Lock and Key", "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3672,17 +3672,17 @@ "fields": { "name": "Burning Skull", "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3691,17 +3691,17 @@ "fields": { "name": "Butter of Disbelief", "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3710,17 +3710,17 @@ "fields": { "name": "Buzzing Battleaxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3729,17 +3729,17 @@ "fields": { "name": "Buzzing Greataxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3748,17 +3748,17 @@ "fields": { "name": "Buzzing Greatsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3767,17 +3767,17 @@ "fields": { "name": "Buzzing Handaxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3786,17 +3786,17 @@ "fields": { "name": "Buzzing Longsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3805,17 +3805,17 @@ "fields": { "name": "Buzzing Rapier", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3824,17 +3824,17 @@ "fields": { "name": "Buzzing Scimitar", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3843,17 +3843,17 @@ "fields": { "name": "Buzzing Shortsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3862,17 +3862,17 @@ "fields": { "name": "Candied Axe", "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3881,17 +3881,17 @@ "fields": { "name": "Candle of Communion", "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3900,17 +3900,17 @@ "fields": { "name": "Candle of Summoning", "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3919,17 +3919,17 @@ "fields": { "name": "Candle of Visions", "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -3938,17 +3938,17 @@ "fields": { "name": "Cap of Thorns", "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3957,17 +3957,17 @@ "fields": { "name": "Cape of Targeting", "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3976,17 +3976,17 @@ "fields": { "name": "Captain's Flag", "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3995,17 +3995,17 @@ "fields": { "name": "Captain's Goggles", "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -4014,17 +4014,17 @@ "fields": { "name": "Case of Preservation", "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -4033,17 +4033,17 @@ "fields": { "name": "Cataloguing Book", "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -4052,17 +4052,17 @@ "fields": { "name": "Catalyst Oil", "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4071,17 +4071,17 @@ "fields": { "name": "Celestial Charter", "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4090,17 +4090,17 @@ "fields": { "name": "Celestial Sextant", "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4109,17 +4109,17 @@ "fields": { "name": "Censer of Dark Shadows", "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4128,17 +4128,17 @@ "fields": { "name": "Centaur Wrist-Wraps", "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4147,17 +4147,17 @@ "fields": { "name": "Cephalopod Breastplate", "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4166,17 +4166,17 @@ "fields": { "name": "Ceremonial Sacrificial Knife", "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4185,17 +4185,17 @@ "fields": { "name": "Chain Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4204,17 +4204,17 @@ "fields": { "name": "Chain Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4223,17 +4223,17 @@ "fields": { "name": "Chain Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4242,17 +4242,17 @@ "fields": { "name": "Chain Shirt of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4261,17 +4261,17 @@ "fields": { "name": "Chain Shirt of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4280,17 +4280,17 @@ "fields": { "name": "Chain Shirt of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4299,17 +4299,17 @@ "fields": { "name": "Chainbreaker Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4318,17 +4318,17 @@ "fields": { "name": "Chainbreaker Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4337,17 +4337,17 @@ "fields": { "name": "Chainbreaker Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4356,17 +4356,17 @@ "fields": { "name": "Chainbreaker Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4375,17 +4375,17 @@ "fields": { "name": "Chainbreaker Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4394,17 +4394,17 @@ "fields": { "name": "Chalice of Forbidden Ecstasies", "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4413,17 +4413,17 @@ "fields": { "name": "Chalk of Exodus", "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4432,17 +4432,17 @@ "fields": { "name": "Chamrosh Salve", "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4451,17 +4451,17 @@ "fields": { "name": "Charlatan's Veneer", "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4470,17 +4470,17 @@ "fields": { "name": "Charm of Restoration", "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -4489,17 +4489,17 @@ "fields": { "name": "Chieftain's Axe", "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4508,17 +4508,17 @@ "fields": { "name": "Chillblain Breastplate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4527,17 +4527,17 @@ "fields": { "name": "Chillblain Chain Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4546,17 +4546,17 @@ "fields": { "name": "Chillblain Chain Shirt", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4565,17 +4565,17 @@ "fields": { "name": "Chillblain Half Plate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4584,17 +4584,17 @@ "fields": { "name": "Chillblain Plate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4603,17 +4603,17 @@ "fields": { "name": "Chillblain Ring Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4622,17 +4622,17 @@ "fields": { "name": "Chillblain Scale Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4641,17 +4641,17 @@ "fields": { "name": "Chillblain Splint", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4660,17 +4660,17 @@ "fields": { "name": "Chronomancer's Pocket Clock", "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4679,17 +4679,17 @@ "fields": { "name": "Cinch of the Wolfmother", "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4698,17 +4698,17 @@ "fields": { "name": "Circlet of Holly", "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4717,17 +4717,17 @@ "fields": { "name": "Circlet of Persuasion", "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4736,17 +4736,17 @@ "fields": { "name": "Clacking Teeth", "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4755,17 +4755,17 @@ "fields": { "name": "Clamor Bell", "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -4774,17 +4774,17 @@ "fields": { "name": "Clarifying Goggles", "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4793,17 +4793,17 @@ "fields": { "name": "Cleaning Concoction", "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -4812,17 +4812,17 @@ "fields": { "name": "Cloak of Coagulation", "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4831,17 +4831,17 @@ "fields": { "name": "Cloak of Petals", "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4850,17 +4850,17 @@ "fields": { "name": "Cloak of Sails", "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4869,17 +4869,17 @@ "fields": { "name": "Cloak of Squirrels", "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -4888,17 +4888,17 @@ "fields": { "name": "Cloak of the Bearfolk", "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4907,17 +4907,17 @@ "fields": { "name": "Cloak of the Eel", "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4926,17 +4926,17 @@ "fields": { "name": "Cloak of the Empire", "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4945,17 +4945,17 @@ "fields": { "name": "Cloak of the Inconspicuous Rake", "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4964,17 +4964,17 @@ "fields": { "name": "Cloak of the Ram", "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4983,17 +4983,17 @@ "fields": { "name": "Cloak of the Rat", "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5002,17 +5002,17 @@ "fields": { "name": "Cloak of Wicked Wings", "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5021,17 +5021,17 @@ "fields": { "name": "Clockwork Gauntlet", "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5040,17 +5040,17 @@ "fields": { "name": "Clockwork Hand", "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5059,17 +5059,17 @@ "fields": { "name": "Clockwork Hare", "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -5078,17 +5078,17 @@ "fields": { "name": "Clockwork Mace of Divinity", "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5097,17 +5097,17 @@ "fields": { "name": "Clockwork Mynah Bird", "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5116,17 +5116,17 @@ "fields": { "name": "Clockwork Pendant", "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5135,17 +5135,17 @@ "fields": { "name": "Clockwork Rogue Ring", "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5154,17 +5154,17 @@ "fields": { "name": "Clockwork Spider Cloak", "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5173,17 +5173,17 @@ "fields": { "name": "Coffer of Memory", "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5192,17 +5192,17 @@ "fields": { "name": "Collar of Beast Armor", "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5211,17 +5211,17 @@ "fields": { "name": "Comfy Slippers", "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5230,17 +5230,17 @@ "fields": { "name": "Commander's Helm", "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5249,17 +5249,17 @@ "fields": { "name": "Commander's Plate", "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5268,17 +5268,17 @@ "fields": { "name": "Commander's Visage", "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5287,17 +5287,17 @@ "fields": { "name": "Commoner's Veneer", "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -5306,17 +5306,17 @@ "fields": { "name": "Communal Flute", "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5325,17 +5325,17 @@ "fields": { "name": "Companion's Broth", "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5344,17 +5344,17 @@ "fields": { "name": "Constant Dagger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5363,17 +5363,17 @@ "fields": { "name": "Consuming Rod", "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5382,17 +5382,17 @@ "fields": { "name": "Copper Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5401,17 +5401,17 @@ "fields": { "name": "Coral of Enchanted Colors", "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -5420,17 +5420,17 @@ "fields": { "name": "Cordial of Understanding", "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5439,17 +5439,17 @@ "fields": { "name": "Corpsehunter's Medallion", "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5458,17 +5458,17 @@ "fields": { "name": "Countermelody Crystals", "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5477,17 +5477,17 @@ "fields": { "name": "Courtesan's Allure", "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5496,17 +5496,17 @@ "fields": { "name": "Crab Gloves", "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5515,17 +5515,17 @@ "fields": { "name": "Crafter Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5534,17 +5534,17 @@ "fields": { "name": "Craven's Heart", "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5553,17 +5553,17 @@ "fields": { "name": "Crawling Cloak", "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -5572,17 +5572,17 @@ "fields": { "name": "Crimson Carpet", "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5591,17 +5591,17 @@ "fields": { "name": "Crimson Starfall Arrow", "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5610,17 +5610,17 @@ "fields": { "name": "Crocodile Hide Armor", "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5629,17 +5629,17 @@ "fields": { "name": "Crocodile Leather Armor", "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5648,17 +5648,17 @@ "fields": { "name": "Crook of the Flock", "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5667,17 +5667,17 @@ "fields": { "name": "Crown of the Pharaoh", "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -5686,17 +5686,17 @@ "fields": { "name": "Crusader's Shield", "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5705,17 +5705,17 @@ "fields": { "name": "Crystal Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5724,17 +5724,17 @@ "fields": { "name": "Crystal Staff", "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5743,17 +5743,17 @@ "fields": { "name": "Dagger of the Barbed Devil", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5762,17 +5762,17 @@ "fields": { "name": "Dancing Caltrops", "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -5781,17 +5781,17 @@ "fields": { "name": "Dancing Floret", "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5800,17 +5800,17 @@ "fields": { "name": "Dancing Ink", "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -5819,17 +5819,17 @@ "fields": { "name": "Dastardly Quill and Parchment", "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5838,17 +5838,17 @@ "fields": { "name": "Dawn Shard Dagger", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5857,17 +5857,17 @@ "fields": { "name": "Dawn Shard Greatsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5876,17 +5876,17 @@ "fields": { "name": "Dawn Shard Longsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5895,17 +5895,17 @@ "fields": { "name": "Dawn Shard Rapier", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5914,17 +5914,17 @@ "fields": { "name": "Dawn Shard Scimitar", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5933,17 +5933,17 @@ "fields": { "name": "Dawn Shard Shortsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5952,17 +5952,17 @@ "fields": { "name": "Deadfall Arrow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5971,17 +5971,17 @@ "fields": { "name": "Death's Mirror", "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5990,17 +5990,17 @@ "fields": { "name": "Decoy Card", "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6009,17 +6009,17 @@ "fields": { "name": "Deepchill Orb", "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6028,17 +6028,17 @@ "fields": { "name": "Defender Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6047,17 +6047,17 @@ "fields": { "name": "Deserter's Boots", "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6066,17 +6066,17 @@ "fields": { "name": "Devil Shark Mask", "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6085,17 +6085,17 @@ "fields": { "name": "Devilish Doubloon", "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6104,17 +6104,17 @@ "fields": { "name": "Devil's Barb", "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6123,17 +6123,17 @@ "fields": { "name": "Digger Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6142,17 +6142,17 @@ "fields": { "name": "Dimensional Net", "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "net", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6161,17 +6161,17 @@ "fields": { "name": "Dirgeblade", "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -6180,17 +6180,17 @@ "fields": { "name": "Dirk of Daring", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6199,17 +6199,17 @@ "fields": { "name": "Distracting Doubloon", "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6218,17 +6218,17 @@ "fields": { "name": "Djinn Vessel", "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6237,17 +6237,17 @@ "fields": { "name": "Doppelganger Ointment", "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6256,17 +6256,17 @@ "fields": { "name": "Dragonstooth Blade", "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6275,17 +6275,17 @@ "fields": { "name": "Draught of Ambrosia", "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -6294,17 +6294,17 @@ "fields": { "name": "Draught of the Black Owl", "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6313,17 +6313,17 @@ "fields": { "name": "Dread Scarab", "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6332,17 +6332,17 @@ "fields": { "name": "Dust of Desiccation", "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6351,17 +6351,17 @@ "fields": { "name": "Dust of Muffling", "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6370,17 +6370,17 @@ "fields": { "name": "Dust of the Dead", "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6389,17 +6389,17 @@ "fields": { "name": "Eagle Cape", "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6408,17 +6408,17 @@ "fields": { "name": "Earrings of the Agent", "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6427,17 +6427,17 @@ "fields": { "name": "Earrings of the Eclipse", "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6446,17 +6446,17 @@ "fields": { "name": "Earrings of the Storm Oyster", "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6465,17 +6465,17 @@ "fields": { "name": "Ebon Shards", "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6484,17 +6484,17 @@ "fields": { "name": "Efficacious Eyewash", "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6503,17 +6503,17 @@ "fields": { "name": "Eldritch Rod", "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6522,17 +6522,17 @@ "fields": { "name": "Elemental Wraps", "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6541,17 +6541,17 @@ "fields": { "name": "Elixir of Corruption", "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6560,17 +6560,17 @@ "fields": { "name": "Elixir of Deep Slumber", "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6579,17 +6579,17 @@ "fields": { "name": "Elixir of Focus", "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6598,17 +6598,17 @@ "fields": { "name": "Elixir of Mimicry", "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6617,17 +6617,17 @@ "fields": { "name": "Elixir of Oracular Delirium", "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -6636,17 +6636,17 @@ "fields": { "name": "Elixir of Spike Skin", "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6655,17 +6655,17 @@ "fields": { "name": "Elixir of the Clear Mind", "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6674,17 +6674,17 @@ "fields": { "name": "Elixir of the Deep", "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6693,17 +6693,17 @@ "fields": { "name": "Elixir of Wakefulness", "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6712,17 +6712,17 @@ "fields": { "name": "Elk Horn Rod", "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6731,17 +6731,17 @@ "fields": { "name": "Encouraging Breastplate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6750,17 +6750,17 @@ "fields": { "name": "Encouraging Chain Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6769,17 +6769,17 @@ "fields": { "name": "Encouraging Chain Shirt", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6788,17 +6788,17 @@ "fields": { "name": "Encouraging Half Plate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6807,17 +6807,17 @@ "fields": { "name": "Encouraging Hide Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6826,17 +6826,17 @@ "fields": { "name": "Encouraging Leather Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6845,17 +6845,17 @@ "fields": { "name": "Encouraging Padded Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6864,17 +6864,17 @@ "fields": { "name": "Encouraging Plate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6883,17 +6883,17 @@ "fields": { "name": "Encouraging Ring Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6902,17 +6902,17 @@ "fields": { "name": "Encouraging Scale Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6921,17 +6921,17 @@ "fields": { "name": "Encouraging Splint", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6940,17 +6940,17 @@ "fields": { "name": "Encouraging Studded Leather", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6959,17 +6959,17 @@ "fields": { "name": "Enraging Ammunition", "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6978,17 +6978,17 @@ "fields": { "name": "Ensnaring Ammunition", "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6997,17 +6997,17 @@ "fields": { "name": "Entrenching Mattock", "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7016,17 +7016,17 @@ "fields": { "name": "Everflowing Bowl", "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7035,17 +7035,17 @@ "fields": { "name": "Explosive Orb of Obfuscation", "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7054,17 +7054,17 @@ "fields": { "name": "Exsanguinating Blade", "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -7073,17 +7073,17 @@ "fields": { "name": "Extract of Dual-Mindedness", "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7092,17 +7092,17 @@ "fields": { "name": "Eye of Horus", "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7111,17 +7111,17 @@ "fields": { "name": "Eye of the Golden God", "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7130,17 +7130,17 @@ "fields": { "name": "Eyes of the Outer Dark", "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7149,17 +7149,17 @@ "fields": { "name": "Eyes of the Portal Masters", "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7168,17 +7168,17 @@ "fields": { "name": "Fanged Mask", "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7187,17 +7187,17 @@ "fields": { "name": "Farhealing Bandages", "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7206,17 +7206,17 @@ "fields": { "name": "Farmer Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7225,17 +7225,17 @@ "fields": { "name": "Fear-Eater's Mask", "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7244,17 +7244,17 @@ "fields": { "name": "Fellforged Armor", "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7263,17 +7263,17 @@ "fields": { "name": "Ferryman's Coins", "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -7282,17 +7282,17 @@ "fields": { "name": "Feysworn Contract", "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7301,17 +7301,17 @@ "fields": { "name": "Fiendish Charter", "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7320,17 +7320,17 @@ "fields": { "name": "Figurehead of Prowess", "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -7339,17 +7339,17 @@ "fields": { "name": "Figurine of Wondrous Power (Amber Bee)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7358,17 +7358,17 @@ "fields": { "name": "Figurine of Wondrous Power (Basalt Cockatrice)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7377,17 +7377,17 @@ "fields": { "name": "Figurine of Wondrous Power (Coral Shark)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7396,17 +7396,17 @@ "fields": { "name": "Figurine of Wondrous Power (Hematite Aurochs)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7415,17 +7415,17 @@ "fields": { "name": "Figurine of Wondrous Power (Lapis Camel)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7434,17 +7434,17 @@ "fields": { "name": "Figurine of Wondrous Power (Marble Mistwolf)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7453,17 +7453,17 @@ "fields": { "name": "Figurine of Wondrous Power (Tin Dog)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -7472,17 +7472,17 @@ "fields": { "name": "Figurine of Wondrous Power (Violet Octopoid)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7491,17 +7491,17 @@ "fields": { "name": "Firebird Feather", "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7510,17 +7510,17 @@ "fields": { "name": "Flag of the Cursed Fleet", "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7529,17 +7529,17 @@ "fields": { "name": "Flash Bullet", "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -7548,17 +7548,17 @@ "fields": { "name": "Flask of Epiphanies", "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7567,17 +7567,17 @@ "fields": { "name": "Fleshspurned Mask", "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -7586,17 +7586,17 @@ "fields": { "name": "Flood Charm", "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -7605,17 +7605,17 @@ "fields": { "name": "Flute of Saurian Summoning", "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7624,17 +7624,17 @@ "fields": { "name": "Fly Whisk of Authority", "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7643,17 +7643,17 @@ "fields": { "name": "Fog Stone", "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7662,17 +7662,17 @@ "fields": { "name": "Forgefire Maul", "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "maul", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7681,17 +7681,17 @@ "fields": { "name": "Forgefire Warhammer", "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warhammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7700,17 +7700,17 @@ "fields": { "name": "Fountmail", "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7719,17 +7719,17 @@ "fields": { "name": "Freerunner Rod", "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7738,17 +7738,17 @@ "fields": { "name": "Frost Pellet", "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7757,17 +7757,17 @@ "fields": { "name": "Frostfire Lantern", "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7776,17 +7776,17 @@ "fields": { "name": "Frungilator", "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7795,17 +7795,17 @@ "fields": { "name": "Fulminar Bracers", "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7814,17 +7814,17 @@ "fields": { "name": "Gale Javelin", "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7833,17 +7833,17 @@ "fields": { "name": "Garments of Winter's Knight", "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -7852,17 +7852,17 @@ "fields": { "name": "Gauntlet of the Iron Sphere", "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7871,17 +7871,17 @@ "fields": { "name": "Gazebo of Shade and Shelter", "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7890,17 +7890,17 @@ "fields": { "name": "Ghost Barding Breastplate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7909,17 +7909,17 @@ "fields": { "name": "Ghost Barding Chain Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7928,17 +7928,17 @@ "fields": { "name": "Ghost Barding Chain Shirt", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7947,17 +7947,17 @@ "fields": { "name": "Ghost Barding Half Plate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7966,17 +7966,17 @@ "fields": { "name": "Ghost Barding Hide", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7985,17 +7985,17 @@ "fields": { "name": "Ghost Barding Leather", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8004,17 +8004,17 @@ "fields": { "name": "Ghost Barding Padded", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8023,17 +8023,17 @@ "fields": { "name": "Ghost Barding Plate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8042,17 +8042,17 @@ "fields": { "name": "Ghost Barding Ring Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8061,17 +8061,17 @@ "fields": { "name": "Ghost Barding Scale Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8080,17 +8080,17 @@ "fields": { "name": "Ghost Barding Splint", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8099,17 +8099,17 @@ "fields": { "name": "Ghost Barding Studded Leather", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8118,17 +8118,17 @@ "fields": { "name": "Ghost Dragon Horn", "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8137,17 +8137,17 @@ "fields": { "name": "Ghost Thread", "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8156,17 +8156,17 @@ "fields": { "name": "Ghoul Light", "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8175,17 +8175,17 @@ "fields": { "name": "Ghoulbane Oil", "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8194,17 +8194,17 @@ "fields": { "name": "Ghoulbane Rod", "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8213,17 +8213,17 @@ "fields": { "name": "Giggling Orb", "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8232,17 +8232,17 @@ "fields": { "name": "Girdle of Traveling Alchemy", "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8251,17 +8251,17 @@ "fields": { "name": "Glamour Rings", "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8270,17 +8270,17 @@ "fields": { "name": "Glass Wand of Leng", "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -8289,17 +8289,17 @@ "fields": { "name": "Glazed Battleaxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8308,17 +8308,17 @@ "fields": { "name": "Glazed Greataxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8327,17 +8327,17 @@ "fields": { "name": "Glazed Greatsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8346,17 +8346,17 @@ "fields": { "name": "Glazed Handaxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8365,17 +8365,17 @@ "fields": { "name": "Glazed Longsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8384,17 +8384,17 @@ "fields": { "name": "Glazed Rapier", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8403,17 +8403,17 @@ "fields": { "name": "Glazed Scimitar", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8422,17 +8422,17 @@ "fields": { "name": "Glazed Shortsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8441,17 +8441,17 @@ "fields": { "name": "Gliding Cloak", "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8460,17 +8460,17 @@ "fields": { "name": "Gloomflower Corsage", "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8479,17 +8479,17 @@ "fields": { "name": "Gloves of the Magister", "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -8498,17 +8498,17 @@ "fields": { "name": "Gloves of the Walking Shade", "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8517,17 +8517,17 @@ "fields": { "name": "Gnawing Spear", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -8536,17 +8536,17 @@ "fields": { "name": "Goblin Shield", "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8555,17 +8555,17 @@ "fields": { "name": "Goggles of Firesight", "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8574,17 +8574,17 @@ "fields": { "name": "Goggles of Shade", "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8593,17 +8593,17 @@ "fields": { "name": "Golden Bolt", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8612,17 +8612,17 @@ "fields": { "name": "Gorgon Scale", "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8631,17 +8631,17 @@ "fields": { "name": "Granny Wax", "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8650,17 +8650,17 @@ "fields": { "name": "Grasping Cap", "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -8669,17 +8669,17 @@ "fields": { "name": "Grasping Cloak", "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8688,17 +8688,17 @@ "fields": { "name": "Grasping Shield", "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8707,17 +8707,17 @@ "fields": { "name": "Grave Reagent", "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8726,17 +8726,17 @@ "fields": { "name": "Grave Ward Breastplate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8745,17 +8745,17 @@ "fields": { "name": "Grave Ward Chain Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8764,17 +8764,17 @@ "fields": { "name": "Grave Ward Chain Shirt", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8783,17 +8783,17 @@ "fields": { "name": "Grave Ward Half Plate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8802,17 +8802,17 @@ "fields": { "name": "Grave Ward Hide", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8821,17 +8821,17 @@ "fields": { "name": "Grave Ward Leather", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8840,17 +8840,17 @@ "fields": { "name": "Grave Ward Padded", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8859,17 +8859,17 @@ "fields": { "name": "Grave Ward Plate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8878,17 +8878,17 @@ "fields": { "name": "Grave Ward Ring Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8897,17 +8897,17 @@ "fields": { "name": "Grave Ward Scale Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8916,17 +8916,17 @@ "fields": { "name": "Grave Ward Splint", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8935,17 +8935,17 @@ "fields": { "name": "Grave Ward Studded Leather", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8954,17 +8954,17 @@ "fields": { "name": "Greater Potion of Troll Blood", "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8973,17 +8973,17 @@ "fields": { "name": "Greater Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8992,17 +8992,17 @@ "fields": { "name": "Greatsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9011,17 +9011,17 @@ "fields": { "name": "Greatsword of Volsung", "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9030,17 +9030,17 @@ "fields": { "name": "Green Mantle", "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9049,17 +9049,17 @@ "fields": { "name": "Gremlin's Paw", "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9068,17 +9068,17 @@ "fields": { "name": "Grifter's Deck", "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -9087,17 +9087,17 @@ "fields": { "name": "Grim Escutcheon", "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9106,17 +9106,17 @@ "fields": { "name": "Gritless Grease", "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9125,17 +9125,17 @@ "fields": { "name": "Hair Pick of Protection", "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9144,17 +9144,17 @@ "fields": { "name": "Half Plate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9163,17 +9163,17 @@ "fields": { "name": "Half Plate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9182,17 +9182,17 @@ "fields": { "name": "Half Plate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9201,17 +9201,17 @@ "fields": { "name": "Hallowed Effigy", "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9220,17 +9220,17 @@ "fields": { "name": "Hallucinatory Dust", "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9239,17 +9239,17 @@ "fields": { "name": "Hammer of Decrees", "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9258,17 +9258,17 @@ "fields": { "name": "Hammer of Throwing", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "light-hammer", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9277,17 +9277,17 @@ "fields": { "name": "Handy Scroll Quiver", "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -9296,17 +9296,17 @@ "fields": { "name": "Hangman's Noose", "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9315,17 +9315,17 @@ "fields": { "name": "Hardening Polish", "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9334,17 +9334,17 @@ "fields": { "name": "Harmonizing Instrument", "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9353,17 +9353,17 @@ "fields": { "name": "Hat of Mental Acuity", "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9372,17 +9372,17 @@ "fields": { "name": "Hazelwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -9391,17 +9391,17 @@ "fields": { "name": "Headdress of Majesty", "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9410,17 +9410,17 @@ "fields": { "name": "Headrest of the Cattle Queens", "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9429,17 +9429,17 @@ "fields": { "name": "Headscarf of the Oasis", "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9448,17 +9448,17 @@ "fields": { "name": "Healer Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9467,17 +9467,17 @@ "fields": { "name": "Healthful Honeypot", "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9486,17 +9486,17 @@ "fields": { "name": "Heat Stone", "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -9505,17 +9505,17 @@ "fields": { "name": "Heliotrope Heart", "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9524,17 +9524,17 @@ "fields": { "name": "Helm of the Slashing Fin", "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9543,17 +9543,17 @@ "fields": { "name": "Hewer's Draught", "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9562,17 +9562,17 @@ "fields": { "name": "Hexen Blade", "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9581,17 +9581,17 @@ "fields": { "name": "Hidden Armament", "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "net", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9600,17 +9600,17 @@ "fields": { "name": "Hide Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9619,17 +9619,17 @@ "fields": { "name": "Hide Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9638,17 +9638,17 @@ "fields": { "name": "Hide Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9657,17 +9657,17 @@ "fields": { "name": "Hide Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9676,17 +9676,17 @@ "fields": { "name": "Holy Verdant Bat Droppings", "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9695,17 +9695,17 @@ "fields": { "name": "Honey Lamp", "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9714,17 +9714,17 @@ "fields": { "name": "Honey of the Warped Wildflowers", "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9733,17 +9733,17 @@ "fields": { "name": "Honey Trap", "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9752,17 +9752,17 @@ "fields": { "name": "Honeypot of Awakening", "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9771,17 +9771,17 @@ "fields": { "name": "Howling Rod", "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9790,17 +9790,17 @@ "fields": { "name": "Humble Cudgel of Temperance", "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9809,17 +9809,17 @@ "fields": { "name": "Hunter's Charm (+1)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -9828,17 +9828,17 @@ "fields": { "name": "Hunter's Charm (+2)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9847,17 +9847,17 @@ "fields": { "name": "Hunter's Charm (+3)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9866,17 +9866,17 @@ "fields": { "name": "Iceblink Greatsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9885,17 +9885,17 @@ "fields": { "name": "Iceblink Longsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9904,17 +9904,17 @@ "fields": { "name": "Iceblink Rapier", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9923,17 +9923,17 @@ "fields": { "name": "Iceblink Scimitar", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9942,17 +9942,17 @@ "fields": { "name": "Iceblink Shortsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9961,17 +9961,17 @@ "fields": { "name": "Impact Club", "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9980,17 +9980,17 @@ "fields": { "name": "Impaling Lance", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9999,17 +9999,17 @@ "fields": { "name": "Impaling Morningstar", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10018,17 +10018,17 @@ "fields": { "name": "Impaling Pike", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10037,17 +10037,17 @@ "fields": { "name": "Impaling Rapier", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10056,17 +10056,17 @@ "fields": { "name": "Impaling Warpick", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10075,17 +10075,17 @@ "fields": { "name": "Incense of Recovery", "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10094,17 +10094,17 @@ "fields": { "name": "Interplanar Paint", "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -10113,17 +10113,17 @@ "fields": { "name": "Ironskin Oil", "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10132,17 +10132,17 @@ "fields": { "name": "Ivy Crown of Prophecy", "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10151,17 +10151,17 @@ "fields": { "name": "Jeweler's Anvil", "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10170,17 +10170,17 @@ "fields": { "name": "Jungle Mess Kit", "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10189,17 +10189,17 @@ "fields": { "name": "Justicar's Mask", "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10208,17 +10208,17 @@ "fields": { "name": "Keffiyeh of Serendipitous Escape", "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10227,17 +10227,17 @@ "fields": { "name": "Knockabout Billet", "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10246,17 +10246,17 @@ "fields": { "name": "Kobold Firework", "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10265,17 +10265,17 @@ "fields": { "name": "Kraken Clutch Ring", "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10284,17 +10284,17 @@ "fields": { "name": "Kyshaarth's Fang", "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10303,17 +10303,17 @@ "fields": { "name": "Labrys of the Raging Bull (Battleaxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10322,17 +10322,17 @@ "fields": { "name": "Labrys of the Raging Bull (Greataxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10341,17 +10341,17 @@ "fields": { "name": "Language Pyramid", "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10360,17 +10360,17 @@ "fields": { "name": "Lantern of Auspex", "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10379,17 +10379,17 @@ "fields": { "name": "Lantern of Judgment", "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10398,17 +10398,17 @@ "fields": { "name": "Lantern of Selective Illumination", "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -10417,17 +10417,17 @@ "fields": { "name": "Larkmail", "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10436,17 +10436,17 @@ "fields": { "name": "Last Chance Quiver", "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10455,17 +10455,17 @@ "fields": { "name": "Leaf-Bladed Greatsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10474,17 +10474,17 @@ "fields": { "name": "Leaf-Bladed Longsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10493,17 +10493,17 @@ "fields": { "name": "Leaf-Bladed Rapier", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10512,17 +10512,17 @@ "fields": { "name": "Leaf-Bladed Scimitar", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10531,17 +10531,17 @@ "fields": { "name": "Leaf-Bladed Shortsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10550,17 +10550,17 @@ "fields": { "name": "Least Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10569,17 +10569,17 @@ "fields": { "name": "Leather Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10588,17 +10588,17 @@ "fields": { "name": "Leather Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10607,17 +10607,17 @@ "fields": { "name": "Leather Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10626,17 +10626,17 @@ "fields": { "name": "Leather Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10645,17 +10645,17 @@ "fields": { "name": "Leonino Wings", "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10664,17 +10664,17 @@ "fields": { "name": "Lesser Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10683,17 +10683,17 @@ "fields": { "name": "Lifeblood Gear", "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10702,17 +10702,17 @@ "fields": { "name": "Lightning Rod", "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10721,17 +10721,17 @@ "fields": { "name": "Linguist's Cap", "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10740,17 +10740,17 @@ "fields": { "name": "Liquid Courage", "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10759,17 +10759,17 @@ "fields": { "name": "Liquid Shadow", "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10778,17 +10778,17 @@ "fields": { "name": "Living Juggernaut", "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10797,17 +10797,17 @@ "fields": { "name": "Living Stake", "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10816,17 +10816,17 @@ "fields": { "name": "Lockbreaker", "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10835,17 +10835,17 @@ "fields": { "name": "Locket of Dragon Vitality", "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10854,17 +10854,17 @@ "fields": { "name": "Locket of Remembrance", "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10873,17 +10873,17 @@ "fields": { "name": "Locksmith's Oil", "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10892,17 +10892,17 @@ "fields": { "name": "Lodestone Caltrops", "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10911,17 +10911,17 @@ "fields": { "name": "Longbow of Accuracy", "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -10930,17 +10930,17 @@ "fields": { "name": "Longsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10949,17 +10949,17 @@ "fields": { "name": "Longsword of Volsung", "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10968,17 +10968,17 @@ "fields": { "name": "Loom of Fate", "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10987,17 +10987,17 @@ "fields": { "name": "Lucky Charm of the Monkey King", "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -11006,17 +11006,17 @@ "fields": { "name": "Lucky Coin", "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -11025,17 +11025,17 @@ "fields": { "name": "Lucky Eyepatch", "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11044,17 +11044,17 @@ "fields": { "name": "Lupine Crown", "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11063,17 +11063,17 @@ "fields": { "name": "Luring Perfume", "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11082,17 +11082,17 @@ "fields": { "name": "Magma Mantle", "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11101,17 +11101,17 @@ "fields": { "name": "Maiden's Tears", "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11120,17 +11120,17 @@ "fields": { "name": "Mail of the Sword Master", "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11139,17 +11139,17 @@ "fields": { "name": "Manticore's Tail", "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11158,17 +11158,17 @@ "fields": { "name": "Mantle of Blood Vengeance", "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11177,17 +11177,17 @@ "fields": { "name": "Mantle of the Forest Lord", "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11196,17 +11196,17 @@ "fields": { "name": "Mantle of the Lion", "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11215,17 +11215,17 @@ "fields": { "name": "Mantle of the Void", "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11234,17 +11234,17 @@ "fields": { "name": "Manual of Exercise", "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11253,17 +11253,17 @@ "fields": { "name": "Manual of the Lesser Golem", "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11272,17 +11272,17 @@ "fields": { "name": "Manual of Vine Golem", "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11291,17 +11291,17 @@ "fields": { "name": "Mapping Ink", "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11310,17 +11310,17 @@ "fields": { "name": "Marvelous Clockwork Mallard", "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11329,17 +11329,17 @@ "fields": { "name": "Masher Basher", "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatclub", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11348,17 +11348,17 @@ "fields": { "name": "Mask of the Leaping Gazelle", "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11367,17 +11367,17 @@ "fields": { "name": "Mask of the War Chief", "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -11386,17 +11386,17 @@ "fields": { "name": "Master Angler's Tackle", "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -11405,17 +11405,17 @@ "fields": { "name": "Matryoshka Dolls", "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11424,17 +11424,17 @@ "fields": { "name": "Mayhem Mask", "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11443,17 +11443,17 @@ "fields": { "name": "Medal of Valor", "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11462,17 +11462,17 @@ "fields": { "name": "Memory Philter", "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11481,17 +11481,17 @@ "fields": { "name": "Mender's Mark", "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11500,17 +11500,17 @@ "fields": { "name": "Meteoric Plate", "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11519,17 +11519,17 @@ "fields": { "name": "Mindshatter Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11538,17 +11538,17 @@ "fields": { "name": "Minor Minstrel", "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -11557,17 +11557,17 @@ "fields": { "name": "Mirror of Eavesdropping", "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11576,17 +11576,17 @@ "fields": { "name": "Mirrored Breastplate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11595,17 +11595,17 @@ "fields": { "name": "Mirrored Half Plate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11614,17 +11614,17 @@ "fields": { "name": "Mirrored Plate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11633,17 +11633,17 @@ "fields": { "name": "Mnemonic Fob", "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11652,17 +11652,17 @@ "fields": { "name": "Mock Box", "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11671,17 +11671,17 @@ "fields": { "name": "Molten Hellfire Breastplate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11690,17 +11690,17 @@ "fields": { "name": "Molten Hellfire Chain Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11709,17 +11709,17 @@ "fields": { "name": "Molten Hellfire Chain Shirt", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11728,17 +11728,17 @@ "fields": { "name": "Molten Hellfire Half Plate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11747,17 +11747,17 @@ "fields": { "name": "Molten Hellfire Plate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11766,17 +11766,17 @@ "fields": { "name": "Molten Hellfire Ring Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11785,17 +11785,17 @@ "fields": { "name": "Molten Hellfire Scale Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11804,17 +11804,17 @@ "fields": { "name": "Molten Hellfire Splint", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11823,17 +11823,17 @@ "fields": { "name": "Mongrelmaker's Handbook", "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11842,17 +11842,17 @@ "fields": { "name": "Monkey's Paw of Fortune", "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11861,17 +11861,17 @@ "fields": { "name": "Moon Through the Trees", "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11880,17 +11880,17 @@ "fields": { "name": "Moonfield Lens", "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11899,17 +11899,17 @@ "fields": { "name": "Moonsteel Dagger", "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11918,17 +11918,17 @@ "fields": { "name": "Moonsteel Rapier", "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11937,17 +11937,17 @@ "fields": { "name": "Mordant Battleaxe", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11956,17 +11956,17 @@ "fields": { "name": "Mordant Glaive", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11975,17 +11975,17 @@ "fields": { "name": "Mordant Greataxe", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -11994,17 +11994,17 @@ "fields": { "name": "Mordant Greatsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12013,17 +12013,17 @@ "fields": { "name": "Mordant Halberd", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12032,17 +12032,17 @@ "fields": { "name": "Mordant Longsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12051,17 +12051,17 @@ "fields": { "name": "Mordant Scimitar", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12070,17 +12070,17 @@ "fields": { "name": "Mordant Shortsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12089,17 +12089,17 @@ "fields": { "name": "Mordant Sickle", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12108,17 +12108,17 @@ "fields": { "name": "Mordant Whip", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12127,17 +12127,17 @@ "fields": { "name": "Mountain Hewer", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12146,17 +12146,17 @@ "fields": { "name": "Mountaineer's Hand Crossbow", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12165,17 +12165,17 @@ "fields": { "name": "Mountaineer's Heavy Crossbow", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12184,17 +12184,17 @@ "fields": { "name": "Mountaineer's Light Crossbow ", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12203,17 +12203,17 @@ "fields": { "name": "Muffled Chain Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12222,17 +12222,17 @@ "fields": { "name": "Muffled Half Plate", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12241,17 +12241,17 @@ "fields": { "name": "Muffled Padded", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12260,17 +12260,17 @@ "fields": { "name": "Muffled Plate", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12279,17 +12279,17 @@ "fields": { "name": "Muffled Ring Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12298,17 +12298,17 @@ "fields": { "name": "Muffled Scale Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12317,17 +12317,17 @@ "fields": { "name": "Muffled Splint", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12336,17 +12336,17 @@ "fields": { "name": "Mug of Merry Drinking", "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12355,17 +12355,17 @@ "fields": { "name": "Murderous Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12374,17 +12374,17 @@ "fields": { "name": "Mutineer's Blade", "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12393,17 +12393,17 @@ "fields": { "name": "Nameless Cults", "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -12412,17 +12412,17 @@ "fields": { "name": "Necromantic Ink", "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12431,17 +12431,17 @@ "fields": { "name": "Neutralizing Bead", "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12450,17 +12450,17 @@ "fields": { "name": "Nithing Pole", "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12469,17 +12469,17 @@ "fields": { "name": "Nullifier's Lexicon", "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12488,17 +12488,17 @@ "fields": { "name": "Oakwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -12507,17 +12507,17 @@ "fields": { "name": "Octopus Bracers", "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12526,17 +12526,17 @@ "fields": { "name": "Oculi of the Ancestor", "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12545,17 +12545,17 @@ "fields": { "name": "Odd Bodkin", "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12564,17 +12564,17 @@ "fields": { "name": "Odorless Oil", "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12583,17 +12583,17 @@ "fields": { "name": "Ogre's Pot", "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12602,17 +12602,17 @@ "fields": { "name": "Oil of Concussion", "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12621,17 +12621,17 @@ "fields": { "name": "Oil of Defoliation", "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12640,17 +12640,17 @@ "fields": { "name": "Oil of Extreme Bludgeoning", "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12659,17 +12659,17 @@ "fields": { "name": "Oil of Numbing", "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12678,17 +12678,17 @@ "fields": { "name": "Oil of Sharpening", "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12697,17 +12697,17 @@ "fields": { "name": "Oni Mask", "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12716,17 +12716,17 @@ "fields": { "name": "Oracle Charm", "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -12735,17 +12735,17 @@ "fields": { "name": "Orb of Enthralling Patterns", "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12754,17 +12754,17 @@ "fields": { "name": "Orb of Obfuscation", "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12773,17 +12773,17 @@ "fields": { "name": "Ouroboros Amulet", "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12792,17 +12792,17 @@ "fields": { "name": "Pact Paper", "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12811,17 +12811,17 @@ "fields": { "name": "Padded Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12830,17 +12830,17 @@ "fields": { "name": "Padded Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12849,17 +12849,17 @@ "fields": { "name": "Padded Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12868,17 +12868,17 @@ "fields": { "name": "Padded Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12887,17 +12887,17 @@ "fields": { "name": "Parasol of Temperate Weather", "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12906,17 +12906,17 @@ "fields": { "name": "Pavilion of Dreams", "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12925,17 +12925,17 @@ "fields": { "name": "Pearl of Diving", "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -12944,17 +12944,17 @@ "fields": { "name": "Periapt of Eldritch Knowledge", "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12963,17 +12963,17 @@ "fields": { "name": "Periapt of Proof Against Lies", "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12982,17 +12982,17 @@ "fields": { "name": "Pestilent Spear", "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13001,17 +13001,17 @@ "fields": { "name": "Phase Mirror", "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13020,17 +13020,17 @@ "fields": { "name": "Phidjetz Spinner", "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13039,17 +13039,17 @@ "fields": { "name": "Philter of Luck", "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13058,17 +13058,17 @@ "fields": { "name": "Phoenix Ember", "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -13077,17 +13077,17 @@ "fields": { "name": "Pick of Ice Breaking", "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13096,17 +13096,17 @@ "fields": { "name": "Pipes of Madness", "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13115,17 +13115,17 @@ "fields": { "name": "Pistol of the Umbral Court", "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13134,17 +13134,17 @@ "fields": { "name": "Plate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13153,17 +13153,17 @@ "fields": { "name": "Plate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13172,17 +13172,17 @@ "fields": { "name": "Plate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13191,17 +13191,17 @@ "fields": { "name": "Plumb of the Elements", "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13210,17 +13210,17 @@ "fields": { "name": "Plunderer's Sea Chest", "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13229,17 +13229,17 @@ "fields": { "name": "Pocket Oasis", "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13248,17 +13248,17 @@ "fields": { "name": "Pocket Spark", "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13267,17 +13267,17 @@ "fields": { "name": "Poison Strand", "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13286,17 +13286,17 @@ "fields": { "name": "Potent Cure-All", "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -13305,17 +13305,17 @@ "fields": { "name": "Potion of Air Breathing", "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13324,17 +13324,17 @@ "fields": { "name": "Potion of Bad Taste", "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13343,17 +13343,17 @@ "fields": { "name": "Potion of Bouncing", "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13362,17 +13362,17 @@ "fields": { "name": "Potion of Buoyancy", "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13381,17 +13381,17 @@ "fields": { "name": "Potion of Dire Cleansing", "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13400,17 +13400,17 @@ "fields": { "name": "Potion of Ebbing Strength", "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13419,17 +13419,17 @@ "fields": { "name": "Potion of Effulgence", "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13438,17 +13438,17 @@ "fields": { "name": "Potion of Empowering Truth", "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13457,17 +13457,17 @@ "fields": { "name": "Potion of Freezing Fog", "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13476,17 +13476,17 @@ "fields": { "name": "Potion of Malleability", "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13495,17 +13495,17 @@ "fields": { "name": "Potion of Sand Form", "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13514,17 +13514,17 @@ "fields": { "name": "Potion of Skating", "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13533,17 +13533,17 @@ "fields": { "name": "Potion of Transparency", "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13552,17 +13552,17 @@ "fields": { "name": "Potion of Worg Form", "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13571,17 +13571,17 @@ "fields": { "name": "Prayer Mat", "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13590,17 +13590,17 @@ "fields": { "name": "Primal Doom of Anguish", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13609,17 +13609,17 @@ "fields": { "name": "Primal Doom of Pain", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13628,17 +13628,17 @@ "fields": { "name": "Primal Doom of Rage", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13647,17 +13647,17 @@ "fields": { "name": "Primordial Scale", "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13666,17 +13666,17 @@ "fields": { "name": "Prospecting Compass", "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13685,17 +13685,17 @@ "fields": { "name": "Quick-Change Mirror", "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13704,17 +13704,17 @@ "fields": { "name": "Quill of Scribing", "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -13723,17 +13723,17 @@ "fields": { "name": "Quilted Bridge", "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13742,17 +13742,17 @@ "fields": { "name": "Radiance Bomb", "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13761,17 +13761,17 @@ "fields": { "name": "Radiant Bracers", "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13780,17 +13780,17 @@ "fields": { "name": "Radiant Libram", "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -13799,17 +13799,17 @@ "fields": { "name": "Rain of Chaos", "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13818,17 +13818,17 @@ "fields": { "name": "Rainbow Extract", "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -13837,17 +13837,17 @@ "fields": { "name": "Rapier of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13856,17 +13856,17 @@ "fields": { "name": "Ravager's Axe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13875,17 +13875,17 @@ "fields": { "name": "Recondite Shield", "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13894,17 +13894,17 @@ "fields": { "name": "Recording Book", "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13913,17 +13913,17 @@ "fields": { "name": "Reef Splitter", "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "warhammer", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13932,17 +13932,17 @@ "fields": { "name": "Relocation Cable", "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13951,17 +13951,17 @@ "fields": { "name": "Resolute Bracer", "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13970,17 +13970,17 @@ "fields": { "name": "Retribution Armor", "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13989,17 +13989,17 @@ "fields": { "name": "Revenant's Shawl", "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14008,17 +14008,17 @@ "fields": { "name": "Rift Orb", "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14027,17 +14027,17 @@ "fields": { "name": "Ring Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14046,17 +14046,17 @@ "fields": { "name": "Ring Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14065,17 +14065,17 @@ "fields": { "name": "Ring Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -14084,17 +14084,17 @@ "fields": { "name": "Ring of Arcane Adjustment", "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14103,17 +14103,17 @@ "fields": { "name": "Ring of Bravado", "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14122,17 +14122,17 @@ "fields": { "name": "Ring of Deceiver's Warning", "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14141,17 +14141,17 @@ "fields": { "name": "Ring of Dragon's Discernment", "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14160,17 +14160,17 @@ "fields": { "name": "Ring of Featherweight Weapons", "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14179,17 +14179,17 @@ "fields": { "name": "Ring of Giant Mingling", "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14198,17 +14198,17 @@ "fields": { "name": "Ring of Hoarded Life", "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14217,17 +14217,17 @@ "fields": { "name": "Ring of Imperious Command", "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14236,17 +14236,17 @@ "fields": { "name": "Ring of Light's Comfort", "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14255,17 +14255,17 @@ "fields": { "name": "Ring of Night's Solace", "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14274,17 +14274,17 @@ "fields": { "name": "Ring of Powerful Summons", "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14293,17 +14293,17 @@ "fields": { "name": "Ring of Remembrance", "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14312,17 +14312,17 @@ "fields": { "name": "Ring of Sealing", "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -14331,17 +14331,17 @@ "fields": { "name": "Ring of Shadows", "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14350,17 +14350,17 @@ "fields": { "name": "Ring of Small Mercies", "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14369,17 +14369,17 @@ "fields": { "name": "Ring of Stored Vitality", "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14388,17 +14388,17 @@ "fields": { "name": "Ring of the Dolphin", "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14407,17 +14407,17 @@ "fields": { "name": "Ring of the Frog", "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14426,17 +14426,17 @@ "fields": { "name": "Ring of the Frost Knight", "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14445,17 +14445,17 @@ "fields": { "name": "Ring of the Grove's Guardian", "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14464,17 +14464,17 @@ "fields": { "name": "Ring of the Jarl", "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14483,17 +14483,17 @@ "fields": { "name": "Ring of the Water Dancer", "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14502,17 +14502,17 @@ "fields": { "name": "Ring of Ursa", "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14521,17 +14521,17 @@ "fields": { "name": "River Token", "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14540,17 +14540,17 @@ "fields": { "name": "Riverine Blade", "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14559,17 +14559,17 @@ "fields": { "name": "Rod of Blade Bending", "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14578,17 +14578,17 @@ "fields": { "name": "Rod of Bubbles", "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14597,17 +14597,17 @@ "fields": { "name": "Rod of Conveyance", "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14616,17 +14616,17 @@ "fields": { "name": "Rod of Deflection", "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14635,17 +14635,17 @@ "fields": { "name": "Rod of Ghastly Might", "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -14654,17 +14654,17 @@ "fields": { "name": "Rod of Hellish Grounding", "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14673,17 +14673,17 @@ "fields": { "name": "Rod of Icicles", "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14692,17 +14692,17 @@ "fields": { "name": "Rod of Reformation", "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14711,17 +14711,17 @@ "fields": { "name": "Rod of Repossession", "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14730,17 +14730,17 @@ "fields": { "name": "Rod of Sacrificial Blessing", "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14749,17 +14749,17 @@ "fields": { "name": "Rod of Sanguine Mastery", "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -14768,17 +14768,17 @@ "fields": { "name": "Rod of Swarming Skulls", "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14787,17 +14787,17 @@ "fields": { "name": "Rod of the Disciplinarian", "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -14806,17 +14806,17 @@ "fields": { "name": "Rod of the Infernal Realms", "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -14825,17 +14825,17 @@ "fields": { "name": "Rod of the Jester", "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14844,17 +14844,17 @@ "fields": { "name": "Rod of the Mariner", "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14863,17 +14863,17 @@ "fields": { "name": "Rod of the Wastes", "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -14882,17 +14882,17 @@ "fields": { "name": "Rod of Thorns", "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -14901,17 +14901,17 @@ "fields": { "name": "Rod of Underworld Navigation", "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14920,17 +14920,17 @@ "fields": { "name": "Rod of Vapor", "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14939,17 +14939,17 @@ "fields": { "name": "Rod of Verbatim", "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14958,17 +14958,17 @@ "fields": { "name": "Rod of Warning", "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -14977,17 +14977,17 @@ "fields": { "name": "Rogue's Aces", "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -14996,17 +14996,17 @@ "fields": { "name": "Root of the World Tree", "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15015,17 +15015,17 @@ "fields": { "name": "Rope Seed", "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -15034,17 +15034,17 @@ "fields": { "name": "Rowan Staff", "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -15053,17 +15053,17 @@ "fields": { "name": "Rowdy's Club", "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15072,17 +15072,17 @@ "fields": { "name": "Rowdy's Ring", "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15091,17 +15091,17 @@ "fields": { "name": "Royal Jelly", "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15110,17 +15110,17 @@ "fields": { "name": "Ruby Crusher", "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatclub", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -15129,17 +15129,17 @@ "fields": { "name": "Rug of Safe Haven", "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15148,17 +15148,17 @@ "fields": { "name": "Rust Monster Shell", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15167,17 +15167,17 @@ "fields": { "name": "Sacrificial Knife", "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -15186,17 +15186,17 @@ "fields": { "name": "Saddle of the Cavalry Casters", "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15205,17 +15205,17 @@ "fields": { "name": "Sanctuary Shell", "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15224,17 +15224,17 @@ "fields": { "name": "Sand Arrow", "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15243,17 +15243,17 @@ "fields": { "name": "Sand Suit", "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -15262,17 +15262,17 @@ "fields": { "name": "Sandals of Sand Skating", "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15281,17 +15281,17 @@ "fields": { "name": "Sandals of the Desert Wanderer", "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15300,17 +15300,17 @@ "fields": { "name": "Sanguine Lance", "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15319,17 +15319,17 @@ "fields": { "name": "Satchel of Seawalking", "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15338,17 +15338,17 @@ "fields": { "name": "Scale Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15357,17 +15357,17 @@ "fields": { "name": "Scale Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15376,17 +15376,17 @@ "fields": { "name": "Scale Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -15395,17 +15395,17 @@ "fields": { "name": "Scalehide Cream", "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15414,17 +15414,17 @@ "fields": { "name": "Scarab of Rebirth", "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15433,17 +15433,17 @@ "fields": { "name": "Scarf of Deception", "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15452,17 +15452,17 @@ "fields": { "name": "Scent Sponge", "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15471,17 +15471,17 @@ "fields": { "name": "Scepter of Majesty", "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15490,17 +15490,17 @@ "fields": { "name": "Scimitar of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15509,17 +15509,17 @@ "fields": { "name": "Scimitar of the Desert Winds", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15528,17 +15528,17 @@ "fields": { "name": "Scorn Pouch", "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15547,17 +15547,17 @@ "fields": { "name": "Scorpion Feet", "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -15566,17 +15566,17 @@ "fields": { "name": "Scoundrel's Gambit", "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15585,17 +15585,17 @@ "fields": { "name": "Scourge of Devotion", "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -15604,17 +15604,17 @@ "fields": { "name": "Scout's Coat", "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -15623,17 +15623,17 @@ "fields": { "name": "Screaming Skull", "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -15642,17 +15642,17 @@ "fields": { "name": "Scrimshaw Comb", "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15661,17 +15661,17 @@ "fields": { "name": "Scrimshaw Parrot", "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15680,17 +15680,17 @@ "fields": { "name": "Scroll of Fabrication", "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15699,17 +15699,17 @@ "fields": { "name": "Scroll of Treasure Finding", "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15718,17 +15718,17 @@ "fields": { "name": "Scrolls of Correspondence", "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -15737,17 +15737,17 @@ "fields": { "name": "Sea Witch's Blade", "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -15756,17 +15756,17 @@ "fields": { "name": "Searing Whip", "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15775,17 +15775,17 @@ "fields": { "name": "Second Wind", "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -15794,17 +15794,17 @@ "fields": { "name": "Seelie Staff", "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15813,17 +15813,17 @@ "fields": { "name": "Selket's Bracer", "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -15832,17 +15832,17 @@ "fields": { "name": "Seneschal's Gloves", "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15851,17 +15851,17 @@ "fields": { "name": "Sentinel Portrait", "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15870,17 +15870,17 @@ "fields": { "name": "Serpent Staff", "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15889,17 +15889,17 @@ "fields": { "name": "Serpentine Bracers", "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15908,17 +15908,17 @@ "fields": { "name": "Serpent's Scales", "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -15927,17 +15927,17 @@ "fields": { "name": "Serpent's Tooth", "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15946,17 +15946,17 @@ "fields": { "name": "Shadow Tome", "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -15965,17 +15965,17 @@ "fields": { "name": "Shadowhound's Muzzle", "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -15984,17 +15984,17 @@ "fields": { "name": "Shark Tooth Crown", "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -16003,17 +16003,17 @@ "fields": { "name": "Sharkskin Vest", "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16022,17 +16022,17 @@ "fields": { "name": "Sheeshah of Revelations", "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16041,17 +16041,17 @@ "fields": { "name": "Shepherd's Flail", "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -16060,17 +16060,17 @@ "fields": { "name": "Shield of Gnawing", "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16079,17 +16079,17 @@ "fields": { "name": "Shield of Missile Reversal", "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16098,17 +16098,17 @@ "fields": { "name": "Shield of the Fallen", "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16117,17 +16117,17 @@ "fields": { "name": "Shifting Shirt", "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16136,17 +16136,17 @@ "fields": { "name": "Shimmer Ring", "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -16155,17 +16155,17 @@ "fields": { "name": "Shoes of the Shingled Canopy", "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16174,17 +16174,17 @@ "fields": { "name": "Shortbow of Accuracy", "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16193,17 +16193,17 @@ "fields": { "name": "Shortsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16212,17 +16212,17 @@ "fields": { "name": "Shrutinandan Sitar", "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16231,17 +16231,17 @@ "fields": { "name": "Sickle of Thorns", "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16250,17 +16250,17 @@ "fields": { "name": "Siege Arrow", "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16269,17 +16269,17 @@ "fields": { "name": "Signaling Ammunition", "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16288,17 +16288,17 @@ "fields": { "name": "Signaling Compass", "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16307,17 +16307,17 @@ "fields": { "name": "Signet of the Magister", "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -16326,17 +16326,17 @@ "fields": { "name": "Silver Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16345,17 +16345,17 @@ "fields": { "name": "Silver String", "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16364,17 +16364,17 @@ "fields": { "name": "Silvered Oar", "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16383,17 +16383,17 @@ "fields": { "name": "Skald's Harp", "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -16402,17 +16402,17 @@ "fields": { "name": "Skipstone", "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16421,17 +16421,17 @@ "fields": { "name": "Skullcap of Deep Wisdom", "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16440,17 +16440,17 @@ "fields": { "name": "Slatelight Ring", "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -16459,17 +16459,17 @@ "fields": { "name": "Sleep Pellet", "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16478,17 +16478,17 @@ "fields": { "name": "Slick Cuirass", "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16497,17 +16497,17 @@ "fields": { "name": "Slimeblade Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16516,17 +16516,17 @@ "fields": { "name": "Slimeblade Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16535,17 +16535,17 @@ "fields": { "name": "Slimeblade Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16554,17 +16554,17 @@ "fields": { "name": "Slimeblade Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16573,17 +16573,17 @@ "fields": { "name": "Slimeblade Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16592,17 +16592,17 @@ "fields": { "name": "Sling Stone of Screeching", "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16611,17 +16611,17 @@ "fields": { "name": "Slippers of the Cat", "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16630,17 +16630,17 @@ "fields": { "name": "Slipshod Hammer", "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16649,17 +16649,17 @@ "fields": { "name": "Sloughide Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16668,17 +16668,17 @@ "fields": { "name": "Smoking Plate of Heithmir", "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -16687,17 +16687,17 @@ "fields": { "name": "Smuggler's Bag", "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16706,17 +16706,17 @@ "fields": { "name": "Smuggler's Coat", "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16725,17 +16725,17 @@ "fields": { "name": "Snake Basket", "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16744,17 +16744,17 @@ "fields": { "name": "Soldra's Staff", "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16763,17 +16763,17 @@ "fields": { "name": "Song-Saddle of the Khan", "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16782,17 +16782,17 @@ "fields": { "name": "Soul Bond Chalice", "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16801,17 +16801,17 @@ "fields": { "name": "Soul Jug", "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16820,17 +16820,17 @@ "fields": { "name": "Spear of the North", "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16839,17 +16839,17 @@ "fields": { "name": "Spear of the Stilled Heart", "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16858,17 +16858,17 @@ "fields": { "name": "Spear of the Western Whale", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16877,17 +16877,17 @@ "fields": { "name": "Spearbiter", "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16896,17 +16896,17 @@ "fields": { "name": "Spectral Blade", "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you 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.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -16915,17 +16915,17 @@ "fields": { "name": "Spell Disruptor Horn", "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -16934,17 +16934,17 @@ "fields": { "name": "Spice Box of Zest", "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -16953,17 +16953,17 @@ "fields": { "name": "Spice Box Spoon", "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -16972,17 +16972,17 @@ "fields": { "name": "Spider Grenade", "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -16991,17 +16991,17 @@ "fields": { "name": "Spider Staff", "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17010,17 +17010,17 @@ "fields": { "name": "Splint of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17029,17 +17029,17 @@ "fields": { "name": "Splint of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17048,17 +17048,17 @@ "fields": { "name": "Splint of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17067,17 +17067,17 @@ "fields": { "name": "Splinter Staff", "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17086,17 +17086,17 @@ "fields": { "name": "Spyglass of Summoning", "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17105,17 +17105,17 @@ "fields": { "name": "Staff of Binding", "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17124,17 +17124,17 @@ "fields": { "name": "Staff of Camazotz", "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17143,17 +17143,17 @@ "fields": { "name": "Staff of Channeling", "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17162,17 +17162,17 @@ "fields": { "name": "Staff of Desolation", "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17181,17 +17181,17 @@ "fields": { "name": "Staff of Dissolution", "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17200,17 +17200,17 @@ "fields": { "name": "Staff of Fate", "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17219,17 +17219,17 @@ "fields": { "name": "Staff of Feathers", "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17238,17 +17238,17 @@ "fields": { "name": "Staff of Giantkin", "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17257,17 +17257,17 @@ "fields": { "name": "Staff of Ice and Fire", "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17276,17 +17276,17 @@ "fields": { "name": "Staff of Master Lu Po", "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17295,17 +17295,17 @@ "fields": { "name": "Staff of Midnight", "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17314,17 +17314,17 @@ "fields": { "name": "Staff of Minor Curses", "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -17333,17 +17333,17 @@ "fields": { "name": "Staff of Parzelon", "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17352,17 +17352,17 @@ "fields": { "name": "Staff of Portals", "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17371,17 +17371,17 @@ "fields": { "name": "Staff of Scrying", "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17390,17 +17390,17 @@ "fields": { "name": "Staff of Spores", "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17409,17 +17409,17 @@ "fields": { "name": "Staff of the Armada", "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17428,17 +17428,17 @@ "fields": { "name": "Staff of the Artisan", "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17447,17 +17447,17 @@ "fields": { "name": "Staff of the Cephalopod", "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17466,17 +17466,17 @@ "fields": { "name": "Staff of the Four Winds", "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17485,17 +17485,17 @@ "fields": { "name": "Staff of the Lantern Bearer", "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17504,17 +17504,17 @@ "fields": { "name": "Staff of the Peaks", "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17523,17 +17523,17 @@ "fields": { "name": "Staff of the Scion", "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17542,17 +17542,17 @@ "fields": { "name": "Staff of the Treant", "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17561,17 +17561,17 @@ "fields": { "name": "Staff of the Unhatched", "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17580,17 +17580,17 @@ "fields": { "name": "Staff of the White Necromancer", "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17599,17 +17599,17 @@ "fields": { "name": "Staff of Thorns", "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17618,17 +17618,17 @@ "fields": { "name": "Staff of Voices", "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17637,17 +17637,17 @@ "fields": { "name": "Staff of Winter and Ice", "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17656,17 +17656,17 @@ "fields": { "name": "Standard of Divinity (Glaive)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17675,17 +17675,17 @@ "fields": { "name": "Standard of Divinity (Halberd)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17694,17 +17694,17 @@ "fields": { "name": "Standard of Divinity (Lance)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17713,17 +17713,17 @@ "fields": { "name": "Standard of Divinity (Pike)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17732,17 +17732,17 @@ "fields": { "name": "Steadfast Splint", "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17751,17 +17751,17 @@ "fields": { "name": "Stinger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17770,17 +17770,17 @@ "fields": { "name": "Stolen Thunder", "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17789,17 +17789,17 @@ "fields": { "name": "Stone Staff", "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17808,17 +17808,17 @@ "fields": { "name": "Stonechewer Gauntlets", "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17827,17 +17827,17 @@ "fields": { "name": "Stonedrift Staff", "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -17846,17 +17846,17 @@ "fields": { "name": "Storyteller's Pipe", "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -17865,17 +17865,17 @@ "fields": { "name": "Studded Leather Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17884,17 +17884,17 @@ "fields": { "name": "Studded-Leather of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17903,17 +17903,17 @@ "fields": { "name": "Studded-Leather of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17922,17 +17922,17 @@ "fields": { "name": "Studded-Leather of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -17941,17 +17941,17 @@ "fields": { "name": "Sturdy Crawling Cloak", "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -17960,17 +17960,17 @@ "fields": { "name": "Sturdy Scroll Tube", "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -17979,17 +17979,17 @@ "fields": { "name": "Stygian Crook", "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -17998,17 +17998,17 @@ "fields": { "name": "Superior Potion of Troll Blood", "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18017,17 +18017,17 @@ "fields": { "name": "Supreme Potion of Troll Blood", "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -18036,17 +18036,17 @@ "fields": { "name": "Survival Knife", "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18055,17 +18055,17 @@ "fields": { "name": "Swarmfoe Hide", "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18074,17 +18074,17 @@ "fields": { "name": "Swarmfoe Leather", "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18093,17 +18093,17 @@ "fields": { "name": "Swashing Plumage", "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18112,17 +18112,17 @@ "fields": { "name": "Sweet Nature", "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18131,17 +18131,17 @@ "fields": { "name": "Swolbold Wraps", "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18150,17 +18150,17 @@ "fields": { "name": "Tactile Unguent", "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18169,17 +18169,17 @@ "fields": { "name": "Tailor's Clasp", "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18188,17 +18188,17 @@ "fields": { "name": "Talisman of the Snow Queen", "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18207,17 +18207,17 @@ "fields": { "name": "Talking Tablets", "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18226,17 +18226,17 @@ "fields": { "name": "Talking Torches", "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18245,17 +18245,17 @@ "fields": { "name": "Tamer's Whip", "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18264,17 +18264,17 @@ "fields": { "name": "Tarian Graddfeydd Ddraig", "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18283,17 +18283,17 @@ "fields": { "name": "Teapot of Soothing", "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18302,17 +18302,17 @@ "fields": { "name": "Tenebrous Flail of Screams", "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18321,17 +18321,17 @@ "fields": { "name": "Tenebrous Mantle", "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -18340,17 +18340,17 @@ "fields": { "name": "Thirsting Scalpel", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18359,17 +18359,17 @@ "fields": { "name": "Thirsting Thorn", "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18378,17 +18378,17 @@ "fields": { "name": "Thornish Nocturnal", "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18397,17 +18397,17 @@ "fields": { "name": "Three-Section Boots", "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18416,17 +18416,17 @@ "fields": { "name": "Throttler's Gauntlets", "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18435,17 +18435,17 @@ "fields": { "name": "Thunderous Kazoo", "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18454,17 +18454,17 @@ "fields": { "name": "Tick Stop Watch", "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18473,17 +18473,17 @@ "fields": { "name": "Timeworn Timepiece", "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18492,17 +18492,17 @@ "fields": { "name": "Tincture of Moonlit Blossom", "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18511,17 +18511,17 @@ "fields": { "name": "Tipstaff", "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18530,17 +18530,17 @@ "fields": { "name": "Tome of Knowledge", "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18549,17 +18549,17 @@ "fields": { "name": "Tonic for the Troubled Mind", "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18568,17 +18568,17 @@ "fields": { "name": "Tonic of Blandness", "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18587,17 +18587,17 @@ "fields": { "name": "Toothsome Purse", "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18606,17 +18606,17 @@ "fields": { "name": "Torc of the Comet", "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18625,17 +18625,17 @@ "fields": { "name": "Tracking Dart", "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -18644,17 +18644,17 @@ "fields": { "name": "Treebleed Bucket", "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18663,17 +18663,17 @@ "fields": { "name": "Trident of the Vortex", "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18682,17 +18682,17 @@ "fields": { "name": "Trident of the Yearning Tide", "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18701,17 +18701,17 @@ "fields": { "name": "Troll Skin Hide", "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18720,17 +18720,17 @@ "fields": { "name": "Troll Skin Leather", "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18739,17 +18739,17 @@ "fields": { "name": "Trollsblood Elixir", "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18758,17 +18758,17 @@ "fields": { "name": "Tyrant's Whip", "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18777,17 +18777,17 @@ "fields": { "name": "Umber Beans", "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18796,17 +18796,17 @@ "fields": { "name": "Umbral Band", "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -18815,17 +18815,17 @@ "fields": { "name": "Umbral Chopper", "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18834,17 +18834,17 @@ "fields": { "name": "Umbral Lantern", "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18853,17 +18853,17 @@ "fields": { "name": "Umbral Staff", "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -18872,17 +18872,17 @@ "fields": { "name": "Undine Plate", "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18891,17 +18891,17 @@ "fields": { "name": "Unerring Dowsing Rod", "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18910,17 +18910,17 @@ "fields": { "name": "Unquiet Dagger", "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -18929,17 +18929,17 @@ "fields": { "name": "Unseelie Staff", "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -18948,17 +18948,17 @@ "fields": { "name": "Valkyrie's Bite", "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18967,17 +18967,17 @@ "fields": { "name": "Vengeful Coat", "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -18986,17 +18986,17 @@ "fields": { "name": "Venomous Fangs", "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19005,17 +19005,17 @@ "fields": { "name": "Verdant Elixir", "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19024,17 +19024,17 @@ "fields": { "name": "Verminous Snipsnaps", "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19043,17 +19043,17 @@ "fields": { "name": "Verses of Vengeance", "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19062,17 +19062,17 @@ "fields": { "name": "Vessel of Deadly Venoms", "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19081,17 +19081,17 @@ "fields": { "name": "Vestments of the Bleak Shinobi", "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19100,17 +19100,17 @@ "fields": { "name": "Vial of Sunlight", "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19119,17 +19119,17 @@ "fields": { "name": "Vielle of Weirding and Warding", "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19138,17 +19138,17 @@ "fields": { "name": "Vigilant Mug", "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19157,17 +19157,17 @@ "fields": { "name": "Vile Razor", "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19176,17 +19176,17 @@ "fields": { "name": "Void-Touched Buckler", "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19195,17 +19195,17 @@ "fields": { "name": "Voidskin Cloak", "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19214,17 +19214,17 @@ "fields": { "name": "Voidwalker", "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -19233,17 +19233,17 @@ "fields": { "name": "Feather Token", "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19252,17 +19252,17 @@ "fields": { "name": "Wand of Accompaniment", "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19271,17 +19271,17 @@ "fields": { "name": "Wand of Air Glyphs", "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19290,17 +19290,17 @@ "fields": { "name": "Wand of Bristles", "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19309,17 +19309,17 @@ "fields": { "name": "Wand of Depth Detection", "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19328,17 +19328,17 @@ "fields": { "name": "Wand of Direction", "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19347,17 +19347,17 @@ "fields": { "name": "Wand of Drowning", "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19366,17 +19366,17 @@ "fields": { "name": "Wand of Extinguishing", "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19385,17 +19385,17 @@ "fields": { "name": "Wand of Fermentation", "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19404,17 +19404,17 @@ "fields": { "name": "Wand of Flame Control", "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19423,17 +19423,17 @@ "fields": { "name": "Wand of Giggles", "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19442,17 +19442,17 @@ "fields": { "name": "Wand of Guidance", "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19461,17 +19461,17 @@ "fields": { "name": "Wand of Harrowing", "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19480,17 +19480,17 @@ "fields": { "name": "Wand of Ignition", "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19499,17 +19499,17 @@ "fields": { "name": "Wand of Plant Destruction", "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19518,17 +19518,17 @@ "fields": { "name": "Wand of Relieved Burdens", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19537,17 +19537,17 @@ "fields": { "name": "Wand of Resistance", "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19556,17 +19556,17 @@ "fields": { "name": "Wand of Revealing", "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19575,17 +19575,17 @@ "fields": { "name": "Wand of Tears", "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19594,17 +19594,17 @@ "fields": { "name": "Wand of the Timekeeper", "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19613,17 +19613,17 @@ "fields": { "name": "Wand of Treasure Finding", "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19632,17 +19632,17 @@ "fields": { "name": "Wand of Vapors", "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19651,17 +19651,17 @@ "fields": { "name": "Wand of Windows", "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19670,17 +19670,17 @@ "fields": { "name": "Ward Against Wild Appetites", "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19689,17 +19689,17 @@ "fields": { "name": "Warding Icon", "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 1 + "rarity": "common" } }, { @@ -19708,17 +19708,17 @@ "fields": { "name": "Warlock's Aegis", "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19727,17 +19727,17 @@ "fields": { "name": "Warrior Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19746,17 +19746,17 @@ "fields": { "name": "Wave Chain Mail", "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19765,17 +19765,17 @@ "fields": { "name": "Wayfarer's Candle", "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19784,17 +19784,17 @@ "fields": { "name": "Web Arrows", "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19803,17 +19803,17 @@ "fields": { "name": "Webbed Staff", "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -19822,17 +19822,17 @@ "fields": { "name": "Whip of Fangs", "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19841,17 +19841,17 @@ "fields": { "name": "Whispering Cloak", "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -19860,17 +19860,17 @@ "fields": { "name": "Whispering Powder", "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19879,17 +19879,17 @@ "fields": { "name": "White Ape Hide", "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19898,17 +19898,17 @@ "fields": { "name": "White Ape Leather", "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19917,17 +19917,17 @@ "fields": { "name": "White Dandelion", "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -19936,17 +19936,17 @@ "fields": { "name": "White Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -19955,17 +19955,17 @@ "fields": { "name": "Windwalker Boots", "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19974,17 +19974,17 @@ "fields": { "name": "Wisp of the Void", "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -19993,17 +19993,17 @@ "fields": { "name": "Witch Ward Bottle", "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -20012,17 +20012,17 @@ "fields": { "name": "Witch's Brew", "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -20031,17 +20031,17 @@ "fields": { "name": "Wolf Brush", "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -20050,17 +20050,17 @@ "fields": { "name": "Wolfbite Ring", "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -20069,17 +20069,17 @@ "fields": { "name": "Worg Salve", "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -20088,17 +20088,17 @@ "fields": { "name": "Worry Stone", "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -20107,17 +20107,17 @@ "fields": { "name": "Wraithstone", "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -20126,17 +20126,17 @@ "fields": { "name": "Wrathful Vapors", "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -20145,17 +20145,17 @@ "fields": { "name": "Zephyr Shield", "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "shield", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -20164,17 +20164,17 @@ "fields": { "name": "Ziphian Eye Amulet", "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -20183,17 +20183,17 @@ "fields": { "name": "Zipline Ring", "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", - "size": 1, + "document": "vault-of-magic", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "vault-of-magic", "cost": "0.00", "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } } ] diff --git a/data/v2/open5e/o5e/Spell.json b/data/v2/open5e/o5e/Spell.json index 6a493402..c5d66f6c 100644 --- a/data/v2/open5e/o5e/Spell.json +++ b/data/v2/open5e/o5e/Spell.json @@ -7,7 +7,7 @@ "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", "document": "o5e", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Self", @@ -38,7 +38,7 @@ "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", "document": "o5e", "level": 1, - "school": "Necromancy", + "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", diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index 0f9013c7..bef2c12c 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -35,11 +35,11 @@ "skill_bonus_survival": null, "passive_perception": 20, "name": "Aboleth", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 135, - "document": "srd", "type": "aberration", "category": "Monsters", "alignment": "lawful evil" @@ -81,11 +81,11 @@ "skill_bonus_survival": null, "passive_perception": 21, "name": "Adult Black Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 195, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -127,11 +127,11 @@ "skill_bonus_survival": null, "passive_perception": 22, "name": "Adult Blue Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 225, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -173,11 +173,11 @@ "skill_bonus_survival": null, "passive_perception": 21, "name": "Adult Brass Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 18, "hit_points": 172, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -219,11 +219,11 @@ "skill_bonus_survival": null, "passive_perception": 22, "name": "Adult Bronze Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 212, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -265,11 +265,11 @@ "skill_bonus_survival": null, "passive_perception": 22, "name": "Adult Copper Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 18, "hit_points": 184, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -311,11 +311,11 @@ "skill_bonus_survival": null, "passive_perception": 24, "name": "Adult Gold Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 256, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -357,11 +357,11 @@ "skill_bonus_survival": null, "passive_perception": 22, "name": "Adult Green Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 207, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -403,11 +403,11 @@ "skill_bonus_survival": null, "passive_perception": 23, "name": "Adult Red Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 256, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -449,11 +449,11 @@ "skill_bonus_survival": null, "passive_perception": 21, "name": "Adult Silver Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 243, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -495,11 +495,11 @@ "skill_bonus_survival": null, "passive_perception": 21, "name": "Adult White Dragon", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 18, "hit_points": 200, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -541,11 +541,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Air Elemental", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 90, - "document": "srd", "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -587,11 +587,11 @@ "skill_bonus_survival": null, "passive_perception": 26, "name": "Ancient Black Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 367, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -633,11 +633,11 @@ "skill_bonus_survival": null, "passive_perception": 27, "name": "Ancient Blue Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 481, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -679,11 +679,11 @@ "skill_bonus_survival": null, "passive_perception": 24, "name": "Ancient Brass Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 20, "hit_points": 297, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -725,11 +725,11 @@ "skill_bonus_survival": null, "passive_perception": 27, "name": "Ancient Bronze Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 444, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -771,11 +771,11 @@ "skill_bonus_survival": null, "passive_perception": 27, "name": "Ancient Copper Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 21, "hit_points": 350, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -817,11 +817,11 @@ "skill_bonus_survival": null, "passive_perception": 27, "name": "Ancient Gold Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 546, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -863,11 +863,11 @@ "skill_bonus_survival": null, "passive_perception": 27, "name": "Ancient Green Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 21, "hit_points": 385, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -909,11 +909,11 @@ "skill_bonus_survival": null, "passive_perception": 26, "name": "Ancient Red Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 546, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -955,11 +955,11 @@ "skill_bonus_survival": null, "passive_perception": 26, "name": "Ancient Silver Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 22, "hit_points": 487, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -1001,11 +1001,11 @@ "skill_bonus_survival": null, "passive_perception": 23, "name": "Ancient White Dragon", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 20, "hit_points": 333, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -1047,11 +1047,11 @@ "skill_bonus_survival": null, "passive_perception": 20, "name": "Androsphinx", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 199, - "document": "srd", "type": "monstrosity", "category": "Monsters; Sphinxes", "alignment": "lawful neutral" @@ -1093,11 +1093,11 @@ "skill_bonus_survival": null, "passive_perception": 6, "name": "Animated Armor", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 18, "hit_points": 33, - "document": "srd", "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -1139,11 +1139,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Ankheg", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 39, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1185,11 +1185,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Azer", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 39, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "lawful neutral" @@ -1231,11 +1231,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Balor", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 19, "hit_points": 262, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -1277,11 +1277,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Barbed Devil", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 110, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1323,11 +1323,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Basilisk", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 52, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1369,11 +1369,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Bearded Devil", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 52, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1415,11 +1415,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Behir", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 17, "hit_points": 168, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -1461,11 +1461,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Black Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 33, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -1507,11 +1507,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Black Pudding", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 7, "hit_points": 85, - "document": "srd", "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -1553,11 +1553,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Blue Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 52, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -1599,11 +1599,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Bone Devil", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 19, "hit_points": 142, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1645,11 +1645,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Brass Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 16, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -1691,11 +1691,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Bronze Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 32, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -1737,11 +1737,11 @@ "skill_bonus_survival": 2, "passive_perception": 10, "name": "Bugbear", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 27, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -1783,11 +1783,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Bulette", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 94, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -1829,11 +1829,11 @@ "skill_bonus_survival": 0, "passive_perception": 9, "name": "Camel", - "size": 4, + "document": "srd", + "size": "large", "weight": "600.000", "armor_class": 9, "hit_points": 15, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -1875,11 +1875,11 @@ "skill_bonus_survival": 3, "passive_perception": 13, "name": "Centaur", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 45, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral good" @@ -1921,11 +1921,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Chain Devil", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 85, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -1967,11 +1967,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Chimera", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 114, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -2013,11 +2013,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Chuul", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 16, "hit_points": 93, - "document": "srd", "type": "aberration", "category": "Monsters", "alignment": "chaotic evil" @@ -2059,11 +2059,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Clay Golem", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 133, - "document": "srd", "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -2105,11 +2105,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Cloaker", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 78, - "document": "srd", "type": "aberration", "category": "Monsters", "alignment": "chaotic neutral" @@ -2151,11 +2151,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Cloud Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 14, "hit_points": 200, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "neutral good (50%) or neutral evil (50%)" @@ -2197,11 +2197,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Cockatrice", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 11, "hit_points": 27, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -2243,11 +2243,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Copper Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 22, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -2289,11 +2289,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Couatl", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 19, "hit_points": 97, - "document": "srd", "type": "celestial", "category": "Monsters", "alignment": "lawful good" @@ -2335,11 +2335,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Darkmantle", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 11, "hit_points": 22, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -2381,11 +2381,11 @@ "skill_bonus_survival": null, "passive_perception": 19, "name": "Deva", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 136, - "document": "srd", "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -2427,11 +2427,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Djinni", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 161, - "document": "srd", "type": "elemental", "category": "Monsters; Genies", "alignment": "chaotic good" @@ -2473,11 +2473,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Donkey", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 10, "hit_points": 11, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -2519,11 +2519,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Doppelganger", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 52, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -2565,11 +2565,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Draft Horse", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 10, "hit_points": 19, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -2611,11 +2611,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Dragon Turtle", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 20, "hit_points": 341, - "document": "srd", "type": "dragon", "category": "Monsters", "alignment": "neutral" @@ -2657,11 +2657,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Dretch", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 11, "hit_points": 18, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -2703,11 +2703,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Drider", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 19, "hit_points": 123, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -2749,11 +2749,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Dryad", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 22, - "document": "srd", "type": "fey", "category": "Monsters", "alignment": "neutral" @@ -2795,11 +2795,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Duergar", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 26, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -2841,11 +2841,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Dust Mephit", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 12, "hit_points": 17, - "document": "srd", "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -2887,11 +2887,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Earth Elemental", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 126, - "document": "srd", "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -2933,11 +2933,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Efreeti", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 200, - "document": "srd", "type": "elemental", "category": "Monsters; Genies", "alignment": "lawful evil" @@ -2979,11 +2979,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Elephant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 12, "hit_points": 76, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -3025,11 +3025,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Elf, Drow", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 13, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -3071,11 +3071,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Erinyes", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 18, "hit_points": 153, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -3117,11 +3117,11 @@ "skill_bonus_survival": 3, "passive_perception": 13, "name": "Ettercap", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 44, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -3163,11 +3163,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Ettin", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 85, - "document": "srd", "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -3209,11 +3209,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Fire Elemental", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 102, - "document": "srd", "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -3255,11 +3255,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Fire Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 18, "hit_points": 162, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "lawful evil" @@ -3301,11 +3301,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Flesh Golem", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 9, "hit_points": 93, - "document": "srd", "type": "construct", "category": "Monsters; Golems", "alignment": "neutral" @@ -3347,11 +3347,11 @@ "skill_bonus_survival": null, "passive_perception": 7, "name": "Flying Sword", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 17, "hit_points": 17, - "document": "srd", "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -3393,11 +3393,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Frost Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 15, "hit_points": 138, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "neutral evil" @@ -3439,11 +3439,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Gargoyle", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 52, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "chaotic evil" @@ -3485,11 +3485,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Gelatinous Cube", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 6, "hit_points": 84, - "document": "srd", "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -3531,11 +3531,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Ghast", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 36, - "document": "srd", "type": "undead", "category": "Monsters; Ghouls", "alignment": "chaotic evil" @@ -3577,11 +3577,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Ghost", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 45, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "any alignment" @@ -3623,11 +3623,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Ghoul", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 22, - "document": "srd", "type": "undead", "category": "Monsters; Ghouls", "alignment": "chaotic evil" @@ -3669,11 +3669,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Gibbering Mouther", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 9, "hit_points": 67, - "document": "srd", "type": "aberration", "category": "Monsters", "alignment": "neutral" @@ -3715,11 +3715,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Glabrezu", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 157, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -3761,11 +3761,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Gnoll", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 22, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -3807,11 +3807,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Gnome, Deep (Svirfneblin)", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 15, "hit_points": 16, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral good" @@ -3853,11 +3853,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Goblin", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 15, "hit_points": 7, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -3899,11 +3899,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Gold Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 60, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -3945,11 +3945,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Gorgon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 19, "hit_points": 114, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -3991,11 +3991,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Gray Ooze", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 8, "hit_points": 22, - "document": "srd", "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -4037,11 +4037,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Green Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 38, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -4083,11 +4083,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Green Hag", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 82, - "document": "srd", "type": "fey", "category": "Monsters; Hags", "alignment": "neutral evil" @@ -4129,11 +4129,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Grick", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 27, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -4175,11 +4175,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Griffon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 59, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4221,11 +4221,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Grimlock", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 11, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral evil" @@ -4267,11 +4267,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Guardian Naga", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 127, - "document": "srd", "type": "monstrosity", "category": "Monsters; Nagas", "alignment": "lawful good" @@ -4313,11 +4313,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Gynosphinx", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 136, - "document": "srd", "type": "monstrosity", "category": "Monsters; Sphinxes", "alignment": "lawful neutral" @@ -4359,11 +4359,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Half-Red Dragon Veteran", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 18, "hit_points": 65, - "document": "srd", "type": "humanoid", "category": "Monsters; Half-Dragon Template", "alignment": "any alignment" @@ -4405,11 +4405,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Harpy", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 38, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -4451,11 +4451,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Hell Hound", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 45, - "document": "srd", "type": "fiend", "category": "Monsters", "alignment": "lawful evil" @@ -4497,11 +4497,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Hezrou", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 16, "hit_points": 136, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -4543,11 +4543,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Hill Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 13, "hit_points": 105, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "chaotic evil" @@ -4589,11 +4589,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Hippogriff", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 11, "hit_points": 19, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4635,11 +4635,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Hobgoblin", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 18, "hit_points": 11, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -4681,11 +4681,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Homunculus", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 13, "hit_points": 5, - "document": "srd", "type": "construct", "category": "Monsters", "alignment": "neutral" @@ -4727,11 +4727,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Horned Devil", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 178, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4773,11 +4773,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Hydra", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 15, "hit_points": 172, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -4819,11 +4819,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Ice Devil", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 180, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4865,11 +4865,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Ice Mephit", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 11, "hit_points": 21, - "document": "srd", "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -4911,11 +4911,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Imp", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 13, "hit_points": 10, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -4957,11 +4957,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Invisible Stalker", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 104, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "neutral" @@ -5003,11 +5003,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Iron Golem", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 20, "hit_points": 210, - "document": "srd", "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -5049,11 +5049,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Kobold", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 12, "hit_points": 5, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -5095,11 +5095,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Kraken", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 18, "hit_points": 472, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5141,11 +5141,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Lamia", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 97, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5187,11 +5187,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Lemure", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 7, "hit_points": 13, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -5233,11 +5233,11 @@ "skill_bonus_survival": null, "passive_perception": 19, "name": "Lich", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 135, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "any evil alignment" @@ -5279,11 +5279,11 @@ "skill_bonus_survival": 5, "passive_perception": 13, "name": "Lizardfolk", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 22, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral" @@ -5325,11 +5325,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Magma Mephit", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 11, "hit_points": 22, - "document": "srd", "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -5371,11 +5371,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Magmin", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 14, "hit_points": 9, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "chaotic neutral" @@ -5417,11 +5417,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Manticore", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 68, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "lawful evil" @@ -5463,11 +5463,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Marilith", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 189, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -5509,11 +5509,11 @@ "skill_bonus_survival": 0, "passive_perception": 13, "name": "Mastiff", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 5, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -5555,11 +5555,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Medusa", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 127, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "lawful evil" @@ -5601,11 +5601,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Merfolk", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 11, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "neutral" @@ -5647,11 +5647,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Merrow", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 45, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5693,11 +5693,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Mimic", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 58, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral" @@ -5739,11 +5739,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Minotaur", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 76, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "chaotic evil" @@ -5785,11 +5785,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Minotaur Skeleton", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 67, - "document": "srd", "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -5831,11 +5831,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Mule", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 10, "hit_points": 11, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -5877,11 +5877,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Mummy", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 58, - "document": "srd", "type": "undead", "category": "Monsters; Mummies", "alignment": "lawful evil" @@ -5923,11 +5923,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Mummy Lord", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 97, - "document": "srd", "type": "undead", "category": "Monsters; Mummies", "alignment": "lawful evil" @@ -5969,11 +5969,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Nalfeshnee", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 184, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -6015,11 +6015,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Night Hag", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 112, - "document": "srd", "type": "fiend", "category": "Monsters; Hags", "alignment": "neutral evil" @@ -6061,11 +6061,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Nightmare", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 68, - "document": "srd", "type": "fiend", "category": "Monsters", "alignment": "neutral evil" @@ -6107,11 +6107,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Ochre Jelly", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 8, "hit_points": 45, - "document": "srd", "type": "ooze", "category": "Monsters; Oozes", "alignment": "unaligned" @@ -6153,11 +6153,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Ogre", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 11, "hit_points": 59, - "document": "srd", "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -6199,11 +6199,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Ogre Zombie", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 8, "hit_points": 85, - "document": "srd", "type": "undead", "category": "Monsters; Zombies", "alignment": "neutral evil" @@ -6245,11 +6245,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Oni", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 16, "hit_points": 110, - "document": "srd", "type": "giant", "category": "Monsters", "alignment": "lawful evil" @@ -6291,11 +6291,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Orc", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 15, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "chaotic evil" @@ -6337,11 +6337,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Otyugh", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 114, - "document": "srd", "type": "aberration", "category": "Monsters", "alignment": "neutral" @@ -6383,11 +6383,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Owlbear", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 59, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6429,11 +6429,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Pegasus", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 59, - "document": "srd", "type": "celestial", "category": "Monsters", "alignment": "chaotic good" @@ -6475,11 +6475,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Pit Fiend", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 19, "hit_points": 300, - "document": "srd", "type": "fiend", "category": "Monsters; Devils", "alignment": "lawful evil" @@ -6521,11 +6521,11 @@ "skill_bonus_survival": null, "passive_perception": 21, "name": "Planetar", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 19, "hit_points": 200, - "document": "srd", "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -6567,11 +6567,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Plesiosaurus", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 68, - "document": "srd", "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -6613,11 +6613,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Pony", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 10, "hit_points": 11, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -6659,11 +6659,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Pseudodragon", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 13, "hit_points": 7, - "document": "srd", "type": "dragon", "category": "Monsters", "alignment": "neutral good" @@ -6705,11 +6705,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Purple Worm", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 18, "hit_points": 247, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6751,11 +6751,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Quasit", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 13, "hit_points": 7, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -6797,11 +6797,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Rakshasa", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 110, - "document": "srd", "type": "fiend", "category": "Monsters", "alignment": "lawful evil" @@ -6843,11 +6843,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Red Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 75, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -6889,11 +6889,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Remorhaz", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 17, "hit_points": 195, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -6935,11 +6935,11 @@ "skill_bonus_survival": 0, "passive_perception": 10, "name": "Riding Horse", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 10, "hit_points": 13, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -6981,11 +6981,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Roc", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 15, "hit_points": 248, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -7027,11 +7027,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Roper", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 20, "hit_points": 93, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "neutral evil" @@ -7073,11 +7073,11 @@ "skill_bonus_survival": null, "passive_perception": 6, "name": "Rug of Smothering", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 33, - "document": "srd", "type": "construct", "category": "Monsters; Animated Objects", "alignment": "unaligned" @@ -7119,11 +7119,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Rust Monster", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 27, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -7165,11 +7165,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Sahuagin", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 22, - "document": "srd", "type": "humanoid", "category": "Monsters", "alignment": "lawful evil" @@ -7211,11 +7211,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Salamander", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 90, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "neutral evil" @@ -7257,11 +7257,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Satyr", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 31, - "document": "srd", "type": "fey", "category": "Monsters", "alignment": "chaotic neutral" @@ -7303,11 +7303,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Sea Hag", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 52, - "document": "srd", "type": "fey", "category": "Monsters; Hags", "alignment": "chaotic evil" @@ -7349,11 +7349,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Shadow", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 16, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -7395,11 +7395,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Shambling Mound", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 136, - "document": "srd", "type": "plant", "category": "Monsters", "alignment": "unaligned" @@ -7441,11 +7441,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Shield Guardian", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 142, - "document": "srd", "type": "construct", "category": "Monsters", "alignment": "unaligned" @@ -7487,11 +7487,11 @@ "skill_bonus_survival": null, "passive_perception": 6, "name": "Shrieker", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 5, "hit_points": 13, - "document": "srd", "type": "plant", "category": "Monsters; Fungi", "alignment": "unaligned" @@ -7533,11 +7533,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Silver Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 17, "hit_points": 45, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -7579,11 +7579,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Skeleton", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 13, - "document": "srd", "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -7625,11 +7625,11 @@ "skill_bonus_survival": null, "passive_perception": 24, "name": "Solar", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 21, "hit_points": 243, - "document": "srd", "type": "celestial", "category": "Monsters; Angels", "alignment": "lawful good" @@ -7671,11 +7671,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Specter", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 22, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -7717,11 +7717,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Spirit Naga", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 75, - "document": "srd", "type": "monstrosity", "category": "Monsters; Nagas", "alignment": "chaotic evil" @@ -7763,11 +7763,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Sprite", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 15, "hit_points": 2, - "document": "srd", "type": "fey", "category": "Monsters", "alignment": "neutral good" @@ -7809,11 +7809,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Steam Mephit", - "size": 2, + "document": "srd", + "size": "small", "weight": "0.000", "armor_class": 10, "hit_points": 21, - "document": "srd", "type": "elemental", "category": "Monsters; Mephits", "alignment": "neutral evil" @@ -7855,11 +7855,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Stirge", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 14, "hit_points": 2, - "document": "srd", "type": "beast", "category": "Monsters", "alignment": "unaligned" @@ -7901,11 +7901,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Stone Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 17, "hit_points": 126, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "neutral" @@ -7947,11 +7947,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Stone Golem", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 178, - "document": "srd", "type": "construct", "category": "Monsters; Golems", "alignment": "unaligned" @@ -7993,11 +7993,11 @@ "skill_bonus_survival": null, "passive_perception": 19, "name": "Storm Giant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 16, "hit_points": 230, - "document": "srd", "type": "giant", "category": "Monsters; Giants", "alignment": "chaotic good" @@ -8039,11 +8039,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Succubus/Incubus", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 66, - "document": "srd", "type": "fiend", "category": "Monsters", "alignment": "neutral evil" @@ -8085,11 +8085,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Tarrasque", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 25, "hit_points": 676, - "document": "srd", "type": "monstrosity", "category": "Monsters", "alignment": "unaligned" @@ -8131,11 +8131,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Treant", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 16, "hit_points": 138, - "document": "srd", "type": "plant", "category": "Monsters", "alignment": "chaotic good" @@ -8177,11 +8177,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Triceratops", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 13, "hit_points": 95, - "document": "srd", "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -8223,11 +8223,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Troll", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 84, - "document": "srd", "type": "giant", "category": "Monsters", "alignment": "chaotic evil" @@ -8269,11 +8269,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Tyrannosaurus Rex", - "size": 5, + "document": "srd", + "size": "huge", "weight": "0.000", "armor_class": 13, "hit_points": 136, - "document": "srd", "type": "beast", "category": "Monsters; Dinosaurs", "alignment": "unaligned" @@ -8315,11 +8315,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Unicorn", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 12, "hit_points": 67, - "document": "srd", "type": "celestial", "category": "Monsters", "alignment": "lawful good" @@ -8361,11 +8361,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Vampire", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 144, - "document": "srd", "type": "undead", "category": "Monsters; Vampires", "alignment": "lawful evil" @@ -8407,11 +8407,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Vampire Spawn", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 15, "hit_points": 82, - "document": "srd", "type": "undead", "category": "Monsters; Vampires", "alignment": "neutral evil" @@ -8453,11 +8453,11 @@ "skill_bonus_survival": null, "passive_perception": 6, "name": "Violet Fungus", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 5, "hit_points": 18, - "document": "srd", "type": "plant", "category": "Monsters; Fungi", "alignment": "unaligned" @@ -8499,11 +8499,11 @@ "skill_bonus_survival": null, "passive_perception": 11, "name": "Vrock", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 15, "hit_points": 104, - "document": "srd", "type": "fiend", "category": "Monsters; Demons", "alignment": "chaotic evil" @@ -8545,11 +8545,11 @@ "skill_bonus_survival": 0, "passive_perception": 11, "name": "Warhorse", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 11, "hit_points": 19, - "document": "srd", "type": "beast", "category": "Miscellaneous", "alignment": "unaligned" @@ -8591,11 +8591,11 @@ "skill_bonus_survival": null, "passive_perception": 9, "name": "Warhorse Skeleton", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 22, - "document": "srd", "type": "undead", "category": "Monsters; Skeletons", "alignment": "lawful evil" @@ -8637,11 +8637,11 @@ "skill_bonus_survival": null, "passive_perception": 10, "name": "Water Elemental", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 14, "hit_points": 114, - "document": "srd", "type": "elemental", "category": "Monsters; Elementals", "alignment": "neutral" @@ -8683,11 +8683,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Werebear", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 10, "hit_points": 135, - "document": "srd", "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral good" @@ -8729,11 +8729,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Wereboar", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 10, "hit_points": 78, - "document": "srd", "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral evil" @@ -8775,11 +8775,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Wererat", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 33, - "document": "srd", "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "lawful evil" @@ -8821,11 +8821,11 @@ "skill_bonus_survival": null, "passive_perception": 15, "name": "Weretiger", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 12, "hit_points": 120, - "document": "srd", "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "neutral" @@ -8867,11 +8867,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Werewolf", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 11, "hit_points": 58, - "document": "srd", "type": "humanoid", "category": "Monsters; Lycanthropes", "alignment": "chaotic evil" @@ -8913,11 +8913,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "White Dragon Wyrmling", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 16, "hit_points": 32, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -8959,11 +8959,11 @@ "skill_bonus_survival": null, "passive_perception": 13, "name": "Wight", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 14, "hit_points": 45, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "neutral evil" @@ -9005,11 +9005,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Will-o'-Wisp", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 19, "hit_points": 22, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "chaotic evil" @@ -9051,11 +9051,11 @@ "skill_bonus_survival": null, "passive_perception": 12, "name": "Wraith", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 13, "hit_points": 67, - "document": "srd", "type": "undead", "category": "Monsters", "alignment": "neutral evil" @@ -9097,11 +9097,11 @@ "skill_bonus_survival": null, "passive_perception": 14, "name": "Wyvern", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 13, "hit_points": 110, - "document": "srd", "type": "dragon", "category": "Monsters", "alignment": "unaligned" @@ -9143,11 +9143,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Xorn", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 19, "hit_points": 73, - "document": "srd", "type": "elemental", "category": "Monsters", "alignment": "neutral" @@ -9189,11 +9189,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Young Black Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 127, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9235,11 +9235,11 @@ "skill_bonus_survival": null, "passive_perception": 19, "name": "Young Blue Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 152, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -9281,11 +9281,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Young Brass Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 110, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -9327,11 +9327,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Young Bronze Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 142, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9373,11 +9373,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Young Copper Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 119, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "chaotic good" @@ -9419,11 +9419,11 @@ "skill_bonus_survival": null, "passive_perception": 19, "name": "Young Gold Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 178, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9465,11 +9465,11 @@ "skill_bonus_survival": null, "passive_perception": 17, "name": "Young Green Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 136, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "lawful evil" @@ -9511,11 +9511,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Young Red Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 178, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9557,11 +9557,11 @@ "skill_bonus_survival": null, "passive_perception": 18, "name": "Young Silver Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 18, "hit_points": 168, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Metallic", "alignment": "lawful good" @@ -9603,11 +9603,11 @@ "skill_bonus_survival": null, "passive_perception": 16, "name": "Young White Dragon", - "size": 4, + "document": "srd", + "size": "large", "weight": "0.000", "armor_class": 17, "hit_points": 133, - "document": "srd", "type": "dragon", "category": "Monsters; Dragons, Chromatic", "alignment": "chaotic evil" @@ -9649,11 +9649,11 @@ "skill_bonus_survival": null, "passive_perception": 8, "name": "Zombie", - "size": 3, + "document": "srd", + "size": "medium", "weight": "0.000", "armor_class": 8, "hit_points": 22, - "document": "srd", "type": "undead", "category": "Monsters; Zombies", "alignment": "neutral evil" diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureAttack.json index e27b9be9..41683a7c 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAttack.json @@ -15,11 +15,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -38,11 +38,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -61,11 +61,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "piercing" } }, { @@ -84,11 +84,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -107,11 +107,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -130,11 +130,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 7, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D10", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "piercing" } }, { @@ -153,11 +153,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -176,11 +176,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -199,11 +199,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -222,11 +222,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -245,11 +245,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -268,11 +268,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 7, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -291,11 +291,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -314,11 +314,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -337,11 +337,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -360,11 +360,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -383,11 +383,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -406,11 +406,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -429,11 +429,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -452,11 +452,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -475,11 +475,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -498,11 +498,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -521,11 +521,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -544,11 +544,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -567,11 +567,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -590,11 +590,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -613,11 +613,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -636,11 +636,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -659,11 +659,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -682,11 +682,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "piercing" } }, { @@ -705,11 +705,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -728,11 +728,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -751,11 +751,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -774,11 +774,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "piercing" } }, { @@ -797,11 +797,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -820,11 +820,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -843,11 +843,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 9, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D10", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "piercing" } }, { @@ -866,11 +866,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 9, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -889,11 +889,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 9, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -912,11 +912,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -935,11 +935,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -958,11 +958,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -981,11 +981,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 9, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1004,11 +1004,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 9, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1027,11 +1027,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 9, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1050,11 +1050,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1073,11 +1073,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1096,11 +1096,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1119,11 +1119,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1142,11 +1142,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 10, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1165,11 +1165,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 10, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1188,11 +1188,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -1211,11 +1211,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1234,11 +1234,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1257,11 +1257,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 4, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -1280,11 +1280,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 10, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1303,11 +1303,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 10, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1326,11 +1326,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1349,11 +1349,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 10, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1372,11 +1372,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 10, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1395,11 +1395,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "piercing" } }, { @@ -1418,11 +1418,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1441,11 +1441,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1464,11 +1464,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1487,11 +1487,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -1510,11 +1510,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "slashing" } }, { @@ -1533,11 +1533,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "bludgeoning" } }, { @@ -1556,11 +1556,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "bludgeoning" } }, { @@ -1579,11 +1579,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 3, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "slashing" } }, { @@ -1602,11 +1602,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "slashing" } }, { @@ -1625,11 +1625,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1648,11 +1648,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "FIRE", + "damage_type": "fire", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "fire" } }, { @@ -1671,11 +1671,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1694,11 +1694,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -1717,11 +1717,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1740,11 +1740,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1763,11 +1763,11 @@ "damage_die_count": 3, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1786,11 +1786,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 2, "extra_damage_die_type": "D10", "extra_damage_bonus": 6, - "extra_damage_type": "SLASHING" + "extra_damage_type": "bludgeoning" } }, { @@ -1809,11 +1809,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "piercing" } }, { @@ -1832,11 +1832,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 4, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "bludgeoning" } }, { @@ -1855,11 +1855,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "piercing" } }, { @@ -1878,11 +1878,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -1901,11 +1901,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 5, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -1924,11 +1924,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1947,11 +1947,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1970,11 +1970,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -1993,11 +1993,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2016,11 +2016,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2039,11 +2039,11 @@ "damage_die_count": 4, "damage_die_type": "D12", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2062,11 +2062,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2085,11 +2085,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2108,11 +2108,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2131,11 +2131,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2154,11 +2154,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2177,11 +2177,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2200,11 +2200,11 @@ "damage_die_count": 1, "damage_die_type": "D12", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2223,11 +2223,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2246,11 +2246,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2269,11 +2269,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2292,11 +2292,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2315,11 +2315,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2338,11 +2338,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2361,11 +2361,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2384,11 +2384,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2407,11 +2407,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2430,11 +2430,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2453,11 +2453,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2476,11 +2476,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 4, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "RADIANT" + "extra_damage_type": "bludgeoning" } }, { @@ -2499,11 +2499,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "slashing" } }, { @@ -2522,11 +2522,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "THUNDER" + "extra_damage_type": "slashing" } }, { @@ -2545,11 +2545,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2568,11 +2568,11 @@ "damage_die_count": 3, "damage_die_type": "D12", "damage_bonus": 7, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2591,11 +2591,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2614,11 +2614,11 @@ "damage_die_count": 3, "damage_die_type": "D12", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2637,11 +2637,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2660,11 +2660,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 0, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2683,11 +2683,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -2706,11 +2706,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -2729,11 +2729,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2752,11 +2752,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2775,11 +2775,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 0, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2798,11 +2798,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2821,11 +2821,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2844,11 +2844,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2867,11 +2867,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2890,11 +2890,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -2913,11 +2913,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -2936,11 +2936,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -2959,11 +2959,11 @@ "damage_die_count": 5, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "FIRE", + "damage_type": "fire", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "fire" } }, { @@ -2982,11 +2982,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "slashing" } }, { @@ -3005,11 +3005,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3028,11 +3028,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3051,11 +3051,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 3, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -3074,11 +3074,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 3, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "slashing" } }, { @@ -3097,11 +3097,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 3, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "slashing" } }, { @@ -3120,11 +3120,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -3143,11 +3143,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3189,11 +3189,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3212,11 +3212,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3235,11 +3235,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "FIRE", + "damage_type": "fire", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "fire" } }, { @@ -3258,11 +3258,11 @@ "damage_die_count": 6, "damage_die_type": "D6", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3281,11 +3281,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3304,11 +3304,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3327,11 +3327,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3350,11 +3350,11 @@ "damage_die_count": 3, "damage_die_type": "D12", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3373,11 +3373,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3396,11 +3396,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3419,11 +3419,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3442,11 +3442,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "ACID", + "damage_type": "acid", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "acid" } }, { @@ -3465,11 +3465,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3488,11 +3488,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3511,11 +3511,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -3534,11 +3534,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3557,11 +3557,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3580,11 +3580,11 @@ "damage_die_count": 5, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3603,11 +3603,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3626,11 +3626,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3649,11 +3649,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3672,11 +3672,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3695,11 +3695,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3718,11 +3718,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3741,11 +3741,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3764,11 +3764,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3787,11 +3787,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3810,11 +3810,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3833,11 +3833,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3856,11 +3856,11 @@ "damage_die_count": 2, "damage_die_type": "D12", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3879,11 +3879,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -3902,11 +3902,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 1, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "bludgeoning" } }, { @@ -3925,11 +3925,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -3948,11 +3948,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -3971,11 +3971,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -3994,11 +3994,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4017,11 +4017,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4040,11 +4040,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4063,11 +4063,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "PIERCING" + "extra_damage_type": "bludgeoning" } }, { @@ -4086,11 +4086,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4132,11 +4132,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4155,11 +4155,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4178,11 +4178,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4201,11 +4201,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4224,11 +4224,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4247,11 +4247,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4270,11 +4270,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4293,11 +4293,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -4316,11 +4316,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4339,11 +4339,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4362,11 +4362,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4385,11 +4385,11 @@ "damage_die_count": 3, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4408,11 +4408,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4431,11 +4431,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4454,11 +4454,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4477,11 +4477,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4500,11 +4500,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4523,11 +4523,11 @@ "damage_die_count": 0, "damage_die_type": null, "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4546,11 +4546,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4569,11 +4569,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "FIRE", + "damage_type": "fire", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "fire" } }, { @@ -4592,11 +4592,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4615,11 +4615,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4638,11 +4638,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "piercing" } }, { @@ -4661,11 +4661,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "slashing" } }, { @@ -4684,11 +4684,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "bludgeoning" } }, { @@ -4707,11 +4707,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "slashing" } }, { @@ -4730,11 +4730,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4753,11 +4753,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4776,11 +4776,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4799,11 +4799,11 @@ "damage_die_count": 3, "damage_die_type": "D10", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4822,11 +4822,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4845,11 +4845,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4868,11 +4868,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4891,11 +4891,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 10, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -4914,11 +4914,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -4937,11 +4937,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -4983,11 +4983,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 0, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5006,11 +5006,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "COLD", + "damage_type": "cold", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "cold" } }, { @@ -5029,11 +5029,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5052,11 +5052,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5075,11 +5075,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5098,11 +5098,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5121,11 +5121,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "slashing" } }, { @@ -5144,11 +5144,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "FIRE", + "damage_type": "fire", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "fire" } }, { @@ -5167,11 +5167,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5190,11 +5190,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5213,11 +5213,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5236,11 +5236,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5259,11 +5259,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5282,11 +5282,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -5305,11 +5305,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5328,11 +5328,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 4, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -5351,11 +5351,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5374,11 +5374,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5397,11 +5397,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5420,11 +5420,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5443,11 +5443,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5466,11 +5466,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "piercing" } }, { @@ -5489,11 +5489,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5512,11 +5512,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5535,11 +5535,11 @@ "damage_die_count": 2, "damage_die_type": "D12", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5558,11 +5558,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5581,11 +5581,11 @@ "damage_die_count": 2, "damage_die_type": "D12", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5604,11 +5604,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 6, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "NECROTIC" + "extra_damage_type": "bludgeoning" } }, { @@ -5627,11 +5627,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "NECROTIC" + "extra_damage_type": "bludgeoning" } }, { @@ -5650,11 +5650,11 @@ "damage_die_count": 5, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5673,11 +5673,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5696,11 +5696,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5719,11 +5719,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "bludgeoning" } }, { @@ -5742,11 +5742,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "bludgeoning" } }, { @@ -5765,11 +5765,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5788,11 +5788,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -5811,11 +5811,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5834,11 +5834,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5857,11 +5857,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5880,11 +5880,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5903,11 +5903,11 @@ "damage_die_count": 1, "damage_die_type": "D12", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -5926,11 +5926,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5949,11 +5949,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -5972,11 +5972,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "PIERCING" + "extra_damage_type": "bludgeoning" } }, { @@ -5995,11 +5995,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6018,11 +6018,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6041,11 +6041,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -6064,11 +6064,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6087,11 +6087,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6110,11 +6110,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 6, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "bludgeoning" } }, { @@ -6133,11 +6133,11 @@ "damage_die_count": 3, "damage_die_type": "D10", "damage_bonus": 8, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -6156,11 +6156,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 7, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 5, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "RADIANT" + "extra_damage_type": "slashing" } }, { @@ -6179,11 +6179,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6202,11 +6202,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6225,11 +6225,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6248,11 +6248,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 9, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6271,11 +6271,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 9, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6294,11 +6294,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6317,11 +6317,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6340,11 +6340,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -6363,11 +6363,11 @@ "damage_die_count": 6, "damage_die_type": "D10", "damage_bonus": 7, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -6386,11 +6386,11 @@ "damage_die_count": 4, "damage_die_type": "D8", "damage_bonus": 9, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6409,11 +6409,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 9, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6432,11 +6432,11 @@ "damage_die_count": 4, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6501,11 +6501,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6524,11 +6524,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6547,11 +6547,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6570,11 +6570,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6593,11 +6593,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 1, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6616,11 +6616,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -6639,11 +6639,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -6662,11 +6662,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "bludgeoning" } }, { @@ -6685,11 +6685,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 1, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -6708,11 +6708,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6731,11 +6731,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6754,11 +6754,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -6777,11 +6777,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -6800,11 +6800,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -6823,11 +6823,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -6846,11 +6846,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6869,11 +6869,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6892,11 +6892,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -6915,11 +6915,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 8, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 6, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "RADIANT" + "extra_damage_type": "slashing" } }, { @@ -6938,11 +6938,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 6, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "RADIANT" + "extra_damage_type": "piercing" } }, { @@ -6961,11 +6961,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 0, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -6984,11 +6984,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7007,11 +7007,11 @@ "damage_die_count": 0, "damage_die_type": null, "damage_bonus": 0, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7030,11 +7030,11 @@ "damage_die_count": 0, "damage_die_type": null, "damage_bonus": 0, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7053,11 +7053,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 0, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "slashing" } }, { @@ -7076,11 +7076,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7099,11 +7099,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7122,11 +7122,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7145,11 +7145,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7168,11 +7168,11 @@ "damage_die_count": 6, "damage_die_type": "D6", "damage_bonus": 9, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7191,11 +7191,11 @@ "damage_die_count": 4, "damage_die_type": "D12", "damage_bonus": 9, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7214,11 +7214,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7237,11 +7237,11 @@ "damage_die_count": 4, "damage_die_type": "D12", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7260,11 +7260,11 @@ "damage_die_count": 4, "damage_die_type": "D8", "damage_bonus": 10, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7283,11 +7283,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 10, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7306,11 +7306,11 @@ "damage_die_count": 4, "damage_die_type": "D6", "damage_bonus": 10, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7329,11 +7329,11 @@ "damage_die_count": 4, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7352,11 +7352,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7375,11 +7375,11 @@ "damage_die_count": 4, "damage_die_type": "D8", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7398,11 +7398,11 @@ "damage_die_count": 3, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7421,11 +7421,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7444,11 +7444,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7467,11 +7467,11 @@ "damage_die_count": 4, "damage_die_type": "D12", "damage_bonus": 7, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7490,11 +7490,11 @@ "damage_die_count": 3, "damage_die_type": "D8", "damage_bonus": 7, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7513,11 +7513,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7536,11 +7536,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7559,11 +7559,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "NECROTIC" + "extra_damage_type": "piercing" } }, { @@ -7582,11 +7582,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7605,11 +7605,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 3, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "NECROTIC" + "extra_damage_type": "piercing" } }, { @@ -7628,11 +7628,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7651,11 +7651,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 0, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -7674,11 +7674,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7697,11 +7697,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7720,11 +7720,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7743,11 +7743,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7766,11 +7766,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7789,11 +7789,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7812,11 +7812,11 @@ "damage_die_count": 1, "damage_die_type": "D12", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7835,11 +7835,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } }, { @@ -7858,11 +7858,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7881,11 +7881,11 @@ "damage_die_count": 1, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7904,11 +7904,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7927,11 +7927,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7950,11 +7950,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -7973,11 +7973,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -7996,11 +7996,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8019,11 +8019,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8042,11 +8042,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8065,11 +8065,11 @@ "damage_die_count": 2, "damage_die_type": "D4", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8088,11 +8088,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8111,11 +8111,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8134,11 +8134,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D4", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "piercing" } }, { @@ -8157,11 +8157,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 2, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -8180,11 +8180,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8203,11 +8203,11 @@ "damage_die_count": 1, "damage_die_type": "D8", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8226,11 +8226,11 @@ "damage_die_count": 1, "damage_die_type": "D10", "damage_bonus": 2, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8249,11 +8249,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 0, - "damage_type": "LIGHTNING", + "damage_type": "lightning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "lightning" } }, { @@ -8272,11 +8272,11 @@ "damage_die_count": 4, "damage_die_type": "D8", "damage_bonus": 3, - "damage_type": "NECROTIC", + "damage_type": "necrotic", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "necrotic" } }, { @@ -8295,11 +8295,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8318,11 +8318,11 @@ "damage_die_count": 2, "damage_die_type": "D8", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8341,11 +8341,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8364,11 +8364,11 @@ "damage_die_count": 3, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8387,11 +8387,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 3, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8410,11 +8410,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "ACID" + "extra_damage_type": "piercing" } }, { @@ -8433,11 +8433,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8456,11 +8456,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D10", "extra_damage_bonus": 0, - "extra_damage_type": "LIGHTNING" + "extra_damage_type": "piercing" } }, { @@ -8479,11 +8479,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8502,11 +8502,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8525,11 +8525,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8548,11 +8548,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 5, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8571,11 +8571,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 5, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8594,11 +8594,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8617,11 +8617,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8640,11 +8640,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8663,11 +8663,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8686,11 +8686,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 2, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "POISON" + "extra_damage_type": "piercing" } }, { @@ -8709,11 +8709,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8732,11 +8732,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D6", "extra_damage_bonus": 0, - "extra_damage_type": "FIRE" + "extra_damage_type": "piercing" } }, { @@ -8755,11 +8755,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8778,11 +8778,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 6, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "piercing" } }, { @@ -8801,11 +8801,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 6, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8824,11 +8824,11 @@ "damage_die_count": 2, "damage_die_type": "D10", "damage_bonus": 4, - "damage_type": "PIERCING", + "damage_type": "piercing", "extra_damage_die_count": 1, "extra_damage_die_type": "D8", "extra_damage_bonus": 0, - "extra_damage_type": "COLD" + "extra_damage_type": "piercing" } }, { @@ -8847,11 +8847,11 @@ "damage_die_count": 2, "damage_die_type": "D6", "damage_bonus": 4, - "damage_type": "SLASHING", + "damage_type": "slashing", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "slashing" } }, { @@ -8870,11 +8870,11 @@ "damage_die_count": 1, "damage_die_type": "D6", "damage_bonus": 1, - "damage_type": "BLUDGEONING", + "damage_type": "bludgeoning", "extra_damage_die_count": null, "extra_damage_die_type": null, "extra_damage_bonus": null, - "extra_damage_type": null + "extra_damage_type": "bludgeoning" } } ] diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index 264a1593..d778114f 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -5,11 +5,11 @@ "fields": { "name": "Cinnamon", "desc": "1lb of cinnamon", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -24,11 +24,11 @@ "fields": { "name": "Cloves", "desc": "1lb of cloves.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "3.00", "weapon": null, "armor": null, @@ -43,11 +43,11 @@ "fields": { "name": "Copper", "desc": "1lb of copper.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -62,11 +62,11 @@ "fields": { "name": "Flour", "desc": "1lb of flour", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -81,11 +81,11 @@ "fields": { "name": "Ginger", "desc": "1lb of Ginger.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -100,11 +100,11 @@ "fields": { "name": "Gold", "desc": "1lb of gold.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -119,11 +119,11 @@ "fields": { "name": "Iron", "desc": "1lb of iron.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -138,11 +138,11 @@ "fields": { "name": "Pepper", "desc": "1lb of pepper.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -157,11 +157,11 @@ "fields": { "name": "Platinum", "desc": "1 lb. of platinum.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "500.00", "weapon": null, "armor": null, @@ -176,11 +176,11 @@ "fields": { "name": "Saffron", "desc": "1lb of saffron.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -195,11 +195,11 @@ "fields": { "name": "Salt", "desc": "1lb of salt.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -214,11 +214,11 @@ "fields": { "name": "Silver", "desc": "1lb of silver", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -233,11 +233,11 @@ "fields": { "name": "Wheat", "desc": "1 pound of wheat.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -252,11 +252,11 @@ "fields": { "name": "Canvas", "desc": "1 sq. yd. of canvas", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -271,11 +271,11 @@ "fields": { "name": "Cotton Cloth", "desc": "1 sq. yd. of cotton cloth.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -290,11 +290,11 @@ "fields": { "name": "Linen", "desc": "1 sq. yd. of linen.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -309,11 +309,11 @@ "fields": { "name": "Silk", "desc": "1 sq. yd. of silk.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -328,11 +328,11 @@ "fields": { "name": "Abacus", "desc": "An abacus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -347,11 +347,11 @@ "fields": { "name": "Acid", "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, @@ -366,11 +366,11 @@ "fields": { "name": "Acid (vial)", "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -385,17 +385,17 @@ "fields": { "name": "Adamantine Armor (Breastplate)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -404,17 +404,17 @@ "fields": { "name": "Adamantine Armor (Chain-Mail)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -423,17 +423,17 @@ "fields": { "name": "Adamantine Armor (Chain-Shirt)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -442,17 +442,17 @@ "fields": { "name": "Adamantine Armor (Half-Plate)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "half-plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -461,17 +461,17 @@ "fields": { "name": "Adamantine Armor (Hide)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -480,17 +480,17 @@ "fields": { "name": "Adamantine Armor (Plate)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -499,17 +499,17 @@ "fields": { "name": "Adamantine Armor (Ring-Mail)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -518,17 +518,17 @@ "fields": { "name": "Adamantine Armor (Scale-Mail)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -537,17 +537,17 @@ "fields": { "name": "Adamantine Armor (Splint)", "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -556,11 +556,11 @@ "fields": { "name": "Alchemist's Fire (Flask)", "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -575,11 +575,11 @@ "fields": { "name": "Alchemist's Supplies", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "8.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -594,11 +594,11 @@ "fields": { "name": "Amulet", "desc": "Can be used as a holy symbol.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -613,17 +613,17 @@ "fields": { "name": "Amulet of Health", "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -632,17 +632,17 @@ "fields": { "name": "Amulet of Proof against Detection and Location", "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -651,17 +651,17 @@ "fields": { "name": "Amulet of the Planes", "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -670,17 +670,17 @@ "fields": { "name": "Animated Shield", "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "shield", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -689,11 +689,11 @@ "fields": { "name": "Antitoxin (Vial)", "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -708,17 +708,17 @@ "fields": { "name": "Apparatus of the Crab", "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -727,17 +727,17 @@ "fields": { "name": "Armor of Invulnerability", "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -746,17 +746,17 @@ "fields": { "name": "Armor of Resistance (Leather)", "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\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 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "leather", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -765,17 +765,17 @@ "fields": { "name": "Armor of Resistance (Padded)", "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\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 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "padded", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -784,17 +784,17 @@ "fields": { "name": "Armor of Resistance (Studded-Leather)", "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\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 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -803,17 +803,17 @@ "fields": { "name": "Armor of Vulnerability", "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -822,11 +822,11 @@ "fields": { "name": "Arrow (bow)", "desc": "An arrow for a bow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.050", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -841,17 +841,17 @@ "fields": { "name": "Arrow-Catching Shield", "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "shield", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -860,17 +860,17 @@ "fields": { "name": "Arrow of Slaying", "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "ammunition", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -879,11 +879,11 @@ "fields": { "name": "Assassin's Blood", "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "150.00", "weapon": null, "armor": null, @@ -898,11 +898,11 @@ "fields": { "name": "Backpack", "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -917,17 +917,17 @@ "fields": { "name": "Bag of Beans", "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -936,17 +936,17 @@ "fields": { "name": "Bag of Devouring", "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -955,17 +955,17 @@ "fields": { "name": "Bag of Holding", "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -974,17 +974,17 @@ "fields": { "name": "Bag of Tricks", "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -993,11 +993,11 @@ "fields": { "name": "Bagpipes", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": null, "armor": null, @@ -1012,11 +1012,11 @@ "fields": { "name": "Ball Bearings (bag of 1000)", "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -1031,11 +1031,11 @@ "fields": { "name": "Barrel", "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", - "size": 3, + "document": "srd", + "size": "medium", "weight": "70.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -1050,11 +1050,11 @@ "fields": { "name": "Basket", "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.40", "weapon": null, "armor": null, @@ -1069,11 +1069,11 @@ "fields": { "name": "Battleaxe", "desc": "A battleaxe.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "battleaxe", "armor": null, @@ -1088,17 +1088,17 @@ "fields": { "name": "Battleaxe (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1107,17 +1107,17 @@ "fields": { "name": "Battleaxe (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1126,17 +1126,17 @@ "fields": { "name": "Battleaxe (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1145,17 +1145,17 @@ "fields": { "name": "Bead of Force", "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1164,11 +1164,11 @@ "fields": { "name": "Bedroll", "desc": "A bedroll.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "7.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -1183,11 +1183,11 @@ "fields": { "name": "Bell", "desc": "A bell.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -1202,17 +1202,17 @@ "fields": { "name": "Belt of Cloud Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -1221,17 +1221,17 @@ "fields": { "name": "Belt of Dwarvenkind", "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1240,17 +1240,17 @@ "fields": { "name": "Belt of Fire Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1259,17 +1259,17 @@ "fields": { "name": "Belt of Frost Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1278,17 +1278,17 @@ "fields": { "name": "Belt of Hill Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1297,17 +1297,17 @@ "fields": { "name": "Belt of Stone Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1316,17 +1316,17 @@ "fields": { "name": "Belt of Storm Giant Strength", "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -1335,11 +1335,11 @@ "fields": { "name": "Blanket", "desc": "A blanket.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -1354,11 +1354,11 @@ "fields": { "name": "Block and Tackle", "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -1373,11 +1373,11 @@ "fields": { "name": "Blowgun", "desc": "A blowgun.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "blowgun", "armor": null, @@ -1392,17 +1392,17 @@ "fields": { "name": "Blowgun (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "blowgun", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1411,17 +1411,17 @@ "fields": { "name": "Blowgun (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "blowgun", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1430,17 +1430,17 @@ "fields": { "name": "Blowgun (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "blowgun", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1449,11 +1449,11 @@ "fields": { "name": "Blowgun needles", "desc": "Needles to be fired with a blowgun.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -1468,11 +1468,11 @@ "fields": { "name": "Book", "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -1487,17 +1487,17 @@ "fields": { "name": "Boots of Elvenkind", "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1506,17 +1506,17 @@ "fields": { "name": "Boots of Levitation", "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1525,17 +1525,17 @@ "fields": { "name": "Boots of Speed", "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1544,17 +1544,17 @@ "fields": { "name": "Boots of Striding and Springing", "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1563,17 +1563,17 @@ "fields": { "name": "Boots of the Winterlands", "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1582,11 +1582,11 @@ "fields": { "name": "Bottle, glass", "desc": "A glass bottle. Capacity: 1.5 pints liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -1601,17 +1601,17 @@ "fields": { "name": "Bowl of Commanding Water Elementals", "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1620,17 +1620,17 @@ "fields": { "name": "Bracers of Archery", "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1639,17 +1639,17 @@ "fields": { "name": "Bracers of Defense", "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -1658,17 +1658,17 @@ "fields": { "name": "Brazier of Commanding Fire Elementals", "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1677,11 +1677,11 @@ "fields": { "name": "Breastplate", "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "20.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "400.00", "weapon": null, "armor": "breastplate", @@ -1696,11 +1696,11 @@ "fields": { "name": "Brewer's Supplies", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "9.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": null, "armor": null, @@ -1715,17 +1715,17 @@ "fields": { "name": "Brooch of Shielding", "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1734,17 +1734,17 @@ "fields": { "name": "Broom of Flying", "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -1753,11 +1753,11 @@ "fields": { "name": "Bucket", "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -1772,11 +1772,11 @@ "fields": { "name": "Burnt othur fumes", "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "500.00", "weapon": null, "armor": null, @@ -1791,11 +1791,11 @@ "fields": { "name": "Calligrapher's supplies", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -1810,11 +1810,11 @@ "fields": { "name": "Caltrops (bag of 20)", "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -1829,11 +1829,11 @@ "fields": { "name": "Candle", "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -1848,17 +1848,17 @@ "fields": { "name": "Candle of Invocation", "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1867,17 +1867,17 @@ "fields": { "name": "Cape of the Mountebank", "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -1886,11 +1886,11 @@ "fields": { "name": "Carpenter's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "8.00", "weapon": null, "armor": null, @@ -1905,17 +1905,17 @@ "fields": { "name": "Carpet of Flying", "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -1924,11 +1924,11 @@ "fields": { "name": "Carriage", "desc": "Drawn vehicle.", - "size": 5, + "document": "srd", + "size": "huge", "weight": "600.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "100.00", "weapon": null, "armor": null, @@ -1943,11 +1943,11 @@ "fields": { "name": "Cart", "desc": "Drawn vehicle", - "size": 4, + "document": "srd", + "size": "large", "weight": "200.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -1962,11 +1962,11 @@ "fields": { "name": "Cartographer's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -1981,11 +1981,11 @@ "fields": { "name": "Case, Crossbow Bolt", "desc": "This wooden case can hold up to twenty crossbow bolts.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -2000,11 +2000,11 @@ "fields": { "name": "Case, Map or Scroll", "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -2019,17 +2019,17 @@ "fields": { "name": "Censer of Controlling Air Elementals", "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2038,11 +2038,11 @@ "fields": { "name": "Chain (10 feet)", "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -2057,11 +2057,11 @@ "fields": { "name": "Chain mail", "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "55.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "75.00", "weapon": null, "armor": "chain-mail", @@ -2076,11 +2076,11 @@ "fields": { "name": "Chain shirt", "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "20.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": "chain-shirt", @@ -2095,11 +2095,11 @@ "fields": { "name": "Chalk (1 piece)", "desc": "A piece of chalk.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -2114,11 +2114,11 @@ "fields": { "name": "Chariot", "desc": "Drawn vehicle.", - "size": 4, + "document": "srd", + "size": "large", "weight": "100.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "250.00", "weapon": null, "armor": null, @@ -2133,11 +2133,11 @@ "fields": { "name": "Chest", "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", - "size": 2, + "document": "srd", + "size": "small", "weight": "25.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -2152,11 +2152,11 @@ "fields": { "name": "Chicken", "desc": "One chicken", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -2171,17 +2171,17 @@ "fields": { "name": "Chime of Opening", "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2190,17 +2190,17 @@ "fields": { "name": "Circlet of Blasting", "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2209,11 +2209,11 @@ "fields": { "name": "Climber's Kit", "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "12.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -2228,17 +2228,17 @@ "fields": { "name": "Cloak of Arachnida", "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2247,17 +2247,17 @@ "fields": { "name": "Cloak of Displacement", "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2266,17 +2266,17 @@ "fields": { "name": "Cloak of Elvenkind", "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2285,17 +2285,17 @@ "fields": { "name": "Cloak of Protection", "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2304,17 +2304,17 @@ "fields": { "name": "Cloak of the Bat", "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2323,17 +2323,17 @@ "fields": { "name": "Cloak of the Manta Ray", "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2342,11 +2342,11 @@ "fields": { "name": "Clothes, Common", "desc": "Common clothes.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -2361,11 +2361,11 @@ "fields": { "name": "Clothes, costume", "desc": "A costume.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -2380,11 +2380,11 @@ "fields": { "name": "Clothes, fine", "desc": "Fine clothing.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -2399,11 +2399,11 @@ "fields": { "name": "Clothes, traveler's", "desc": "Traveler's clothing.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -2418,11 +2418,11 @@ "fields": { "name": "Club", "desc": "A club", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": "club", "armor": null, @@ -2437,17 +2437,17 @@ "fields": { "name": "Club (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2456,17 +2456,17 @@ "fields": { "name": "Club (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2475,17 +2475,17 @@ "fields": { "name": "Club (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "club", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2494,11 +2494,11 @@ "fields": { "name": "Cobbler's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -2513,11 +2513,11 @@ "fields": { "name": "Component Pouch", "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -2532,11 +2532,11 @@ "fields": { "name": "Cook's utensils", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "8.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -2551,11 +2551,11 @@ "fields": { "name": "Cow", "desc": "One cow.", - "size": 4, + "document": "srd", + "size": "large", "weight": "1000.000", "armor_class": 10, "hit_points": 15, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -2570,11 +2570,11 @@ "fields": { "name": "Copper Piece", "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -2589,11 +2589,11 @@ "fields": { "name": "Crawler mucus", "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "200.00", "weapon": null, "armor": null, @@ -2608,11 +2608,11 @@ "fields": { "name": "Crossbow bolt", "desc": "Bolts to be used in a crossbow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.080", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -2627,11 +2627,11 @@ "fields": { "name": "Crossbow, hand", "desc": "A hand crossbow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "75.00", "weapon": "crossbow-hand", "armor": null, @@ -2646,17 +2646,17 @@ "fields": { "name": "Crossbow-Hand (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2665,17 +2665,17 @@ "fields": { "name": "Crossbow-Hand (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2684,17 +2684,17 @@ "fields": { "name": "Crossbow-Hand (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2703,11 +2703,11 @@ "fields": { "name": "Crossbow, heavy", "desc": "A heavy crossbow", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "18.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": "crossbow-heavy", "armor": null, @@ -2722,17 +2722,17 @@ "fields": { "name": "Crossbow-Heavy (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2741,17 +2741,17 @@ "fields": { "name": "Crossbow-Heavy (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2760,17 +2760,17 @@ "fields": { "name": "Crossbow-Heavy (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2779,11 +2779,11 @@ "fields": { "name": "Crossbow, light", "desc": "A light crossbow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": "crossbow-light", "armor": null, @@ -2798,17 +2798,17 @@ "fields": { "name": "Crossbow-Light (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -2817,17 +2817,17 @@ "fields": { "name": "Crossbow-Light (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -2836,17 +2836,17 @@ "fields": { "name": "Crossbow-Light (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2855,11 +2855,11 @@ "fields": { "name": "Crowbar", "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -2874,11 +2874,11 @@ "fields": { "name": "Crystal", "desc": "Can be used as an arcane focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -2893,17 +2893,17 @@ "fields": { "name": "Crystal Ball", "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -2912,17 +2912,17 @@ "fields": { "name": "Crystal Ball of Mind Reading", "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2931,17 +2931,17 @@ "fields": { "name": "Crystal Ball of Telepathy", "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2950,17 +2950,17 @@ "fields": { "name": "Crystal Ball of True Seeing", "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -2969,17 +2969,17 @@ "fields": { "name": "Cube of Force", "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -2988,17 +2988,17 @@ "fields": { "name": "Cubic Gate", "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -3007,11 +3007,11 @@ "fields": { "name": "Dagger", "desc": "A dagger.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": "dagger", "armor": null, @@ -3026,17 +3026,17 @@ "fields": { "name": "Dagger (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3045,17 +3045,17 @@ "fields": { "name": "Dagger (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3064,17 +3064,17 @@ "fields": { "name": "Dagger (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dagger", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3083,11 +3083,11 @@ "fields": { "name": "Dagger of Venom", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dagger", "armor": null, @@ -3102,11 +3102,11 @@ "fields": { "name": "Dancing Sword (Greatsword)", "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -3121,11 +3121,11 @@ "fields": { "name": "Dancing Sword (Longsword)", "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -3140,11 +3140,11 @@ "fields": { "name": "Dancing Sword (Rapier)", "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -3159,11 +3159,11 @@ "fields": { "name": "Dancing Sword (Shortsword)", "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -3178,11 +3178,11 @@ "fields": { "name": "Dart", "desc": "A dart.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.250", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": "dart", "armor": null, @@ -3197,17 +3197,17 @@ "fields": { "name": "Dart (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3216,17 +3216,17 @@ "fields": { "name": "Dart (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3235,17 +3235,17 @@ "fields": { "name": "Dart (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dart", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3254,17 +3254,17 @@ "fields": { "name": "Decanter of Endless Water", "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3273,17 +3273,17 @@ "fields": { "name": "Deck of Illusions", "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3292,17 +3292,17 @@ "fields": { "name": "Deck of Many Things", "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -3311,11 +3311,11 @@ "fields": { "name": "Defender (Greatsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -3330,11 +3330,11 @@ "fields": { "name": "Defender (Longsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -3349,11 +3349,11 @@ "fields": { "name": "Defender (Rapier)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -3368,11 +3368,11 @@ "fields": { "name": "Defender (Shortsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -3387,17 +3387,17 @@ "fields": { "name": "Demon Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3406,11 +3406,11 @@ "fields": { "name": "Dice set", "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -3425,17 +3425,17 @@ "fields": { "name": "Dimensional Shackles", "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3444,11 +3444,11 @@ "fields": { "name": "Disguise kit", "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -3463,17 +3463,17 @@ "fields": { "name": "Dragon Scale Mail", "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3482,11 +3482,11 @@ "fields": { "name": "Dragon Slayer (Greatsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -3501,11 +3501,11 @@ "fields": { "name": "Dragon Slayer (Longsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -3520,11 +3520,11 @@ "fields": { "name": "Dragon Slayer (Rapier)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -3539,11 +3539,11 @@ "fields": { "name": "Dragon Slayer (Shortsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -3558,11 +3558,11 @@ "fields": { "name": "Drow poison", "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "200.00", "weapon": null, "armor": null, @@ -3577,11 +3577,11 @@ "fields": { "name": "Drum", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "6.00", "weapon": null, "armor": null, @@ -3596,11 +3596,11 @@ "fields": { "name": "Dulcimer", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -3615,17 +3615,17 @@ "fields": { "name": "Dust of Disappearance", "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3634,17 +3634,17 @@ "fields": { "name": "Dust of Dryness", "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3653,17 +3653,17 @@ "fields": { "name": "Dust of Sneezing and Choking", "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3672,17 +3672,17 @@ "fields": { "name": "Dwarven Plate", "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3691,11 +3691,11 @@ "fields": { "name": "Dwarven Thrower", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warhammer", "armor": null, @@ -3710,17 +3710,17 @@ "fields": { "name": "Efficient Quiver", "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3729,17 +3729,17 @@ "fields": { "name": "Efreeti Bottle", "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -3748,17 +3748,17 @@ "fields": { "name": "Elemental Gem", "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3767,17 +3767,17 @@ "fields": { "name": "Elven Chain", "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3786,11 +3786,11 @@ "fields": { "name": "Emblem", "desc": "Can be used as a holy symbol.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -3805,11 +3805,11 @@ "fields": { "name": "Electrum Piece", "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -3824,11 +3824,11 @@ "fields": { "name": "Essense of either", "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "300.00", "weapon": null, "armor": null, @@ -3843,17 +3843,17 @@ "fields": { "name": "Eversmoking Bottle", "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3862,17 +3862,17 @@ "fields": { "name": "Eyes of Charming", "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3881,17 +3881,17 @@ "fields": { "name": "Eyes of Minute Seeing", "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3900,17 +3900,17 @@ "fields": { "name": "Eyes of the Eagle", "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -3919,17 +3919,17 @@ "fields": { "name": "Feather Token", "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3938,17 +3938,17 @@ "fields": { "name": "Figurine of Wondrous Power (Bronze Griffon)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3957,17 +3957,17 @@ "fields": { "name": "Figurine of Wondrous Power (Ebony Fly)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -3976,17 +3976,17 @@ "fields": { "name": "Figurine of Wondrous Power (Golden Lions)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -3995,17 +3995,17 @@ "fields": { "name": "Figurine of Wondrous Power (Ivory Goats)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4014,17 +4014,17 @@ "fields": { "name": "Figurine of Wondrous Power (Marble Elephant)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4033,17 +4033,17 @@ "fields": { "name": "Figurine of Wondrous Power (Obsidian Steed)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4052,17 +4052,17 @@ "fields": { "name": "Figurine of Wondrous Power (Onyx Dog)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4071,17 +4071,17 @@ "fields": { "name": "Figurine of Wondrous Power (Serpentine Owl)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4090,17 +4090,17 @@ "fields": { "name": "Figurine of Wondrous Power (Silver Raven)", "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4109,11 +4109,11 @@ "fields": { "name": "Fishing Tackle", "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -4128,11 +4128,11 @@ "fields": { "name": "Flail", "desc": "A flail.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "flail", "armor": null, @@ -4147,17 +4147,17 @@ "fields": { "name": "Flail (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4166,17 +4166,17 @@ "fields": { "name": "Flail (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4185,17 +4185,17 @@ "fields": { "name": "Flail (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "flail", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4204,11 +4204,11 @@ "fields": { "name": "Flame Tongue (Greatsword)", "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -4223,11 +4223,11 @@ "fields": { "name": "Flame Tongue (Longsword)", "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -4242,11 +4242,11 @@ "fields": { "name": "Flame Tongue (Rapier)", "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -4261,11 +4261,11 @@ "fields": { "name": "Flame Tongue (Shortsword)", "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -4280,11 +4280,11 @@ "fields": { "name": "Flask or tankard", "desc": "For drinking. Capacity: 1 pint liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -4299,11 +4299,11 @@ "fields": { "name": "Flute", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -4318,17 +4318,17 @@ "fields": { "name": "Folding Boat", "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4337,11 +4337,11 @@ "fields": { "name": "Forgery kit", "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -4356,11 +4356,11 @@ "fields": { "name": "Frost Brand (Greatsword)", "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -4375,11 +4375,11 @@ "fields": { "name": "Frost Brand (Longsword)", "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -4394,11 +4394,11 @@ "fields": { "name": "Frost Brand (Rapier)", "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -4413,11 +4413,11 @@ "fields": { "name": "Frost Brand (Shortsword)", "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -4432,11 +4432,11 @@ "fields": { "name": "Galley", "desc": "A waterborne vehicle. Speed 4 mph", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30000.00", "weapon": null, "armor": null, @@ -4451,17 +4451,17 @@ "fields": { "name": "Gauntlets of Ogre Power", "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4470,17 +4470,17 @@ "fields": { "name": "Gem of Brightness", "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4489,17 +4489,17 @@ "fields": { "name": "Gem of Seeing", "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -4508,11 +4508,11 @@ "fields": { "name": "Giant Slayer (Battleaxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "battleaxe", "armor": null, @@ -4527,11 +4527,11 @@ "fields": { "name": "Giant Slayer (Greataxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greataxe", "armor": null, @@ -4546,11 +4546,11 @@ "fields": { "name": "Giant Slayer (Greatsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -4565,11 +4565,11 @@ "fields": { "name": "Giant Slayer (Handaxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "handaxe", "armor": null, @@ -4584,11 +4584,11 @@ "fields": { "name": "Giant Slayer (Longsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -4603,11 +4603,11 @@ "fields": { "name": "Giant Slayer (Rapier)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -4622,11 +4622,11 @@ "fields": { "name": "Giant Slayer (Shortsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -4641,11 +4641,11 @@ "fields": { "name": "Glaive", "desc": "A glaive.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": "glaive", "armor": null, @@ -4660,17 +4660,17 @@ "fields": { "name": "Glaive (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4679,17 +4679,17 @@ "fields": { "name": "Glaive (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4698,17 +4698,17 @@ "fields": { "name": "Glaive (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "glaive", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4717,17 +4717,17 @@ "fields": { "name": "Glamoured Studded Leather", "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "studded-leather", "category": "armor", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4736,11 +4736,11 @@ "fields": { "name": "Glassblower's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": null, "armor": null, @@ -4755,17 +4755,17 @@ "fields": { "name": "Gloves of Missile Snaring", "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4774,17 +4774,17 @@ "fields": { "name": "Gloves of Swimming and Climbing", "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4793,11 +4793,11 @@ "fields": { "name": "Goat", "desc": "One goat.", - "size": 3, + "document": "srd", + "size": "medium", "weight": "75.000", "armor_class": 10, "hit_points": 4, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -4812,17 +4812,17 @@ "fields": { "name": "Goggles of Night", "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4831,11 +4831,11 @@ "fields": { "name": "Gold Piece", "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -4850,11 +4850,11 @@ "fields": { "name": "Grappling hook", "desc": "A grappling hook.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -4869,11 +4869,11 @@ "fields": { "name": "Greataxe", "desc": "A greataxe.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "7.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": "greataxe", "armor": null, @@ -4888,17 +4888,17 @@ "fields": { "name": "Greataxe (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4907,17 +4907,17 @@ "fields": { "name": "Greataxe (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -4926,17 +4926,17 @@ "fields": { "name": "Greataxe (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greataxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -4945,11 +4945,11 @@ "fields": { "name": "Greatclub", "desc": "A greatclub.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.20", "weapon": "greatclub", "armor": null, @@ -4964,17 +4964,17 @@ "fields": { "name": "Greatclub (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatclub", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -4983,17 +4983,17 @@ "fields": { "name": "Greatclub (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatclub", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5002,17 +5002,17 @@ "fields": { "name": "Greatclub (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatclub", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5021,11 +5021,11 @@ "fields": { "name": "Greatsword", "desc": "A great sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": "greatsword", "armor": null, @@ -5040,17 +5040,17 @@ "fields": { "name": "Greatsword (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5059,17 +5059,17 @@ "fields": { "name": "Greatsword (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5078,17 +5078,17 @@ "fields": { "name": "Greatsword (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5097,11 +5097,11 @@ "fields": { "name": "Halberd", "desc": "A halberd.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": "halberd", "armor": null, @@ -5116,17 +5116,17 @@ "fields": { "name": "Halberd (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5135,17 +5135,17 @@ "fields": { "name": "Halberd (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5154,17 +5154,17 @@ "fields": { "name": "Halberd (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "halberd", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5173,11 +5173,11 @@ "fields": { "name": "Half plate", "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "40.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "750.00", "weapon": null, "armor": "half-plate", @@ -5192,11 +5192,11 @@ "fields": { "name": "Hammer", "desc": "A hammer.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -5211,11 +5211,11 @@ "fields": { "name": "Hammer of Thunderbolts", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "maul", "armor": null, @@ -5230,11 +5230,11 @@ "fields": { "name": "Hammer, sledge", "desc": "A sledgehammer", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -5249,11 +5249,11 @@ "fields": { "name": "Handaxe", "desc": "A handaxe.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "handaxe", "armor": null, @@ -5268,17 +5268,17 @@ "fields": { "name": "Handaxe (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5287,17 +5287,17 @@ "fields": { "name": "Handaxe (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5306,17 +5306,17 @@ "fields": { "name": "Handaxe (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "handaxe", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5325,17 +5325,17 @@ "fields": { "name": "Handy Haversack", "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5344,17 +5344,17 @@ "fields": { "name": "Hat of Disguise", "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5363,17 +5363,17 @@ "fields": { "name": "Headband of Intellect", "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5382,11 +5382,11 @@ "fields": { "name": "Healer's Kit", "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -5401,17 +5401,17 @@ "fields": { "name": "Helm of Brilliance", "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5420,17 +5420,17 @@ "fields": { "name": "Helm of Comprehending Languages", "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5439,17 +5439,17 @@ "fields": { "name": "Helm of Telepathy", "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5458,17 +5458,17 @@ "fields": { "name": "Helm of Teleportation", "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5477,11 +5477,11 @@ "fields": { "name": "Herbalism Kit", "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -5496,11 +5496,11 @@ "fields": { "name": "Hide Armor", "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "12.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": "hide", @@ -5515,11 +5515,11 @@ "fields": { "name": "Holy Avenger (Greatsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -5534,11 +5534,11 @@ "fields": { "name": "Holy Avenger (Longsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -5553,11 +5553,11 @@ "fields": { "name": "Holy Avenger (Rapier)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -5572,11 +5572,11 @@ "fields": { "name": "Holy Avenger (Shortsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -5591,11 +5591,11 @@ "fields": { "name": "Holy Water (flask)", "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -5610,11 +5610,11 @@ "fields": { "name": "Horn", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "3.00", "weapon": null, "armor": null, @@ -5629,17 +5629,17 @@ "fields": { "name": "Horn of Blasting", "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5648,17 +5648,17 @@ "fields": { "name": "Horn of Valhalla (Brass)", "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5667,17 +5667,17 @@ "fields": { "name": "Horn of Valhalla (Bronze)", "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5686,17 +5686,17 @@ "fields": { "name": "Horn of Valhalla (Iron)", "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -5705,17 +5705,17 @@ "fields": { "name": "Horn of Valhalla (silver)", "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5724,17 +5724,17 @@ "fields": { "name": "Horseshoes of a Zephyr", "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5743,17 +5743,17 @@ "fields": { "name": "Horseshoes of Speed", "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5762,11 +5762,11 @@ "fields": { "name": "Hourglass", "desc": "An hourglass.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -5781,11 +5781,11 @@ "fields": { "name": "Hunting Trap", "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "25.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -5800,17 +5800,17 @@ "fields": { "name": "Immovable Rod", "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -5819,11 +5819,11 @@ "fields": { "name": "Ink (1 ounce bottle)", "desc": "A bottle of ink.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -5838,11 +5838,11 @@ "fields": { "name": "Ink pen", "desc": "A pen for writing with ink.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -5857,17 +5857,17 @@ "fields": { "name": "Instant Fortress", "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -5876,17 +5876,17 @@ "fields": { "name": "Ioun Stone (Absorption)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\r\n\r\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\r\n\r\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\r\n\r\n**_Absorption (Very Rare)_**. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\r\n\r\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5895,17 +5895,17 @@ "fields": { "name": "Ioun Stone (Agility)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5914,17 +5914,17 @@ "fields": { "name": "Ioun Stone (Awareness)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -5933,17 +5933,17 @@ "fields": { "name": "Ioun Stone (Absorption)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5952,17 +5952,17 @@ "fields": { "name": "Ioun Stone (Greater Absorption)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -5971,17 +5971,17 @@ "fields": { "name": "Ioun Stone (Insight)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -5990,17 +5990,17 @@ "fields": { "name": "Ioun Stone (Intellect)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6009,17 +6009,17 @@ "fields": { "name": "Ioun Stone (Leadership)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6028,17 +6028,17 @@ "fields": { "name": "Ioun Stone (Mastery)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -6047,17 +6047,17 @@ "fields": { "name": "Ioun Stone (Protection)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6066,17 +6066,17 @@ "fields": { "name": "Ioun Stone (Regeneration)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -6085,17 +6085,17 @@ "fields": { "name": "Ioun Stone (Reserve)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6104,17 +6104,17 @@ "fields": { "name": "Ioun Stone (Strength)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6123,17 +6123,17 @@ "fields": { "name": "Ioun Stone (Sustenance)", "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 24, "hit_points": 10, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -6142,17 +6142,17 @@ "fields": { "name": "Iron Bands of Binding", "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6161,17 +6161,17 @@ "fields": { "name": "Iron Flask", "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -6180,11 +6180,11 @@ "fields": { "name": "Javelin", "desc": "A javelin", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": "javelin", "armor": null, @@ -6199,17 +6199,17 @@ "fields": { "name": "Javelin (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6218,17 +6218,17 @@ "fields": { "name": "Javelin (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6237,17 +6237,17 @@ "fields": { "name": "Javelin (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "javelin", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6256,11 +6256,11 @@ "fields": { "name": "Javelin of Lightning", "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "javelin", "armor": null, @@ -6275,11 +6275,11 @@ "fields": { "name": "Jeweler's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -6294,11 +6294,11 @@ "fields": { "name": "Jug or pitcher", "desc": "For drinking a lot. Capacity: 1 gallon liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -6313,11 +6313,11 @@ "fields": { "name": "Keelboat", "desc": "Waterborne vehicle. Speed is 1mph.", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "3000.00", "weapon": null, "armor": null, @@ -6332,11 +6332,11 @@ "fields": { "name": "Ladder (10-foot)", "desc": "A 10 foot ladder.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "25.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -6351,11 +6351,11 @@ "fields": { "name": "Lamp", "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -6370,11 +6370,11 @@ "fields": { "name": "Lamp oil (flask)", "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -6389,11 +6389,11 @@ "fields": { "name": "Lance", "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "lance", "armor": null, @@ -6408,17 +6408,17 @@ "fields": { "name": "Lance (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6427,17 +6427,17 @@ "fields": { "name": "Lance (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6446,17 +6446,17 @@ "fields": { "name": "Lance (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "lance", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6465,11 +6465,11 @@ "fields": { "name": "Lantern, Bullseye", "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -6484,11 +6484,11 @@ "fields": { "name": "Lantern, Hooded", "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -6503,17 +6503,17 @@ "fields": { "name": "Lantern of Revealing", "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6522,11 +6522,11 @@ "fields": { "name": "Leather Armor", "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": "leather", @@ -6541,11 +6541,11 @@ "fields": { "name": "Leatherworker's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -6560,11 +6560,11 @@ "fields": { "name": "Light hammer", "desc": "A light hammer.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": "light-hammer", "armor": null, @@ -6579,17 +6579,17 @@ "fields": { "name": "Light-Hammer (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6598,17 +6598,17 @@ "fields": { "name": "Light-Hammer (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6617,17 +6617,17 @@ "fields": { "name": "Light-Hammer (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6636,11 +6636,11 @@ "fields": { "name": "Lock", "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -6655,11 +6655,11 @@ "fields": { "name": "Longbow", "desc": "A longbow.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": "longbow", "armor": null, @@ -6674,17 +6674,17 @@ "fields": { "name": "Longbow (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6693,17 +6693,17 @@ "fields": { "name": "Longbow (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6712,17 +6712,17 @@ "fields": { "name": "Longbow (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6731,11 +6731,11 @@ "fields": { "name": "Longship", "desc": "Waterborne vehicle. Speed 3mph.", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10000.00", "weapon": null, "armor": null, @@ -6750,11 +6750,11 @@ "fields": { "name": "Longsword", "desc": "A longsword", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": "longsword", "armor": null, @@ -6769,17 +6769,17 @@ "fields": { "name": "Longsword (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6788,17 +6788,17 @@ "fields": { "name": "Longsword (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6807,17 +6807,17 @@ "fields": { "name": "Longsword (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -6826,11 +6826,11 @@ "fields": { "name": "Luck Blade (Greatsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -6845,11 +6845,11 @@ "fields": { "name": "Luck Blade (Longsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -6864,11 +6864,11 @@ "fields": { "name": "Luck Blade (Rapier)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -6883,11 +6883,11 @@ "fields": { "name": "Luck Blade (Shortsword)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -6902,11 +6902,11 @@ "fields": { "name": "Lute", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "35.00", "weapon": null, "armor": null, @@ -6921,11 +6921,11 @@ "fields": { "name": "Lyre", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": null, "armor": null, @@ -6940,11 +6940,11 @@ "fields": { "name": "Mace", "desc": "A mace.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "mace", "armor": null, @@ -6959,17 +6959,17 @@ "fields": { "name": "Mace (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -6978,17 +6978,17 @@ "fields": { "name": "Mace (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -6997,17 +6997,17 @@ "fields": { "name": "Mace (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7016,11 +7016,11 @@ "fields": { "name": "Mace of Disruption", "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, @@ -7035,11 +7035,11 @@ "fields": { "name": "Mace of Smiting", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, @@ -7054,11 +7054,11 @@ "fields": { "name": "Mace of Terror", "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, @@ -7073,11 +7073,11 @@ "fields": { "name": "Magnifying Glass", "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "100.00", "weapon": null, "armor": null, @@ -7092,11 +7092,11 @@ "fields": { "name": "Malice", "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "250.00", "weapon": null, "armor": null, @@ -7111,11 +7111,11 @@ "fields": { "name": "Manacles", "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 15, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -7130,17 +7130,17 @@ "fields": { "name": "Mantle of Spell Resistance", "desc": "You have advantage on saving throws against spells while you wear this cloak.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -7149,17 +7149,17 @@ "fields": { "name": "Manual of Bodily Health", "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7168,17 +7168,17 @@ "fields": { "name": "Manual of Gainful Exercise", "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7187,17 +7187,17 @@ "fields": { "name": "Manual of Golems", "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7206,17 +7206,17 @@ "fields": { "name": "Manual of Quickness of Action", "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7225,17 +7225,17 @@ "fields": { "name": "Marvelous Pigments", "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7244,11 +7244,11 @@ "fields": { "name": "Mason's Tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "8.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -7263,11 +7263,11 @@ "fields": { "name": "Maul", "desc": "A maul.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "maul", "armor": null, @@ -7282,17 +7282,17 @@ "fields": { "name": "Maul (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "maul", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7301,17 +7301,17 @@ "fields": { "name": "Maul (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "maul", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7320,17 +7320,17 @@ "fields": { "name": "Maul (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "maul", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7339,17 +7339,17 @@ "fields": { "name": "Medallion of Thoughts", "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7358,11 +7358,11 @@ "fields": { "name": "Mess Kit", "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.20", "weapon": null, "armor": null, @@ -7377,11 +7377,11 @@ "fields": { "name": "Midnight tears", "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1500.00", "weapon": null, "armor": null, @@ -7396,17 +7396,17 @@ "fields": { "name": "Mirror of Life Trapping", "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7415,11 +7415,11 @@ "fields": { "name": "Mirror, steel", "desc": "A mirror.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.500", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -7434,17 +7434,17 @@ "fields": { "name": "Mithral Armor (Breastplate)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "breastplate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7453,17 +7453,17 @@ "fields": { "name": "Mithral Armor (Chain-Mail)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "chain-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7472,17 +7472,17 @@ "fields": { "name": "Mithral Armor (Chain-Shirt)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "chain-shirt", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7491,17 +7491,17 @@ "fields": { "name": "Mithral Armor (Half-Plate)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "half-plate", "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7510,17 +7510,17 @@ "fields": { "name": "Mithral Armor (Hide)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "hide", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7529,17 +7529,17 @@ "fields": { "name": "Mithral Armor (Plate)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7548,17 +7548,17 @@ "fields": { "name": "Mithral Armor (Ring-Mail)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "ring-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7567,17 +7567,17 @@ "fields": { "name": "Mithral Armor (Scale-Mail)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "scale-mail", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7586,17 +7586,17 @@ "fields": { "name": "Mithral Armor (Splint)", "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "splint", "category": "armor", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7605,11 +7605,11 @@ "fields": { "name": "Morningstar", "desc": "A morningstar", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": "morningstar", "armor": null, @@ -7624,17 +7624,17 @@ "fields": { "name": "Morningstar (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7643,17 +7643,17 @@ "fields": { "name": "Morningstar (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7662,17 +7662,17 @@ "fields": { "name": "Morningstar (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "morningstar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7681,11 +7681,11 @@ "fields": { "name": "Navigator's tools", "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -7700,17 +7700,17 @@ "fields": { "name": "Necklace of Adaptation", "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7719,17 +7719,17 @@ "fields": { "name": "Necklace of Fireballs", "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7738,17 +7738,17 @@ "fields": { "name": "Necklace of Prayer Beads", "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7757,11 +7757,11 @@ "fields": { "name": "Net", "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": "net", "armor": null, @@ -7776,17 +7776,17 @@ "fields": { "name": "Net (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "net", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7795,17 +7795,17 @@ "fields": { "name": "Net (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "net", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7814,17 +7814,17 @@ "fields": { "name": "Net (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "net", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7833,11 +7833,11 @@ "fields": { "name": "Nine Lives Stealer (Greatsword)", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -7852,11 +7852,11 @@ "fields": { "name": "Nine Lives Stealer (Longsword)", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -7871,11 +7871,11 @@ "fields": { "name": "Nine Lives Stealer (Rapier)", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -7890,11 +7890,11 @@ "fields": { "name": "Nine Lives Stealer (Shortsword)", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -7909,11 +7909,11 @@ "fields": { "name": "Oathbow", "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longbow", "armor": null, @@ -7928,17 +7928,17 @@ "fields": { "name": "Oil of Etherealness", "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -7947,17 +7947,17 @@ "fields": { "name": "Oil of Sharpness", "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -7966,17 +7966,17 @@ "fields": { "name": "Oil of Slipperiness", "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -7985,11 +7985,11 @@ "fields": { "name": "Oil of taggit", "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "400.00", "weapon": null, "armor": null, @@ -8004,11 +8004,11 @@ "fields": { "name": "Orb", "desc": "Can be used as an Arcane Focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": null, "armor": null, @@ -8023,17 +8023,17 @@ "fields": { "name": "Orb of Dragonkind", "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 6 + "rarity": "artifact" } }, { @@ -8042,11 +8042,11 @@ "fields": { "name": "Ox", "desc": "One ox.", - "size": 4, + "document": "srd", + "size": "large", "weight": "1500.000", "armor_class": 10, "hit_points": 15, - "document": "srd", "cost": "15.00", "weapon": null, "armor": null, @@ -8061,11 +8061,11 @@ "fields": { "name": "Padded Armor", "desc": "Padded armor consists of quilted layers of cloth and batting.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "8.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": "padded", @@ -8080,11 +8080,11 @@ "fields": { "name": "Painter's Supplies", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -8099,11 +8099,11 @@ "fields": { "name": "Pale tincture", "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "250.00", "weapon": null, "armor": null, @@ -8118,11 +8118,11 @@ "fields": { "name": "Pan flute", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "12.00", "weapon": null, "armor": null, @@ -8137,11 +8137,11 @@ "fields": { "name": "Paper (one sheet)", "desc": "A sheet of paper", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.20", "weapon": null, "armor": null, @@ -8156,11 +8156,11 @@ "fields": { "name": "Parchment (one sheet)", "desc": "A sheet of parchment", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -8175,17 +8175,17 @@ "fields": { "name": "Pearl of Power", "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8194,11 +8194,11 @@ "fields": { "name": "Perfume (vial)", "desc": "A vial of perfume.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -8213,17 +8213,17 @@ "fields": { "name": "Periapt of Health", "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8232,17 +8232,17 @@ "fields": { "name": "Periapt of Proof against Poison", "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8251,17 +8251,17 @@ "fields": { "name": "Periapt of Wound Closure", "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8270,17 +8270,17 @@ "fields": { "name": "Philter of Love", "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8289,11 +8289,11 @@ "fields": { "name": "Pick, miner's", "desc": "A pick for mining.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -8308,11 +8308,11 @@ "fields": { "name": "Pig", "desc": "One pig.", - "size": 3, + "document": "srd", + "size": "medium", "weight": "400.000", "armor_class": 10, "hit_points": 4, - "document": "srd", "cost": "3.00", "weapon": null, "armor": null, @@ -8327,11 +8327,11 @@ "fields": { "name": "Pike", "desc": "A pike.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "18.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "pike", "armor": null, @@ -8346,17 +8346,17 @@ "fields": { "name": "Pike (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8365,17 +8365,17 @@ "fields": { "name": "Pike (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8384,17 +8384,17 @@ "fields": { "name": "Pike (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "pike", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8403,17 +8403,17 @@ "fields": { "name": "Pipes of Haunting", "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8422,17 +8422,17 @@ "fields": { "name": "Pipes of the Sewers", "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8441,11 +8441,11 @@ "fields": { "name": "Piton", "desc": "A piton for climbing.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.250", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -8460,11 +8460,11 @@ "fields": { "name": "Plate Armor", "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "65.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1500.00", "weapon": null, "armor": "plate", @@ -8479,17 +8479,17 @@ "fields": { "name": "Plate Armor of Etherealness", "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": "plate", "category": "armor", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -8498,11 +8498,11 @@ "fields": { "name": "Playing card set", "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -8517,11 +8517,11 @@ "fields": { "name": "Poison, Basic", "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "100.00", "weapon": null, "armor": null, @@ -8536,11 +8536,11 @@ "fields": { "name": "Poisoner's kit", "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -8555,11 +8555,11 @@ "fields": { "name": "Pole (10-foot)", "desc": "A 10 foot pole.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "7.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -8574,17 +8574,17 @@ "fields": { "name": "Portable Hole", "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8593,11 +8593,11 @@ "fields": { "name": "Pot, iron", "desc": "An iron pot. Capacity: 1 gallon liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -8612,17 +8612,17 @@ "fields": { "name": "Potion of Animal Friendship", "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8631,17 +8631,17 @@ "fields": { "name": "Potion of Clairvoyance", "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8650,17 +8650,17 @@ "fields": { "name": "Potion of Climbing", "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8669,17 +8669,17 @@ "fields": { "name": "Potion of Cloud Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8688,17 +8688,17 @@ "fields": { "name": "Potion of Diminution", "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8707,17 +8707,17 @@ "fields": { "name": "Potion of Fire Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8726,17 +8726,17 @@ "fields": { "name": "Potion of Flying", "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8745,17 +8745,17 @@ "fields": { "name": "Potion of Frost Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8764,17 +8764,17 @@ "fields": { "name": "Potion of Gaseous Form", "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8783,17 +8783,17 @@ "fields": { "name": "Potion of Greater Healing", "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8802,17 +8802,17 @@ "fields": { "name": "Potion of Growth", "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8821,17 +8821,17 @@ "fields": { "name": "Potion of Healing", "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.500", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -8840,17 +8840,17 @@ "fields": { "name": "Potion of Heroism", "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8859,17 +8859,17 @@ "fields": { "name": "Potion of Hill Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8878,17 +8878,17 @@ "fields": { "name": "Potion of Invisibility", "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8897,17 +8897,17 @@ "fields": { "name": "Potion of Mind Reading", "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8916,17 +8916,17 @@ "fields": { "name": "Potion of Poison", "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8935,17 +8935,17 @@ "fields": { "name": "Potion of Resistance", "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\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 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -8954,17 +8954,17 @@ "fields": { "name": "Potion of Speed", "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -8973,17 +8973,17 @@ "fields": { "name": "Potion of Stone Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -8992,17 +8992,17 @@ "fields": { "name": "Potion of Storm Giant Strength", "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9011,17 +9011,17 @@ "fields": { "name": "Potion of Superior Healing", "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9030,17 +9030,17 @@ "fields": { "name": "Potion of Supreme Healing", "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9049,17 +9049,17 @@ "fields": { "name": "Potion of Water Breathing", "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "potion", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9068,11 +9068,11 @@ "fields": { "name": "Potter's tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -9087,11 +9087,11 @@ "fields": { "name": "Pouch", "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -9106,11 +9106,11 @@ "fields": { "name": "Platinum Piece", "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -9125,11 +9125,11 @@ "fields": { "name": "Purple worm poison", "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2000.00", "weapon": null, "armor": null, @@ -9144,17 +9144,17 @@ "fields": { "name": "Quarterstaff (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9163,17 +9163,17 @@ "fields": { "name": "Quarterstaff (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9182,17 +9182,17 @@ "fields": { "name": "Quarterstaff (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9201,11 +9201,11 @@ "fields": { "name": "Quarterstaff", "desc": "A quarterstaff.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.20", "weapon": "quarterstaff", "armor": null, @@ -9220,11 +9220,11 @@ "fields": { "name": "Quiver", "desc": "A quiver can hold up to 20 arrows.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -9239,11 +9239,11 @@ "fields": { "name": "Ram, Portable", "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "35.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "4.00", "weapon": null, "armor": null, @@ -9258,11 +9258,11 @@ "fields": { "name": "Rapier", "desc": "A rapier.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": "rapier", "armor": null, @@ -9277,17 +9277,17 @@ "fields": { "name": "Rapier (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9296,17 +9296,17 @@ "fields": { "name": "Rapier (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9315,17 +9315,17 @@ "fields": { "name": "Rapier (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9334,11 +9334,11 @@ "fields": { "name": "Rations (1 day)", "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -9353,11 +9353,11 @@ "fields": { "name": "Reliquary", "desc": "Can be used as a holy symbol.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -9372,17 +9372,17 @@ "fields": { "name": "Restorative Ointment", "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9391,11 +9391,11 @@ "fields": { "name": "Ring mail", "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "40.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": null, "armor": "ring-mail", @@ -9410,17 +9410,17 @@ "fields": { "name": "Ring of Animal Influence", "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -9429,17 +9429,17 @@ "fields": { "name": "Ring of Djinni Summoning", "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9448,17 +9448,17 @@ "fields": { "name": "Ring of Elemental Command", "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9467,17 +9467,17 @@ "fields": { "name": "Ring of Evasion", "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9486,17 +9486,17 @@ "fields": { "name": "Ring of Feather Falling", "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9505,17 +9505,17 @@ "fields": { "name": "Ring of Free Action", "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9524,17 +9524,17 @@ "fields": { "name": "Ring of Invisibility", "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9543,17 +9543,17 @@ "fields": { "name": "Ring of Jumping", "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9562,17 +9562,17 @@ "fields": { "name": "Ring of Mind Shielding", "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9581,17 +9581,17 @@ "fields": { "name": "Ring of Protection", "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9600,17 +9600,17 @@ "fields": { "name": "Ring of Regeneration", "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9619,17 +9619,17 @@ "fields": { "name": "Ring of Resistance", "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9638,17 +9638,17 @@ "fields": { "name": "Ring of Shooting Stars", "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9657,17 +9657,17 @@ "fields": { "name": "Ring of Spell Storing", "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9676,17 +9676,17 @@ "fields": { "name": "Ring of Spell Turning", "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9695,17 +9695,17 @@ "fields": { "name": "Ring of Swimming", "desc": "You have a swimming speed of 40 feet while wearing this ring.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9714,17 +9714,17 @@ "fields": { "name": "Ring of Telekinesis", "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9733,17 +9733,17 @@ "fields": { "name": "Ring of the Ram", "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9752,17 +9752,17 @@ "fields": { "name": "Ring of Three Wishes", "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9771,17 +9771,17 @@ "fields": { "name": "Ring of Warmth", "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9790,17 +9790,17 @@ "fields": { "name": "Ring of Water Walking", "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9809,17 +9809,17 @@ "fields": { "name": "Ring of X-ray Vision", "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "ring", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9828,17 +9828,17 @@ "fields": { "name": "Robe of Eyes", "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -9847,17 +9847,17 @@ "fields": { "name": "Robe of Scintillating Colors", "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9866,17 +9866,17 @@ "fields": { "name": "Robe of Stars", "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9885,17 +9885,17 @@ "fields": { "name": "Robe of the Archmagi", "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -9904,17 +9904,17 @@ "fields": { "name": "Robe of Useful Items", "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -9923,11 +9923,11 @@ "fields": { "name": "Robes", "desc": "Robes, for wearing.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -9942,11 +9942,11 @@ "fields": { "name": "Rod", "desc": "Can be used as an arcane focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -9961,17 +9961,17 @@ "fields": { "name": "Rod of Absorption", "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9980,17 +9980,17 @@ "fields": { "name": "Rod of Alertness", "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -9999,17 +9999,17 @@ "fields": { "name": "Rod of Lordly Might", "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -10018,17 +10018,17 @@ "fields": { "name": "Rod of Rulership", "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10037,17 +10037,17 @@ "fields": { "name": "Rod of Security", "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "rod", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10056,11 +10056,11 @@ "fields": { "name": "Rope, hempen (50 feet)", "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 2, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -10075,17 +10075,17 @@ "fields": { "name": "Rope of Climbing", "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10094,17 +10094,17 @@ "fields": { "name": "Rope of Entanglement", "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10113,11 +10113,11 @@ "fields": { "name": "Rope, silk (50 feet)", "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -10132,11 +10132,11 @@ "fields": { "name": "Rowboat", "desc": "Waterborne vehicle. Speed 1.5mph", - "size": 4, + "document": "srd", + "size": "large", "weight": "100.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -10151,11 +10151,11 @@ "fields": { "name": "Sack", "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.500", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -10170,11 +10170,11 @@ "fields": { "name": "Sailing Ship", "desc": "Waterborne vehicle. Speed 2mph", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10000.00", "weapon": null, "armor": null, @@ -10189,11 +10189,11 @@ "fields": { "name": "Scale mail", "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "45.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": "scale-mail", @@ -10208,11 +10208,11 @@ "fields": { "name": "Scale, Merchant's", "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -10227,17 +10227,17 @@ "fields": { "name": "Scarab of Protection", "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -10246,11 +10246,11 @@ "fields": { "name": "Scimitar", "desc": "A scimitar.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": "scimitar", "armor": null, @@ -10265,17 +10265,17 @@ "fields": { "name": "Scimitar (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10284,17 +10284,17 @@ "fields": { "name": "Scimitar (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10303,17 +10303,17 @@ "fields": { "name": "Scimitar (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10322,11 +10322,11 @@ "fields": { "name": "Scimitar of Speed", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, @@ -10341,11 +10341,11 @@ "fields": { "name": "Sealing wax", "desc": "For sealing written letters.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -10360,11 +10360,11 @@ "fields": { "name": "Serpent venom", "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "200.00", "weapon": null, "armor": null, @@ -10379,11 +10379,11 @@ "fields": { "name": "Shawm", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -10398,11 +10398,11 @@ "fields": { "name": "Sheep", "desc": "One sheep.", - "size": 3, + "document": "srd", + "size": "medium", "weight": "75.000", "armor_class": 10, "hit_points": 4, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -10417,11 +10417,11 @@ "fields": { "name": "Shield", "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "6.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -10436,17 +10436,17 @@ "fields": { "name": "Shield of Missile Attraction", "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "shield", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -10455,11 +10455,11 @@ "fields": { "name": "Shortbow", "desc": "A shortbow", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": "shortbow", "armor": null, @@ -10474,17 +10474,17 @@ "fields": { "name": "Shortbow (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10493,17 +10493,17 @@ "fields": { "name": "Shortbow (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10512,17 +10512,17 @@ "fields": { "name": "Shortbow (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortbow", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10531,11 +10531,11 @@ "fields": { "name": "Shortsword", "desc": "A short sword.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": "shortsword", "armor": null, @@ -10550,17 +10550,17 @@ "fields": { "name": "Shortsword (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10569,17 +10569,17 @@ "fields": { "name": "Shortsword (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10588,17 +10588,17 @@ "fields": { "name": "Shortsword (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10607,11 +10607,11 @@ "fields": { "name": "Shovel", "desc": "A shovel.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -10626,11 +10626,11 @@ "fields": { "name": "Sickle", "desc": "A sickle.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": "sickle", "armor": null, @@ -10645,17 +10645,17 @@ "fields": { "name": "Sickle (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10664,17 +10664,17 @@ "fields": { "name": "Sickle (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10683,17 +10683,17 @@ "fields": { "name": "Sickle (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sickle", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10702,11 +10702,11 @@ "fields": { "name": "Signal whistle", "desc": "For signalling.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.05", "weapon": null, "armor": null, @@ -10721,11 +10721,11 @@ "fields": { "name": "Signet Ring", "desc": "A ring with a signet on it.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": null, "armor": null, @@ -10740,11 +10740,11 @@ "fields": { "name": "Sled", "desc": "Drawn vehicle", - "size": 4, + "document": "srd", + "size": "large", "weight": "300.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": null, "armor": null, @@ -10759,11 +10759,11 @@ "fields": { "name": "Sling", "desc": "A sling.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": "sling", "armor": null, @@ -10778,17 +10778,17 @@ "fields": { "name": "Sling (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sling", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10797,17 +10797,17 @@ "fields": { "name": "Sling (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sling", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -10816,17 +10816,17 @@ "fields": { "name": "Sling (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sling", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -10835,11 +10835,11 @@ "fields": { "name": "Sling bullets", "desc": "Technically their cost is 20 for 4cp.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.075", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -10854,17 +10854,17 @@ "fields": { "name": "Slippers of Spider Climbing", "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10873,11 +10873,11 @@ "fields": { "name": "Smith's tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "8.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "20.00", "weapon": null, "armor": null, @@ -10892,11 +10892,11 @@ "fields": { "name": "Soap", "desc": "For cleaning.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.02", "weapon": null, "armor": null, @@ -10911,17 +10911,17 @@ "fields": { "name": "Sovereign Glue", "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -10930,11 +10930,11 @@ "fields": { "name": "Silver Piece", "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.020", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -10949,11 +10949,11 @@ "fields": { "name": "Spear", "desc": "A spear.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": "spear", "armor": null, @@ -10968,17 +10968,17 @@ "fields": { "name": "Spear (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -10987,17 +10987,17 @@ "fields": { "name": "Spear (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11006,17 +11006,17 @@ "fields": { "name": "Spear (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "spear", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11025,17 +11025,17 @@ "fields": { "name": "Spell Scroll (1st Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -11044,17 +11044,17 @@ "fields": { "name": "Spell Scroll (2nd Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11063,17 +11063,17 @@ "fields": { "name": "Spell Scroll (3rd Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11082,17 +11082,17 @@ "fields": { "name": "Spell Scroll (4th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11101,17 +11101,17 @@ "fields": { "name": "Spell Scroll (5th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11120,17 +11120,17 @@ "fields": { "name": "Spell Scroll (6th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11139,17 +11139,17 @@ "fields": { "name": "Spell Scroll (7th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11158,17 +11158,17 @@ "fields": { "name": "Spell Scroll (8th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11177,17 +11177,17 @@ "fields": { "name": "Spell Scroll (9th Level)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11196,17 +11196,17 @@ "fields": { "name": "Spell Scroll (Cantrip)", "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "scroll", "requires_attunement": false, - "rarity": 1 + "rarity": "common" } }, { @@ -11215,11 +11215,11 @@ "fields": { "name": "Spellbook", "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -11234,17 +11234,17 @@ "fields": { "name": "Spellguard Shield", "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "shield", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11253,17 +11253,17 @@ "fields": { "name": "Sphere of Annihilation", "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11272,11 +11272,11 @@ "fields": { "name": "Spike, iron", "desc": "An iron spike.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.500", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.10", "weapon": null, "armor": null, @@ -11291,11 +11291,11 @@ "fields": { "name": "Splint Armor", "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "60.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "200.00", "weapon": null, "armor": "splint", @@ -11310,11 +11310,11 @@ "fields": { "name": "Sprig of mistletoe", "desc": "A sprig of mistletoe that can be used as a druidic focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -11329,11 +11329,11 @@ "fields": { "name": "Spyglass", "desc": "Objects viewed through a spyglass are magnified to twice their size.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1000.00", "weapon": null, "armor": null, @@ -11348,11 +11348,11 @@ "fields": { "name": "Staff", "desc": "Can be used as an arcane focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "quarterstaff", "armor": null, @@ -11367,17 +11367,17 @@ "fields": { "name": "Staff of Charming", "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11386,17 +11386,17 @@ "fields": { "name": "Staff of Fire", "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11405,17 +11405,17 @@ "fields": { "name": "Staff of Frost", "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11424,17 +11424,17 @@ "fields": { "name": "Staff of Healing", "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11443,17 +11443,17 @@ "fields": { "name": "Staff of Power", "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11462,17 +11462,17 @@ "fields": { "name": "Staff of Striking", "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11481,17 +11481,17 @@ "fields": { "name": "Staff of Swarming Insects", "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11500,17 +11500,17 @@ "fields": { "name": "Staff of the Magi", "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11519,17 +11519,17 @@ "fields": { "name": "Staff of the Python", "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11538,17 +11538,17 @@ "fields": { "name": "Staff of the Woodlands", "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11557,17 +11557,17 @@ "fields": { "name": "Staff of Thunder and Lightning", "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -11576,17 +11576,17 @@ "fields": { "name": "Staff of Withering", "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "staff", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11595,17 +11595,17 @@ "fields": { "name": "Stone of Controlling Earth Elementals", "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -11614,17 +11614,17 @@ "fields": { "name": "Stone of Good Luck (Luckstone)", "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -11633,11 +11633,11 @@ "fields": { "name": "Studded Leather Armor", "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "13.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "45.00", "weapon": null, "armor": "studded-leather", @@ -11652,11 +11652,11 @@ "fields": { "name": "Sun Blade", "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -11671,11 +11671,11 @@ "fields": { "name": "Sword of Life Stealing (Greatsword)", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -11690,11 +11690,11 @@ "fields": { "name": "Sword of Life Stealing (Longsword)", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -11709,11 +11709,11 @@ "fields": { "name": "Sword of Life Stealing (Rapier)", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -11728,11 +11728,11 @@ "fields": { "name": "Sword of Life Stealing (Shortsword)", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -11747,11 +11747,11 @@ "fields": { "name": "Sword of Sharpness (Greatsword)", "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -11766,11 +11766,11 @@ "fields": { "name": "Sword of Sharpness (Longsword)", "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -11785,11 +11785,11 @@ "fields": { "name": "Sword of Sharpness (Scimitar)", "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, @@ -11804,11 +11804,11 @@ "fields": { "name": "Sword of Sharpness (Shortsword)", "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -11823,11 +11823,11 @@ "fields": { "name": "Sword of Wounding (Greatsword)", "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -11842,11 +11842,11 @@ "fields": { "name": "Sword of Wounding (Longsword)", "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -11861,11 +11861,11 @@ "fields": { "name": "Sword of Wounding (Rapier)", "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -11880,11 +11880,11 @@ "fields": { "name": "Sword of Wounding (Shortsword)", "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -11899,17 +11899,17 @@ "fields": { "name": "Talisman of Pure Good", "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11918,17 +11918,17 @@ "fields": { "name": "Talisman of the Sphere", "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11937,17 +11937,17 @@ "fields": { "name": "Talisman of Ultimate Evil", "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -11956,11 +11956,11 @@ "fields": { "name": "Tent", "desc": "A simple and portable canvas shelter, a tent sleeps two.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "20.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": null, "armor": null, @@ -11975,11 +11975,11 @@ "fields": { "name": "Thieves' tools", "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25.00", "weapon": null, "armor": null, @@ -11994,11 +11994,11 @@ "fields": { "name": "Tinderbox", "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.50", "weapon": null, "armor": null, @@ -12013,11 +12013,11 @@ "fields": { "name": "Tinker's tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "10.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "50.00", "weapon": null, "armor": null, @@ -12032,17 +12032,17 @@ "fields": { "name": "Tome of Clear Thought", "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12051,17 +12051,17 @@ "fields": { "name": "Tome of Leadership and Influence", "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12070,17 +12070,17 @@ "fields": { "name": "Tome of Understanding", "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12089,11 +12089,11 @@ "fields": { "name": "Torch", "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -12108,11 +12108,11 @@ "fields": { "name": "Torpor", "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "600.00", "weapon": null, "armor": null, @@ -12127,11 +12127,11 @@ "fields": { "name": "Totem", "desc": "Can be used as a druidic focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -12146,11 +12146,11 @@ "fields": { "name": "Trident", "desc": "A trident.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "trident", "armor": null, @@ -12165,17 +12165,17 @@ "fields": { "name": "Trident (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -12184,17 +12184,17 @@ "fields": { "name": "Trident (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -12203,17 +12203,17 @@ "fields": { "name": "Trident (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "trident", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -12222,11 +12222,11 @@ "fields": { "name": "Trident of Fish Command", "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "trident", "armor": null, @@ -12241,11 +12241,11 @@ "fields": { "name": "Truth serum", "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "150.00", "weapon": null, "armor": null, @@ -12260,17 +12260,17 @@ "fields": { "name": "Universal Solvent", "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -12279,11 +12279,11 @@ "fields": { "name": "Vial", "desc": "For holding liquids. Capacity: 4 ounces liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -12298,11 +12298,11 @@ "fields": { "name": "Vicious Weapon (Battleaxe)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "battleaxe", "armor": null, @@ -12317,11 +12317,11 @@ "fields": { "name": "Vicious Weapon (Blowgun)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "blowgun", "armor": null, @@ -12336,11 +12336,11 @@ "fields": { "name": "Vicious Weapon (Club)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "club", "armor": null, @@ -12355,11 +12355,11 @@ "fields": { "name": "Vicious Weapon (Crossbow-Hand)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-hand", "armor": null, @@ -12374,11 +12374,11 @@ "fields": { "name": "Vicious Weapon (Crossbow-Heavy)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-heavy", "armor": null, @@ -12393,11 +12393,11 @@ "fields": { "name": "Vicious Weapon (Crossbow-Light)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "crossbow-light", "armor": null, @@ -12412,11 +12412,11 @@ "fields": { "name": "Vicious Weapon (Dagger)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dagger", "armor": null, @@ -12431,11 +12431,11 @@ "fields": { "name": "Vicious Weapon (Dart)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "dart", "armor": null, @@ -12450,11 +12450,11 @@ "fields": { "name": "Vicious Weapon (Flail)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "flail", "armor": null, @@ -12469,11 +12469,11 @@ "fields": { "name": "Vicious Weapon (Glaive)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "glaive", "armor": null, @@ -12488,11 +12488,11 @@ "fields": { "name": "Vicious Weapon (Greataxe)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greataxe", "armor": null, @@ -12507,11 +12507,11 @@ "fields": { "name": "Vicious Weapon (Greatclub)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatclub", "armor": null, @@ -12526,11 +12526,11 @@ "fields": { "name": "Vicious Weapon (Greatsword)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -12545,11 +12545,11 @@ "fields": { "name": "Vicious Weapon (Halberd)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "halberd", "armor": null, @@ -12564,11 +12564,11 @@ "fields": { "name": "Vicious Weapon (Handaxe)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "handaxe", "armor": null, @@ -12583,11 +12583,11 @@ "fields": { "name": "Vicious Weapon (Javelin)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "javelin", "armor": null, @@ -12602,11 +12602,11 @@ "fields": { "name": "Vicious Weapon (Lance)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "lance", "armor": null, @@ -12621,11 +12621,11 @@ "fields": { "name": "Vicious Weapon (Light-Hammer)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "light-hammer", "armor": null, @@ -12640,11 +12640,11 @@ "fields": { "name": "Vicious Weapon (Longbow)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longbow", "armor": null, @@ -12659,11 +12659,11 @@ "fields": { "name": "Vicious Weapon (Longsword)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -12678,11 +12678,11 @@ "fields": { "name": "Vicious Weapon (Mace)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "mace", "armor": null, @@ -12697,11 +12697,11 @@ "fields": { "name": "Vicious Weapon (Maul)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "maul", "armor": null, @@ -12716,11 +12716,11 @@ "fields": { "name": "Vicious Weapon (Morningstar)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "morningstar", "armor": null, @@ -12735,11 +12735,11 @@ "fields": { "name": "Vicious Weapon (Net)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "net", "armor": null, @@ -12754,11 +12754,11 @@ "fields": { "name": "Vicious Weapon (Pike)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "pike", "armor": null, @@ -12773,11 +12773,11 @@ "fields": { "name": "Vicious Weapon (Quarterstaff)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "quarterstaff", "armor": null, @@ -12792,11 +12792,11 @@ "fields": { "name": "Vicious Weapon (Rapier)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "rapier", "armor": null, @@ -12811,11 +12811,11 @@ "fields": { "name": "Vicious Weapon (Scimitar)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, @@ -12830,11 +12830,11 @@ "fields": { "name": "Vicious Weapon (Shortbow)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortbow", "armor": null, @@ -12849,11 +12849,11 @@ "fields": { "name": "Vicious Weapon (Shortsword)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -12868,11 +12868,11 @@ "fields": { "name": "Vicious Weapon (Sickle)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sickle", "armor": null, @@ -12887,11 +12887,11 @@ "fields": { "name": "Vicious Weapon (Sling)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "sling", "armor": null, @@ -12906,11 +12906,11 @@ "fields": { "name": "Vicious Weapon (Spear)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "spear", "armor": null, @@ -12925,11 +12925,11 @@ "fields": { "name": "Vicious Weapon (Trident)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "trident", "armor": null, @@ -12944,11 +12944,11 @@ "fields": { "name": "Vicious Weapon (Warhammer)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warhammer", "armor": null, @@ -12963,11 +12963,11 @@ "fields": { "name": "Vicious Weapon (War-Pick)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warpick", "armor": null, @@ -12982,11 +12982,11 @@ "fields": { "name": "Vicious Weapon (Whip)", "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "whip", "armor": null, @@ -13001,11 +13001,11 @@ "fields": { "name": "Viol", "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "30.00", "weapon": null, "armor": null, @@ -13020,11 +13020,11 @@ "fields": { "name": "Vorpal Sword (Greatsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "greatsword", "armor": null, @@ -13039,11 +13039,11 @@ "fields": { "name": "Vorpal Sword (Longsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "longsword", "armor": null, @@ -13058,11 +13058,11 @@ "fields": { "name": "Vorpal Sword (Scimitar)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "scimitar", "armor": null, @@ -13077,11 +13077,11 @@ "fields": { "name": "Vorpal Sword (Shortsword)", "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "shortsword", "armor": null, @@ -13096,11 +13096,11 @@ "fields": { "name": "Wagon", "desc": "Drawn vehicle.", - "size": 4, + "document": "srd", + "size": "large", "weight": "400.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "35.00", "weapon": null, "armor": null, @@ -13115,11 +13115,11 @@ "fields": { "name": "Wand", "desc": "Can be used as an arcane focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, @@ -13134,17 +13134,17 @@ "fields": { "name": "Wand of Binding", "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13153,17 +13153,17 @@ "fields": { "name": "Wand of Enemy Detection", "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13172,17 +13172,17 @@ "fields": { "name": "Wand of Fear", "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13191,17 +13191,17 @@ "fields": { "name": "Wand of Fireballs", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13210,17 +13210,17 @@ "fields": { "name": "Wand of Lightning Bolts", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13229,17 +13229,17 @@ "fields": { "name": "Wand of Magic Detection", "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13248,17 +13248,17 @@ "fields": { "name": "Wand of Magic Missiles", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13267,17 +13267,17 @@ "fields": { "name": "Wand of Paralysis", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13286,17 +13286,17 @@ "fields": { "name": "Wand of Polymorph", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13305,17 +13305,17 @@ "fields": { "name": "Wand of Secrets", "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13324,17 +13324,17 @@ "fields": { "name": "Wand of the War Mage (+1)", "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13343,17 +13343,17 @@ "fields": { "name": "Wand of the War Mage (+2)", "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13362,17 +13362,17 @@ "fields": { "name": "Wand of the War Mage (+3)", "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wand", "requires_attunement": true, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13381,17 +13381,17 @@ "fields": { "name": "Wand of Web", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13400,17 +13400,17 @@ "fields": { "name": "Wand of Wonder", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": null, "armor": null, "category": "wand", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13419,11 +13419,11 @@ "fields": { "name": "War pick", "desc": "A war pick.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "warpick", "armor": null, @@ -13438,11 +13438,11 @@ "fields": { "name": "Warhammer", "desc": "A warhammer.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "15.00", "weapon": "warhammer", "armor": null, @@ -13457,17 +13457,17 @@ "fields": { "name": "Warhammer (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warhammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13476,17 +13476,17 @@ "fields": { "name": "Warhammer (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warhammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13495,17 +13495,17 @@ "fields": { "name": "Warhammer (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warhammer", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13514,11 +13514,11 @@ "fields": { "name": "War pick", "desc": "A war pick.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "2.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "warpick", "armor": null, @@ -13533,17 +13533,17 @@ "fields": { "name": "War-Pick (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13552,17 +13552,17 @@ "fields": { "name": "War-Pick (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13571,17 +13571,17 @@ "fields": { "name": "War-Pick (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "warpick", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13590,11 +13590,11 @@ "fields": { "name": "Warship", "desc": "Waterborne vehicle. Speed 2.5mph", - "size": 6, + "document": "srd", + "size": "gargantuan", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "25000.00", "weapon": null, "armor": null, @@ -13609,11 +13609,11 @@ "fields": { "name": "Waterskin", "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.20", "weapon": null, "armor": null, @@ -13628,11 +13628,11 @@ "fields": { "name": "Weaver's tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -13647,17 +13647,17 @@ "fields": { "name": "Well of Many Worlds", "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 5 + "rarity": "legendary" } }, { @@ -13666,11 +13666,11 @@ "fields": { "name": "Whetstone", "desc": "For sharpening.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.01", "weapon": null, "armor": null, @@ -13685,11 +13685,11 @@ "fields": { "name": "Whip", "desc": "A whip.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "3.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "2.00", "weapon": "whip", "armor": null, @@ -13704,17 +13704,17 @@ "fields": { "name": "Whip (+1)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13723,17 +13723,17 @@ "fields": { "name": "Whip (+2)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 3 + "rarity": "rare" } }, { @@ -13742,17 +13742,17 @@ "fields": { "name": "Whip (+3)", "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": null, "weapon": "whip", "armor": null, "category": "weapon", "requires_attunement": false, - "rarity": 4 + "rarity": "very-rare" } }, { @@ -13761,17 +13761,17 @@ "fields": { "name": "Wind Fan", "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": false, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13780,17 +13780,17 @@ "fields": { "name": "Winged Boots", "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 2 + "rarity": "uncommon" } }, { @@ -13799,17 +13799,17 @@ "fields": { "name": "Wings of Flying", "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "0.00", "weapon": null, "armor": null, "category": "wondrous-item", "requires_attunement": true, - "rarity": 3 + "rarity": "rare" } }, { @@ -13818,11 +13818,11 @@ "fields": { "name": "Woodcarver's tools", "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "5.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1.00", "weapon": null, "armor": null, @@ -13837,11 +13837,11 @@ "fields": { "name": "Wooden staff", "desc": "Can be used as a druidic focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "4.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "5.00", "weapon": "quarterstaff", "armor": null, @@ -13856,11 +13856,11 @@ "fields": { "name": "Wyvern poison", "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "0.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "1200.00", "weapon": null, "armor": null, @@ -13875,11 +13875,11 @@ "fields": { "name": "Yew wand", "desc": "Can be used as a druidic focus.", - "size": 1, + "document": "srd", + "size": "tiny", "weight": "1.000", "armor_class": 0, "hit_points": 0, - "document": "srd", "cost": "10.00", "weapon": null, "armor": null, diff --git a/data/v2/wizards-of-the-coast/srd/ItemRarity.json b/data/v2/wizards-of-the-coast/srd/ItemRarity.json new file mode 100644 index 00000000..4d842b05 --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/ItemRarity.json @@ -0,0 +1,56 @@ +[ +{ + "model": "api_v2.itemrarity", + "pk": "artifact", + "fields": { + "name": "Artifact", + "document": "srd", + "rank": 6 + } +}, +{ + "model": "api_v2.itemrarity", + "pk": "common", + "fields": { + "name": "Common", + "document": "srd", + "rank": 1 + } +}, +{ + "model": "api_v2.itemrarity", + "pk": "legendary", + "fields": { + "name": "Legendary", + "document": "srd", + "rank": 5 + } +}, +{ + "model": "api_v2.itemrarity", + "pk": "rare", + "fields": { + "name": "Rare", + "document": "srd", + "rank": 3 + } +}, +{ + "model": "api_v2.itemrarity", + "pk": "uncommon", + "fields": { + "name": "Uncommon", + "document": "srd", + "rank": 2 + } +}, +{ + "model": "api_v2.itemrarity", + "pk": "very-rare", + "fields": { + "name": "Very Rare", + "document": "srd", + "rank": 4 + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Size.json b/data/v2/wizards-of-the-coast/srd/Size.json new file mode 100644 index 00000000..0a47f8fb --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/Size.json @@ -0,0 +1,62 @@ +[ +{ + "model": "api_v2.size", + "pk": "gargantuan", + "fields": { + "name": "Gargantuan", + "document": "srd", + "rank": 6, + "space_diameter": "20.000" + } +}, +{ + "model": "api_v2.size", + "pk": "huge", + "fields": { + "name": "Huge", + "document": "srd", + "rank": 5, + "space_diameter": "15.000" + } +}, +{ + "model": "api_v2.size", + "pk": "large", + "fields": { + "name": "Large", + "document": "srd", + "rank": 4, + "space_diameter": "10.000" + } +}, +{ + "model": "api_v2.size", + "pk": "medium", + "fields": { + "name": "Medium", + "document": "srd", + "rank": 3, + "space_diameter": "5.000" + } +}, +{ + "model": "api_v2.size", + "pk": "small", + "fields": { + "name": "Small", + "document": "srd", + "rank": 2, + "space_diameter": "5.000" + } +}, +{ + "model": "api_v2.size", + "pk": "tiny", + "fields": { + "name": "Tiny", + "document": "srd", + "rank": 1, + "space_diameter": "2.500" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Spell.json b/data/v2/wizards-of-the-coast/srd/Spell.json index b3f82e32..f1f3e7c7 100644 --- a/data/v2/wizards-of-the-coast/srd/Spell.json +++ b/data/v2/wizards-of-the-coast/srd/Spell.json @@ -7,7 +7,7 @@ "desc": "A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -40,7 +40,7 @@ "desc": "You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a dexterity saving throw or take 1d6 acid damage.", "document": "srd", "level": 0, - "school": "Conjuration", + "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", @@ -71,7 +71,7 @@ "desc": "Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.", "document": "srd", "level": 2, - "school": "Abjuration", + "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", @@ -102,7 +102,7 @@ "desc": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. \n\nWhen you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible. A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping. An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "30 feet", @@ -133,7 +133,7 @@ "desc": "You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.\n\n**Aquatic Adaptation.** You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.\n\n**Change Appearance.** You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.\n\n**Natural Weapons.** You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -164,7 +164,7 @@ "desc": "This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spells ends.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -195,7 +195,7 @@ "desc": "By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals. \n\nWhen the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", "document": "srd", "level": 2, - "school": "Enchantment", + "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", @@ -226,7 +226,7 @@ "desc": "Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms. \n\nThe transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells. \n\nThe target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.", "document": "srd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -257,7 +257,7 @@ "desc": "This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics). \n\nOn each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. \n\nThe creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.", "document": "srd", "level": 3, - "school": "Necromancy", + "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", @@ -288,7 +288,7 @@ "desc": "Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points. \nAs a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.\n### Animated Object Statistics \n| Size | HP | AC | Attack | Str | Dex |\n|--------|----|----|----------------------------|-----|-----|\n| Tiny | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 |\n| Small | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 |\n| Medium | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 |\n| Large | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 |\n| Huge | 80 | 10 | +8 to hit, 2d12 + 4 damage | 18 | 6 | \n\nAn animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form. If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.", "document": "srd", "level": 5, - "school": "Transmutation", + "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", @@ -319,7 +319,7 @@ "desc": "A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration. The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier. If you move so that an affected creature is forced to pass through the barrier, the spell ends.", "document": "srd", "level": 5, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -350,7 +350,7 @@ "desc": "A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you. Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.\n\n**Targeted Effects.** Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.\n\n**Areas of Magic.** The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n\n**Spells.** Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.\n\n**Magic Items.** The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword. A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.\n\n**Magical Travel.** Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.\n\n**Creatures and Objects.** A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.\n\n**Dispel Magic.** Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.", "document": "srd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Self", @@ -381,7 +381,7 @@ "desc": "This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.\n\n**Antipathy.** The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n\n **Sympathy.** The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target. If the target damages or otherwise harms an affected creature, the affected creature can make a wisdom saving throw to end the effect, as described below.\n\n**Ending the Effect.** If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another wisdom saving throw every 24 hours while the spell persists. A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.", "document": "srd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -412,7 +412,7 @@ "desc": "You create an invisible, magical eye within range that hovers in the air for the duration. You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction. As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.", "document": "srd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -443,7 +443,7 @@ "desc": "You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand. The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space. When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.\n\n**Clenched Fist.** The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.\n\n**Forceful Hand.** The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.\n\n**Grasping Hand.** The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier\n\n **Interposing Hand.** The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.", "document": "srd", "level": 5, - "school": "Evocation", + "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", @@ -476,7 +476,7 @@ "desc": "You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes. While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.", "document": "srd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -507,7 +507,7 @@ "desc": "You create a sword-shaped plane of force that hovers within range. It lasts for the duration. When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.", "document": "srd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -540,7 +540,7 @@ "desc": "You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature. When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.\n\n**False Aura.** You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.\n\n**Mask.** You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.", "document": "srd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -571,7 +571,7 @@ "desc": "You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age. Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly. Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it. The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens. The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation. If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.", "document": "srd", "level": 9, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "10 feet", @@ -602,7 +602,7 @@ "desc": "By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens: \n- Weal, for good results \n- Woe, for bad results \n- Weal and woe, for both good and bad results \n- Nothing, for results that aren't especially good or bad The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -633,7 +633,7 @@ "desc": "After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree. The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.", "document": "srd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -664,7 +664,7 @@ "desc": "Up to three creatures of your choice that you can see within range must make charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -695,7 +695,7 @@ "desc": "You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a charisma saving throw or be banished. If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.", "document": "srd", "level": 4, - "school": "Abjuration", + "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", @@ -726,7 +726,7 @@ "desc": "You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -757,7 +757,7 @@ "desc": "This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.", "document": "srd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -788,7 +788,7 @@ "desc": "You touch a creature, and that creature must succeed on a wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options: \n- Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score. \n- While cursed, the target has disadvantage on attack rolls against you. \n- While cursed, the target must make a wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing. \n- While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target. A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.", "document": "srd", "level": 3, - "school": "Necromancy", + "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", @@ -819,7 +819,7 @@ "desc": "Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage. A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", "document": "srd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "area", "range": "90 feet", @@ -852,7 +852,7 @@ "desc": "You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain. When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.", "document": "srd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "90 feet", @@ -885,7 +885,7 @@ "desc": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -916,7 +916,7 @@ "desc": "Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs. If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it. If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.", "document": "srd", "level": 4, - "school": "Necromancy", + "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", @@ -949,7 +949,7 @@ "desc": "You can blind or deafen a foe. Choose one creature that you can see within range to make a constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a constitution saving throw. On a success, the spell ends.", "document": "srd", "level": 2, - "school": "Necromancy", + "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", @@ -980,7 +980,7 @@ "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action. While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1011,7 +1011,7 @@ "desc": "Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.", "document": "srd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1042,7 +1042,7 @@ "desc": "The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-­--foot radius and can't become invisible until the spell ends.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -1073,7 +1073,7 @@ "desc": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -1106,7 +1106,7 @@ "desc": "A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud). When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one. If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.", "document": "srd", "level": 3, - "school": "Conjuration", + "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", @@ -1139,7 +1139,7 @@ "desc": "You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime. Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.", "document": "srd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -1170,7 +1170,7 @@ "desc": "You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts. A target must make a dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 6, - "school": "Evocation", + "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", @@ -1203,7 +1203,7 @@ "desc": "You attempt to charm a humanoid you can see within range. It must make a wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -1234,7 +1234,7 @@ "desc": "You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target. If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.", "document": "srd", "level": 0, - "school": "Necromancy", + "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", @@ -1267,7 +1267,7 @@ "desc": "A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 6, - "school": "Necromancy", + "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", @@ -1300,7 +1300,7 @@ "desc": "You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with. When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing. A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.", "document": "srd", "level": 3, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "1 mile", @@ -1331,7 +1331,7 @@ "desc": "This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed. At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.", "document": "srd", "level": 8, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -1362,7 +1362,7 @@ "desc": "You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured. When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe. The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.", "document": "srd", "level": 5, - "school": "Conjuration", + "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", @@ -1395,7 +1395,7 @@ "desc": "A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see). Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.", "document": "srd", "level": 1, - "school": "Illusion", + "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", @@ -1426,7 +1426,7 @@ "desc": "You speak a one-word command to a creature you can see within range. The target must succeed on a wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it. Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends\n\n **Approach.** The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.\n\n**Drop** The target drops whatever it is holding and then ends its turn.\n\n**Flee.** The target spends its turn moving away from you by the fastest available means.\n\n**Grovel.** The target falls prone and then ends its turn.\n\n**Halt.** The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -1457,7 +1457,7 @@ "desc": "You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question. Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1488,7 +1488,7 @@ "desc": "You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns. You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area: \n- terrain and bodies of water \n- prevalent plants, minerals, animals, or peoples \n- powerful celestials, fey, fiends, elementals, or undead \n- influence from other planes of existence \n- buildings For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "area", "range": "Self", @@ -1519,7 +1519,7 @@ "desc": "For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text. This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1550,7 +1550,7 @@ "desc": "Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take its action before it moves. After moving in this way, it can make another Wisdom saving throw to try to end the effect. A target isn't compelled to move into an obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move in the designated direction.", "document": "srd", "level": 4, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -1581,7 +1581,7 @@ "desc": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", "document": "srd", "level": 5, - "school": "Evocation", + "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", @@ -1614,7 +1614,7 @@ "desc": "This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10 foot radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|---|---|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn’t take an action this turn. |\n| 2-6 | The creature doesn’t move or take actions this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw. If it succeeds, this effect ends for that target.", "document": "srd", "level": 4, - "school": "Enchantment", + "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", @@ -1645,7 +1645,7 @@ "desc": "You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One beast of challenge rating 2 or lower \n- Two beasts of challenge rating 1 or lower \n- Four beasts of challenge rating 1/2 or lower \n- Eight beasts of challenge rating 1/4 or lower \n- Each beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", "document": "srd", "level": 3, - "school": "Conjuration", + "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", @@ -1676,7 +1676,7 @@ "desc": "You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends. The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions. The DM has the celestial's statistics.", "document": "srd", "level": 7, - "school": "Conjuration", + "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", @@ -1707,7 +1707,7 @@ "desc": "You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the elemental's statistics.", "document": "srd", "level": 5, - "school": "Conjuration", + "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", @@ -1738,7 +1738,7 @@ "desc": "You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends. The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the fey creature's statistics.", "document": "srd", "level": 6, - "school": "Conjuration", + "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", @@ -1769,7 +1769,7 @@ "desc": "You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears: \n- One elemental of challenge rating 2 or lower \n- Two elementals of challenge rating 1 or lower \n- Four elementals of challenge rating 1/2 or lower \n- Eight elementals of challenge rating 1/4 or lower. An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", "document": "srd", "level": 4, - "school": "Conjuration", + "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", @@ -1800,7 +1800,7 @@ "desc": "You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One fey creature of challenge rating 2 or lower \n- Two fey creatures of challenge rating 1 or lower \n- Four fey creatures of challenge rating 1/2 or lower \n- Eight fey creatures of challenge rating 1/4 or lower A summoned creature disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", "document": "srd", "level": 4, - "school": "Conjuration", + "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", @@ -1831,7 +1831,7 @@ "desc": "You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect. On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1862,7 +1862,7 @@ "desc": "Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below. At the end of each of the target's turns, it must make a constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends. Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.\n\n**Blinding Sickness.** Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on wisdom checks and wisdom saving throws and is blinded.\n\n**Filth Fever.** A raging fever sweeps through the creature's body. The creature has disadvantage on strength checks, strength saving throws, and attack rolls that use Strength.\n\n**Flesh Rot.** The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.\n\n**Mindfire.** The creature's mind becomes feverish. The creature has disadvantage on intelligence checks and intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.\n\n**Seizure.** The creature is overcome with shaking. The creature has disadvantage on dexterity checks, dexterity saving throws, and attack rolls that use Dexterity.\n\n**Slimy Doom.** The creature begins to bleed uncontrollably. The creature has disadvantage on constitution checks and constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.", "document": "srd", "level": 5, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -1893,7 +1893,7 @@ "desc": "Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell-called the contingent spell-as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid. The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends. The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.", "document": "srd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -1924,7 +1924,7 @@ "desc": "A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.", "document": "srd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -1955,7 +1955,7 @@ "desc": "Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.\n\n**Flood.** You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land. instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing. The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts\n\n **Part Water.** You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.\n\n**Redirect Flow.** You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.\n\n**Whirlpool.** This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC. When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so. The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.", "document": "srd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "300 feet", @@ -1988,7 +1988,7 @@ "desc": "You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early. When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal. When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.", "document": "srd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2019,7 +2019,7 @@ "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", "document": "srd", "level": 3, - "school": "Abjuration", + "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", @@ -2050,7 +2050,7 @@ "desc": "You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.", "document": "srd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -2081,7 +2081,7 @@ "desc": "You either create or destroy water.\n\n**Create Water.** You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range\n\n **Destroy Water.** You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.", "document": "srd", "level": 1, - "school": "Transmutation", + "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", @@ -2112,7 +2112,7 @@ "desc": "You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.) As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.", "document": "srd", "level": 6, - "school": "Necromancy", + "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", @@ -2143,7 +2143,7 @@ "desc": "You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before. The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration\n\n **Vegetable matter** 1 day **Stone or crystal** 12 hours **Precious metals** 1 hour **Gems** 10 minutes **Adamantine or mithral** 1 minute Using any material created by this spell as another spell's material component causes that spell to fail.", "document": "srd", "level": 5, - "school": "Illusion", + "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", @@ -2174,7 +2174,7 @@ "desc": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -2205,7 +2205,7 @@ "desc": "You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius. As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.", "document": "srd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -2236,7 +2236,7 @@ "desc": "Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it. If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness. If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.", "document": "srd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -2267,7 +2267,7 @@ "desc": "You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2298,7 +2298,7 @@ "desc": "A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet. If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light. If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.", "document": "srd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -2329,7 +2329,7 @@ "desc": "You touch a creature and grant it a measure of protection from death. The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends. If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.", "document": "srd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -2360,7 +2360,7 @@ "desc": "A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one. The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6. If the glowing bead is touched before the interval has expired, the creature touching it must make a dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.", "document": "srd", "level": 7, - "school": "Evocation", + "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", @@ -2391,7 +2391,7 @@ "desc": "You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side. Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.", "document": "srd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -2422,7 +2422,7 @@ "desc": "For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2453,7 +2453,7 @@ "desc": "For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2484,7 +2484,7 @@ "desc": "For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2515,7 +2515,7 @@ "desc": "For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected. You initially learn the surface thoughts of the creature-what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends. Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation. You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language. Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2546,7 +2546,7 @@ "desc": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\" You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell. If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.", "document": "srd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "500 feet", @@ -2577,7 +2577,7 @@ "desc": "You make yourself - including your clothing, armor, weapons, and other belongings on your person - look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. To discern that you are disguised, a creature can use its action to inspect your apperance and must succeed on an Intelligence (Investigation) check against your spell save DC.", "document": "srd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "Self", @@ -2608,7 +2608,7 @@ "desc": "A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force. A creature targeted by this spell must make a dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. If this damage reduces the target to 0 hit points, it is disintegrated. A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell. This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.", "document": "srd", "level": 6, - "school": "Transmutation", + "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", @@ -2641,7 +2641,7 @@ "desc": "Shimmering energy surrounds and protects you from fey, undead, and creatures originating from beyond the Material Plane. For the duration, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you. You can end the spell early by using either of the following special functions.\n\n**Break Enchantment.** As your action, you touch a creature you can reach that is charmed, frightened, or possessed by a celestial, an elemental, a fey, a fiend, or an undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.\n\n**Dismissal.** As your action, make a melee spell attack against a celestial, an elemental, a fey, a fiend, or an undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.", "document": "srd", "level": 5, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2672,7 +2672,7 @@ "desc": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", "document": "srd", "level": 3, - "school": "Abjuration", + "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", @@ -2703,7 +2703,7 @@ "desc": "Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen. The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", "document": "srd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2734,7 +2734,7 @@ "desc": "Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.", "document": "srd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -2765,7 +2765,7 @@ "desc": "You utter a divine word, imbued with the power that shaped the world at the dawn of creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points: \n- 50hp or less: deafened for 1 minute \n- 40 hp or less: deafened and blinded for 10 minutes \n- 30 hp or less: blinded, deafened and dazed for 1 hour \n- 20 hp or less: killed instantly. Regardless of its current hit points, a celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.", "document": "srd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -2796,7 +2796,7 @@ "desc": "You attempt to beguile a beast that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", "document": "srd", "level": 4, - "school": "Enchantment", + "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", @@ -2827,7 +2827,7 @@ "desc": "You attempt to beguile a creature that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", "document": "srd", "level": 8, - "school": "Enchantment", + "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", @@ -2858,7 +2858,7 @@ "desc": "You attempt to beguile a humanoid that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", "document": "srd", "level": 5, - "school": "Enchantment", + "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", @@ -2889,7 +2889,7 @@ "desc": "This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take actions or move. If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the duration of the spell. The messenger can also shape the environment of the dream, creating landscapes, objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams. You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage. If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.", "document": "srd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Special", @@ -2922,7 +2922,7 @@ "desc": "Whispering to the spirits of nature, you create one of the following effects within range: \n- You create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, falling snowflakes for snow, and so on. This effect persists for 1 round. \n- You instantly make a flower blossom, a seed pod open, or a leaf bud bloom. \n- You create an instantaneous, harmless sensory effect, such as falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-­--foot cube. \n- You instantly light or snuff out a candle, a torch, or a small campfire.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -2953,7 +2953,7 @@ "desc": "You create a seismic disturbance at a point on the ground that you can see within range. For the duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area. The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a constitution saving throw. On a failed save, the creature's concentration is broken. When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a dexterity saving throw. On a failed save, the creature is knocked prone. This spell can have additional effects depending on the terrain in the area, as determined by the DM. \n\n**Fissures.** Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens. A fissure that opens beneath a structure causes it to automatically collapse (see below). \n\n**Structures.** The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 hit points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", "document": "srd", "level": 8, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "500 feet", @@ -2986,7 +2986,7 @@ "desc": "A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage. The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.", "document": "srd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -3019,7 +3019,7 @@ "desc": "You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\n**Bear's Endurance.** The target has advantage on constitution checks. It also gains 2d6 temporary hit points, which are lost when the spell ends.\n\n**Bull's Strength.** The target has advantage on strength checks, and his or her carrying capacity doubles.\n\n**Cat's Grace.** The target has advantage on dexterity checks. It also doesn't take damage from falling 20 feet or less if it isn't incapacitated.\n\n**Eagle's Splendor.** The target has advantage on Charisma checks\n\n **Fox's Cunning.** The target has advantage on intelligence checks.\n\n**Owl's Wisdom.** The target has advantage on wisdom checks.", "document": "srd", "level": 2, - "school": "Transmutation", + "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", @@ -3050,7 +3050,7 @@ "desc": "You cause a creature or an object you can see within range to grow larger or smaller for the duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect. If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once. \n\n**Enlarge.** The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category-from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength checks and Strength saving throws. The target's weapons also grow to match its new size. While these weapons are enlarged, the target's attacks with them deal 1d4 extra damage. \n\n**Reduce.** The target's size is halved in all dimensions, and its weight is reduced to one-­eighth of normal. This reduction decreases its size by one category-from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength checks and Strength saving throws. The target's weapons also shrink to match its new size. While these weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -3081,7 +3081,7 @@ "desc": "Grasping weeds and vines sprout from the ground in a 20-foot square starting form a point within range. For the duration, these plants turn the ground in the area into difficult terrain. A creature in the area when you cast the spell must succeed on a strength saving throw or be restrained by the entangling plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself. When the spell ends, the conjured plants wilt away.", "document": "srd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "90 feet", @@ -3112,7 +3112,7 @@ "desc": "You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a wisdom saving throw. Any creature that can't be charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are incapacitated or can no longer speak.", "document": "srd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -3143,7 +3143,7 @@ "desc": "You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away. While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so. You ignore all objects and effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from. When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.", "document": "srd", "level": 7, - "school": "Transmutation", + "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", @@ -3174,7 +3174,7 @@ "desc": "This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.", "document": "srd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3205,7 +3205,7 @@ "desc": "For the spell's duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a wisdom saving throw or be affected by one of the following effects of your choice for the duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\n**Asleep.** The target falls unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\n\n**Panicked.** The target is frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends\n\n **Sickened.** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another wisdom saving throw. If it succeeds, the effect ends.", "document": "srd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3236,7 +3236,7 @@ "desc": "You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool. Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of objects made by the spell is commensurate with the quality of the raw materials. Creatures or magic items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such objects.", "document": "srd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "120 feet", @@ -3267,7 +3267,7 @@ "desc": "Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius. Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", "document": "srd", "level": 1, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "60 feet", @@ -3298,7 +3298,7 @@ "desc": "You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the duration, until you dismiss it as an action, or until you move more than 100 feet away from it. The hound is invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions. At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's attack bonus is equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 4d8 piercing damage.", "document": "srd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -3329,7 +3329,7 @@ "desc": "Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 temporary hit points for the duration.", "document": "srd", "level": 1, - "school": "Necromancy", + "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", @@ -3360,7 +3360,7 @@ "desc": "You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a wisdom saving throw or drop whatever it is holding and become frightened for the duration. While frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a wisdom saving throw. On a successful save, the spell ends for that creature.", "document": "srd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3391,7 +3391,7 @@ "desc": "Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.", "document": "srd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -3422,7 +3422,7 @@ "desc": "You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an intelligence saving throw. On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them. At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends. The spell can also be ended by greater restoration, heal, or wish.", "document": "srd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "150 feet", @@ -3455,7 +3455,7 @@ "desc": "You gain the service of a familiar, a spirit that takes an animal form you choose: bat, cat, crab, frog (toad), hawk, lizard, octopus, owl, poisonous snake, fish (quipper), rat, raven, sea horse, spider, or weasel. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast. Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal. When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again. While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses. As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you. You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature. Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your attack modifier for the roll.", "document": "srd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "10 feet", @@ -3486,7 +3486,7 @@ "desc": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak. Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed. When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum. While your steed is within 1 mile of you, you can communicate with it telepathically. You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.", "document": "srd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -3517,7 +3517,7 @@ "desc": "This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails. For the duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.", "document": "srd", "level": 6, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3548,7 +3548,7 @@ "desc": "You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole. This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -3579,7 +3579,7 @@ "desc": "You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one. A humanoid killed by this spell rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability.", "document": "srd", "level": 7, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -3612,7 +3612,7 @@ "desc": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.", "document": "srd", "level": 0, - "school": "Evocation", + "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", @@ -3645,7 +3645,7 @@ "desc": "Thin and vaporous flame surround your body for the duration of the spell, radiating a bright light bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell using an action to make it disappear. The flames are around you a heat shield or cold, your choice. The heat shield gives you cold damage resistance and the cold resistance to fire damage. In addition, whenever a creature within 5 feet of you hits you with a melee attack, flames spring from the shield. The attacker then suffers 2d8 points of fire damage or cold, depending on the model.", "document": "srd", "level": 4, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -3676,7 +3676,7 @@ "desc": "A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.", "document": "srd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "150 feet", @@ -3709,7 +3709,7 @@ "desc": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", "document": "srd", "level": 3, - "school": "Evocation", + "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", @@ -3742,7 +3742,7 @@ "desc": "You evoke a fiery blade in your free hand. The blade is similar in size and shape to a scimitar, and it lasts for the duration. If you let go of the blade, it disappears, but you can evoke the blade again as a bonus action. You can use your action to make a melee spell attack with the fiery blade. On a hit, the target takes 3d6 fire damage. The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -3775,7 +3775,7 @@ "desc": "A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on a point within range must make a dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 5, - "school": "Evocation", + "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", @@ -3808,7 +3808,7 @@ "desc": "A 5-foot-diameter sphere of fire appears in an unoccupied space of your choice within range and lasts for the duration. Any creature that ends its turn within 5 feet of the sphere must make a dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one. As a bonus action, you can move the sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn. When you move the sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", "document": "srd", "level": 2, - "school": "Conjuration", + "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", @@ -3841,7 +3841,7 @@ "desc": "You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a constitution saving throw. On a failed save, it is restrained as its flesh begins to harden. On a successful save, the creature isn't affected. A creature restrained by this spell must make another constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the petrified condition for the duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind. If the creature is physically broken while petrified, it suffers from similar deformities if it reverts to its original state. If you maintain your concentration on this spell for the entire possible duration, the creature is turned to stone until the effect is removed.", "document": "srd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -3872,7 +3872,7 @@ "desc": "This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground. The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. If can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom. If you move more than 100 feet away from the disk (typically because it can't move around an obstacle to follow you), the spell ends.", "document": "srd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -3903,7 +3903,7 @@ "desc": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", "document": "srd", "level": 3, - "school": "Transmutation", + "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", @@ -3934,7 +3934,7 @@ "desc": "You create a 20-foot-radius sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", "document": "srd", "level": 1, - "school": "Conjuration", + "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", @@ -3965,7 +3965,7 @@ "desc": "You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against planar travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the plane shift spell. In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: celestials, elementals, fey, fiends, and undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell). When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell. The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material components are consumed on the last casting.", "document": "srd", "level": 6, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -3999,7 +3999,7 @@ "desc": "An immobile, invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose. A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart. A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any spells cast into or out from the area. When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area. A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel. This spell can't be dispelled by dispel magic.", "document": "srd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "100 feet", @@ -4030,7 +4030,7 @@ "desc": "You touch a willing creature and bestow a limited ability to see into the immediate future. For the duration, the target can't be surprised and has advantage on attack rolls, ability checks, and saving throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration. This spell immediately ends if you cast it again before its duration ends.", "document": "srd", "level": 9, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4061,7 +4061,7 @@ "desc": "You touch a willing creature. For the duration, the target's movement is unaffected by difficult terrain, and spells and other magical effects can neither reduce the target's speed nor cause the target to be paralyzed or restrained. The target can also spend 5 feet of movement to automatically escape from nonmagical restraints, such as manacles or a creature that has it grappled. Finally, being underwater imposes no penalties on the target's movement or attacks.", "document": "srd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4092,7 +4092,7 @@ "desc": "A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage. If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free. You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.", "document": "srd", "level": 6, - "school": "Evocation", + "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", @@ -4125,7 +4125,7 @@ "desc": "You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected. While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated. While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4156,7 +4156,7 @@ "desc": "You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains. When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, attack you, or help you.", "document": "srd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -4187,7 +4187,7 @@ "desc": "You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a wisdom saving throw or become charmed by you for the duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell. You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends. You can end the spell early by using an action to dismiss it. A remove curse, greater restoration, or wish spell also ends it.", "document": "srd", "level": 5, - "school": "Enchantment", + "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", @@ -4220,7 +4220,7 @@ "desc": "You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead. The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.", "document": "srd", "level": 2, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4251,7 +4251,7 @@ "desc": "You transform up to ten centipedes, three spiders, five wasps, or one scorpion within range into giant versions of their natural forms for the duration. A centipede becomes a giant centipede, a spider becomes a giant spider, a wasp becomes a giant wasp, and a scorpion becomes a giant scorpion. Each creature obeys your verbal commands, and in combat, they act on your turn each round. The DM has the statistics for these creatures and resolves their actions and movement. A creature remains in its giant size for the duration, until it drops to 0 hit points, or until you use an action to dismiss the effect on it. The DM might allow you to choose different targets. For example, if you transform a bee, its giant version might have the same statistics as a giant wasp.", "document": "srd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -4282,7 +4282,7 @@ "desc": "Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.", "document": "srd", "level": 8, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -4313,7 +4313,7 @@ "desc": "An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the duration. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells.", "document": "srd", "level": 6, - "school": "Abjuration", + "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", @@ -4344,7 +4344,7 @@ "desc": "When you cast this spell, you inscribe a glyph that harms other creatures, either upon a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends. You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose explosive runes or a spell glyph.\n\n**Explosive Runes.** When triggered, the glyph erupts with magical energy in a 20-­foot-­radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.\n\n**Spell Glyph.** You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.", "document": "srd", "level": 3, - "school": "Abjuration", + "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", @@ -4381,7 +4381,7 @@ "desc": "Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day. The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.", "document": "srd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4412,7 +4412,7 @@ "desc": "Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration. When the grease appears, each creature standing in its area must succeed on a dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a dexterity saving throw or fall prone.", "document": "srd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -4443,7 +4443,7 @@ "desc": "You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person.", "document": "srd", "level": 4, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4474,7 +4474,7 @@ "desc": "You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's exhaustion level by one, or end one of the following effects on the target: \n- One effect that charmed or petrified the target \n- One curse, including the target's attunement to a cursed magic item \n- Any reduction to one of the target's ability scores \n- One effect reducing the target's hit point maximum", "document": "srd", "level": 5, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4505,7 +4505,7 @@ "desc": "A Large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity. Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", "document": "srd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -4538,7 +4538,7 @@ "desc": "You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. When you cast this spell, you can specify individuals that are unaffected by any or all of the effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these effects. Guards and wards creates the following effects within the warded area.\n\n**Corridors.** Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.\n\n**Doors.** All doors in the warded area are magically locked, as if sealed by an arcane lock spell. In addition, you can cover up to ten doors with an illusion (equivalent to the illusory object function of the minor illusion spell) to make them appear as plain sections of wall\n\n **Stairs.** Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.\n\n**Other Spell Effect.** You can place your choice of one of the following magical effects within the warded area of the stronghold. \n- Place dancing lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts. \n- Place magic mouth in two locations. \n- Place stinking cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts. \n- Place a constant gust of wind in one corridor or room. \n- Place a suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the suggestion mentally. The whole warded area radiates magic. A dispel magic cast on a specific effect, if successful, removes only that effect. You can create a permanently guarded and warded structure by casting this spell there every day for one year.", "document": "srd", "level": 6, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "area", "range": "Touch", @@ -4569,7 +4569,7 @@ "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.", "document": "srd", "level": 0, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4600,7 +4600,7 @@ "desc": "A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -4633,7 +4633,7 @@ "desc": "A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a strength saving throw or be pushed 15 feet away from you in a direction following the line. Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you. The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them. As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.", "document": "srd", "level": 2, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -4664,7 +4664,7 @@ "desc": "You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following effects. First, celestials, elementals, fey, fiends, and undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature charmed, frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect. Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as ores or trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\n**Courage.** Affected creatures can't be frightened while in the area.\n\n**Darkness.** Darkness fills the area. Normal light, as well as magical light created by spells of a lower level than the slot you used to cast this spell, can't illuminate the area\n\n **Daylight.** Bright light fills the area. Magical darkness created by spells of a lower level than the slot you used to cast this spell can't extinguish the light.\n\n**Energy Protection.** Affected creatures in the area have resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing\n\n **Energy Vulnerability.** Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\n\n**Everlasting Rest.** Dead bodies interred in the area can't be turned into undead.\n\n**Extradimensional Interference.** Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\n\n**Fear.** Affected creatures are frightened while in the area.\n\n**Silence.** No sound can emanate from within the area, and no sound can reach into it.\n\n**Tongues.** Affected creatures can communicate with any other creature in the area, even if they don't share a common language.", "document": "srd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "Touch", @@ -4695,7 +4695,7 @@ "desc": "You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, equipment, and creatures within the area aren't changed in appearance.\n\nThe tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the illusion. If the difference isn't obvious by touch, a creature carefully examining the illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the illusion for what it is, sees it as a vague image superimposed on the terrain.", "document": "srd", "level": 4, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "300 feet", @@ -4726,7 +4726,7 @@ "desc": "You unleash a virulent disease on a creature that you can see within range. The target must make a constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's hit points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.", "document": "srd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -4759,7 +4759,7 @@ "desc": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -4790,7 +4790,7 @@ "desc": "Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 hit points. This spell also ends blindness, deafness, and any diseases affecting the target. This spell has no effect on constructs or undead.", "document": "srd", "level": 6, - "school": "Evocation", + "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", @@ -4821,7 +4821,7 @@ "desc": "A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -4852,7 +4852,7 @@ "desc": "Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again. If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.", "document": "srd", "level": 2, - "school": "Transmutation", + "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", @@ -4885,7 +4885,7 @@ "desc": "You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -4918,7 +4918,7 @@ "desc": "You bring forth a great feast, including magnificent food and drink. The feast takes 1 hour to consume and disappears at the end of that time, and the beneficial effects don't set in until this hour is over. Up to twelve other creatures can partake of the feast. A creature that partakes of the feast gains several benefits. The creature is cured of all diseases and poison, becomes immune to poison and being frightened, and makes all wisdom saving throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of hit points. These benefits last for 24 hours.", "document": "srd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -4949,7 +4949,7 @@ "desc": "A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.", "document": "srd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -4980,7 +4980,7 @@ "desc": "A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a wisdom saving throw or fall prone, becoming incapacitated and unable to stand up for the duration. A creature with an Intelligence score of 4 or less isn't affected. At the end of each of its turns, and each time it takes damage, the target can make another wisdom saving throw. The target had advantage on the saving throw if it's triggered by damage. On a success, the spell ends.", "document": "srd", "level": 1, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -5011,7 +5011,7 @@ "desc": "Choose a creature you can see within range. The target must make a saving throw of Wisdom or be paralyzed for the duration of the spell. This spell has no effect against the undead. At the end of each round, the target can make a new saving throw of Wisdom. If successful, the spell ends for the creature.", "document": "srd", "level": 5, - "school": "Enchantment", + "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", @@ -5042,7 +5042,7 @@ "desc": "Choose a humanoid that you can see within range. The target must succeed on a wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another wisdom saving throw. On a success, the spell ends on the target.", "document": "srd", "level": 2, - "school": "Enchantment", + "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", @@ -5073,7 +5073,7 @@ "desc": "Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all saving throws, and other creatures have disadvantage on attack rolls against them until the spell ends. In addition, when a fiend or an undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a constitution saving throw or be blinded until the spell ends.", "document": "srd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5104,7 +5104,7 @@ "desc": "You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra 1d6 damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.", "document": "srd", "level": 1, - "school": "Divination", + "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", @@ -5135,7 +5135,7 @@ "desc": "You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0. The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.", "document": "srd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -5166,7 +5166,7 @@ "desc": "A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high cylinder centered on a point within range. Each creature in the cylinder must make a dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one. Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.", "document": "srd", "level": 4, - "school": "Evocation", + "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", @@ -5199,7 +5199,7 @@ "desc": "You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it. If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "Touch", @@ -5230,7 +5230,7 @@ "desc": "You write on parchment, paper, or some other suitable writing material and imbue it with a potent illusion that lasts for the duration. To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know. Should the spell be dispelled, the original script and the illusion both disappear. A creature with truesight can read the hidden message.", "document": "srd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5261,7 +5261,7 @@ "desc": "You create a magical restraint to hold a creature that you can see within range. The target must succeed on a wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination spells can't locate or perceive the target. When you cast the spell, you choose one of the following forms of imprisonment.\n\n**Burial.** The target is entombed far beneath the earth in a sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature teleport or use planar travel to get into or out of it. The special component for this version of the spell is a small mithral orb.\n\n**Chaining.** Heavy chains, firmly rooted in the ground, hold the target in place. The target is restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.\n\n**Hedged Prison.** The spell transports the target into a tiny demiplane that is warded against teleportation and planar travel. The demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.\n\n**Minimus Containment.** The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or planar travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.\n\n**Slumber.** The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.\n\n**Ending the Spell.** During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable actions or qualities and not based on intangibles such as level, class, or hit points. A dispel magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it. You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.", "document": "srd", "level": 9, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -5292,7 +5292,7 @@ "desc": "A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When the cloud appears, each creature in it must make a dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there. The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.", "document": "srd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "150 feet", @@ -5325,7 +5325,7 @@ "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.", "document": "srd", "level": 1, - "school": "Necromancy", + "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", @@ -5358,7 +5358,7 @@ "desc": "Swarming, biting locusts fill a 20-foot-radius sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the duration, and its area is lightly obscured. The sphere's area is difficult terrain. When the area appears, each creature in it must make a constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.", "document": "srd", "level": 5, - "school": "Conjuration", + "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", @@ -5391,7 +5391,7 @@ "desc": "You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire. At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends. If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment. Dispel magic or a similar effect successfully applied to the sapphire ends this spell's effect.", "document": "srd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "Touch", @@ -5422,7 +5422,7 @@ "desc": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", "document": "srd", "level": 2, - "school": "Illusion", + "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", @@ -5453,7 +5453,7 @@ "desc": "Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures that can't be charmed are immune to this spell. A dancing creature must use all its movement to dance without leaving its space and has disadvantage on dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a wisdom saving throw to regain control of itself. On a successful save, the spell ends.", "document": "srd", "level": 6, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -5484,7 +5484,7 @@ "desc": "You touch a creature. The creature's jump distance is tripled until the spell ends.", "document": "srd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5515,7 +5515,7 @@ "desc": "Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "60 feet", @@ -5546,7 +5546,7 @@ "desc": "Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is. The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "Self", @@ -5577,7 +5577,7 @@ "desc": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.", "document": "srd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5608,7 +5608,7 @@ "desc": "One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a constitution saving throw is unaffected. The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range. When the spell ends, the target floats gently to the ground if it is still aloft.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -5639,7 +5639,7 @@ "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action. If you target an object held or worn by a hostile creature, that creature must succeed on a dexterity saving throw to avoid the spell.", "document": "srd", "level": 0, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -5670,7 +5670,7 @@ "desc": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one. The lightning ignites flammable objects in the area that aren't being worn or carried.", "document": "srd", "level": 3, - "school": "Evocation", + "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", @@ -5703,7 +5703,7 @@ "desc": "Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5734,7 +5734,7 @@ "desc": "Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement. The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close-within 30 feet-at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature. This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.", "document": "srd", "level": 4, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5765,7 +5765,7 @@ "desc": "Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement. The spell can locate a specific object known to you, as long as you have seen it up close-within 30 feet-at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon. This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "object", "range": "Self", @@ -5796,7 +5796,7 @@ "desc": "You touch a creature. The target's speed increases by 10 feet until the spell ends.", "document": "srd", "level": 1, - "school": "Transmutation", + "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", @@ -5827,7 +5827,7 @@ "desc": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -5858,7 +5858,7 @@ "desc": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again. You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it. The hand can't attack, activate magic items, or carry more than 10 pounds.", "document": "srd", "level": 0, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -5889,7 +5889,7 @@ "desc": "You create a 10-­--foot-­--radius, 20-­--foot-­--tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface. Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways: \n- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw. \n- The creature has disadvantage on attack rolls against targets within the cylinder. \n- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.", "document": "srd", "level": 3, - "school": "Abjuration", + "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", @@ -5920,7 +5920,7 @@ "desc": "Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body. You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours. Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features. Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all. While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die. If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies. When the spell ends, the container is destroyed.", "document": "srd", "level": 6, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Self", @@ -5951,7 +5951,7 @@ "desc": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -5982,7 +5982,7 @@ "desc": "You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message. When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs. The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.", "document": "srd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -6013,7 +6013,7 @@ "desc": "You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to attack rolls and damage rolls.", "document": "srd", "level": 2, - "school": "Transmutation", + "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", @@ -6044,7 +6044,7 @@ "desc": "You conjure an extradimensional dwelling in range that lasts for the duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is invisible. Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm. You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine course banquet for up to 100 people. A staff of 100 near-transparent servants attends all who enter. You decide the visual appearance of these servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't attack or take any action that would directly harm another creature. Thus the servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The servants can go anywhere in the mansion but can't leave it. Furnishings and other objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.", "document": "srd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "300 feet", @@ -6075,7 +6075,7 @@ "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench). As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.", "document": "srd", "level": 3, - "school": "Illusion", + "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", @@ -6106,7 +6106,7 @@ "desc": "A wave of healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius sphere centered on that point. Each target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "document": "srd", "level": 5, - "school": "Conjuration", + "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", @@ -6137,7 +6137,7 @@ "desc": "A flood of healing energy flows from you into injured creatures around you. You restore up to 700 hit points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all diseases and any effect making them blinded or deafened. This spell has no effect on undead or constructs.", "document": "srd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -6168,7 +6168,7 @@ "desc": "As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "document": "srd", "level": 3, - "school": "Evocation", + "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", @@ -6199,7 +6199,7 @@ "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell. Each target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed. If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.", "document": "srd", "level": 6, - "school": "Enchantment", + "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", @@ -6230,7 +6230,7 @@ "desc": "You banish a creature that you can see within range into a labyrinthine demiplane. The target remains there for the duration or until it escapes the maze. The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a minotaur or goristro demon automatically succeeds). When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.", "document": "srd", "level": 8, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -6261,7 +6261,7 @@ "desc": "You step into a stone object or surface large enough to fully contain your body, melding yourself and all the equipment you carry with the stone for the duration. Using your movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical senses. While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast spells on yourself while merged in the stone. You can use your movement to leave the stone where you entered it, which ends the spell. You otherwise can't move. Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -6292,7 +6292,7 @@ "desc": "This spell repairs a single break or tear in an object you touch, such as a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no longer than 1 foot in any dimension, you mend it, leaving no trace of the former damage. This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -6323,7 +6323,7 @@ "desc": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear. You can cast this spell through solid objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -6354,7 +6354,7 @@ "desc": "Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once. The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", "document": "srd", "level": 9, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "1 mile", @@ -6387,7 +6387,7 @@ "desc": "Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, divination spells, and the charmed condition. The spell even foils wish spells and spells or effects of similar power used to affect the target's mind or to gain information about the target.", "document": "srd", "level": 8, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6418,7 +6418,7 @@ "desc": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again. If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends. If you create an image of an object-such as a chair, muddy footprints, or a small chest-it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it. If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", "document": "srd", "level": 0, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "30 feet", @@ -6449,7 +6449,7 @@ "desc": "You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures. The illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately. Creatures with truesight can see through the illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.", "document": "srd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "area", "range": "Sight", @@ -6480,7 +6480,7 @@ "desc": "Three illusionary duplicates of yourself appear in your space. Until the end of the spell, duplicates move with you and imitate your actions, swapping their position so that it is impossible to determine which image is real. You can use your action to dispel the illusory duplicates. Whenever a creature is targeting you with an attack during the duration of the spell, roll 1d20 to determine if the attack does not target rather one of your duplicates. If you have three duplicates, you need 6 or more on your throw to lead the target of the attack to a duplicate. With two duplicates, you need 8 or more. With one duplicate, you need 11 or more. The CA of a duplicate is 10 + your Dexterity modifier. If an attack hits a duplicate, it is destroyed. A duplicate may be destroyed not just an attack on key. It ignores other damage and effects. The spell ends if the three duplicates are destroyed. A creature is unaffected by this fate if she can not see if it relies on a different meaning as vision, such as blind vision, or if it can perceive illusions as false, as with clear vision.", "document": "srd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6511,7 +6511,7 @@ "desc": "You become invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the duration, but the invisibility ends if you attack or cast a spell. You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose. You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings.", "document": "srd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6542,7 +6542,7 @@ "desc": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.", "document": "srd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6573,7 +6573,7 @@ "desc": "You attempt to reshape another creature's memories. One creature that you can see must make a wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes charmed by you for the duration. The charmed target is incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified. While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event. You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends. A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner. A remove curse or greater restoration spell cast on the target restores the creature's true memory.", "document": "srd", "level": 5, - "school": "Enchantment", + "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", @@ -6604,7 +6604,7 @@ "desc": "A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder. When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one. A shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light. On each of your turns after you cast this spell, you can use an action to move the beam 60 feet in any direction.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -6637,7 +6637,7 @@ "desc": "Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete. At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect. Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's movement. This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse. Similarly, this spell doesn't directly affect plant growth. The moved earth carries any plants along with it.", "document": "srd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "120 feet", @@ -6668,7 +6668,7 @@ "desc": "For the duration, you hide a target that you touch from divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical scrying sensors.", "document": "srd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6699,7 +6699,7 @@ "desc": "A veil of shadows and silence radiates from you, masking you and your companions from detection. For the duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.", "document": "srd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -6730,7 +6730,7 @@ "desc": "A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it. When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.", "document": "srd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -6761,7 +6761,7 @@ "desc": "You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a wisdom saving throw. On a failed save, the target becomes frightened for the duration. At the start of each of the target's turns before the spell ends, the target must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.", "document": "srd", "level": 4, - "school": "Illusion", + "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", @@ -6792,7 +6792,7 @@ "desc": "A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed. For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.", "document": "srd", "level": 3, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -6823,7 +6823,7 @@ "desc": "You beseech an otherworldly entity for aid. The being must be known to you: a god, a primordial, a demon prince, or some other being of cosmic power. That entity sends a celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice). When the creature appears, it is under no compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its services. Payment can take a variety of forms. A celestial might require a sizable donation of gold or magic items to an allied temple, while a fiend might demand a living sacrifice or a gift of treasure. Some creatures might exchange their service for a quest undertaken by you. As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal. After the creature completes the task, or when the agreed-upon duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane. A creature enlisted to join your group counts as a member of it, receiving a full share of experience points awarded.", "document": "srd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -6854,7 +6854,7 @@ "desc": "With this spell, you attempt to bind a celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted magic circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a charisma saving throw. On a failed save, it is bound to serve you for the duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell. A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.", "document": "srd", "level": 5, - "school": "Abjuration", + "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", @@ -6885,7 +6885,7 @@ "desc": "You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion. Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle. You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.", "document": "srd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -6916,7 +6916,7 @@ "desc": "This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits. If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. You can exclude one or more areas of any size within the spell's area from being affected. If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "150 feet", @@ -6947,7 +6947,7 @@ "desc": "You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.", "document": "srd", "level": 0, - "school": "Conjuration", + "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", @@ -6978,7 +6978,7 @@ "desc": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a wisdom saving throw to avoid the effect. A shapechanger automatically succeeds on this saving throw. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality. The target assumes the hit points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.", "document": "srd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7009,7 +7009,7 @@ "desc": "You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.", "document": "srd", "level": 9, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7040,7 +7040,7 @@ "desc": "You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 hit points or fewer, it is stunned. Otherwise, the spell has no effect. The stunned target must make a constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.", "document": "srd", "level": 8, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7071,7 +7071,7 @@ "desc": "Up to six creatures of your choice that you can see within range each regain hit points equal to 2d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -7102,7 +7102,7 @@ "desc": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within 'range': \n- You create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor. \n- You instantaneously light or snuff out a candle, a torch, or a small campfire. \n- You instantaneously clean or soil an object no larger than 1 cubic foot. \n- You chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour. \n- You make a color, a small mark, or a symbol appear on an object or a surface for 1 hour. \n- You create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn. \nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "10 feet", @@ -7133,7 +7133,7 @@ "desc": "Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\n**1. Red.** The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\n\n**2. Orange.** The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\n\n**3. Yellow.** The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**4. Green.** The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\n\n**5. Blue.** The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\n\n**6. Indigo.** On a failed save, the target is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\n\n**7. Violet.** On a failed save, the target is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) \n\n**8. Special.** The target is struck by two rays. Roll twice more, rerolling any 8.", "document": "srd", "level": 7, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -7166,7 +7166,7 @@ "desc": "A shimmering, multicolored plane of light forms a vertical opaque wall-up to 90 feet long, 30 feet high, and 1 inch thick-centered on a point you can see within range. Alternatively, you can shape the wall into a sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted. The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a constitution saving throw or become blinded for 1 minute. The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a dexterity saving throw or be affected by that layer's properties as described below. The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the duration of the spell. A rod of cancellation destroys a prismatic wall, but an antimagic field has no effect on it.\n\n**1. Red.** The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical ranged attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\n\n**2. Orange.** The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical ranged attacks can't pass through the wall. The layer is destroyed by a strong wind.\n\n**3. Yellow.** The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\n\n**4. Green.** The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\n\n**5. Blue.** The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\n\n**6. Indigo.** On a failed save, the creature is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind. While this layer is in place, spells can't be cast through the wall. The layer is destroyed by bright light shed by a daylight spell or a similar spell of equal or higher level.\n\n**7. Violet.** On a failed save, the creature is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a dispel magic spell or a similar spell of equal or higher level that can end spells and magical effects.", "document": "srd", "level": 9, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -7199,7 +7199,7 @@ "desc": "You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the duration or until you use an action to dismiss it. When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties: \n- Sound can't pass through the barrier at the edge of the warded area. \n- The barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it. \n- Sensors created by divination spells can't appear inside the protected area or pass through the barrier at its perimeter. \n- Creatures in the area can't be targeted by divination spells. \n- Nothing can teleport into or out of the warded area. \n- Planar travel is blocked within the warded area. \nCasting this spell on the same spot every day for a year makes this effect permanent.", "document": "srd", "level": 4, - "school": "Abjuration", + "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", @@ -7230,7 +7230,7 @@ "desc": "A flickering flame appears in your hand. The flame remains there for the duration and harms neither you nor your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again. You can also attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell attack. On a hit, the target takes 1d8 fire damage.", "document": "srd", "level": 0, - "school": "Conjuration", + "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", @@ -7263,7 +7263,7 @@ "desc": "You create an illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted performance can last up to 5 minutes. When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again. The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", "document": "srd", "level": 6, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "120 feet", @@ -7294,7 +7294,7 @@ "desc": "You create an illusory copy of yourself that lasts for the duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends. You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly. You can see through its eyes and hear through its ears as if you were in its space. On your turn as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", "document": "srd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "500 miles", @@ -7325,7 +7325,7 @@ "desc": "For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.", "document": "srd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7356,7 +7356,7 @@ "desc": "Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7387,7 +7387,7 @@ "desc": "You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random. For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.", "document": "srd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7418,7 +7418,7 @@ "desc": "All nonmagical food and drink within a 5-foot radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.", "document": "srd", "level": 1, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "10 feet", @@ -7449,7 +7449,7 @@ "desc": "You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point. This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life. This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival-its head, for instance-the spell automatically fails. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.", "document": "srd", "level": 5, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7480,7 +7480,7 @@ "desc": "A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends. At the end of each of the target's turns, it can make a constitution saving throw against the spell. On a success, the spell ends.", "document": "srd", "level": 2, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -7511,7 +7511,7 @@ "desc": "A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.", "document": "srd", "level": 0, - "school": "Evocation", + "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", @@ -7544,7 +7544,7 @@ "desc": "You touch a creature and stimulate its natural healing ability. The target regains 4d8 + 15 hit points. For the duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute). The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.", "document": "srd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7575,7 +7575,7 @@ "desc": "You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails. The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls a d 100 and consults the following table to determine what form the creature takes when restored to life, or the DM chooses a form.\n\n**01-04** Dragonborn **05-13** Dwarf, hill **14-21** Dwarf, mountain **22-25** Elf, dark **26-34** Elf, high **35-42** Elf, wood **43-46** Gnome, forest **47-52** Gnome, rock **53-56** Half-elf **57-60** Half-orc **61-68** Halfling, lightfoot **69-76** Halfling, stout **77-96** Human **97-00** Tiefling \nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its racial traits accordingly.", "document": "srd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7606,7 +7606,7 @@ "desc": "At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's attunement to the object so it can be removed or discarded.", "document": "srd", "level": 3, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7637,7 +7637,7 @@ "desc": "A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a dexterity saving throw. On a failed save, the creature is enclosed for the duration. Nothing-not physical objects, energy, or other spell effects-can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or effects originating from outside, nor can a creature inside the sphere damage anything outside it. The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures. A disintegrate spell targeting the globe destroys it without harming anything inside it.", "document": "srd", "level": 4, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -7668,7 +7668,7 @@ "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.", "document": "srd", "level": 0, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7699,7 +7699,7 @@ "desc": "You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points. This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life. This spell closes all mortal wounds and restores any missing body parts. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears. Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.", "document": "srd", "level": 7, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7730,7 +7730,7 @@ "desc": "This spell reverses gravity in a 50-foot-radius, 100-foot high cylinder centered on a point within range. All creatures and objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall. If some solid object (such as a ceiling) is encountered in this fall, falling objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the duration. At the end of the duration, affected objects and creatures fall back down.", "document": "srd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "100 feet", @@ -7761,7 +7761,7 @@ "desc": "You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.", "document": "srd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7792,7 +7792,7 @@ "desc": "You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends. The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope. Anything inside the extradimensional space drops out when the spell ends.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -7823,7 +7823,7 @@ "desc": "Flame-like radiance descends on a creature that you can see within range. The target must succeed on a dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.", "document": "srd", "level": 0, - "school": "Evocation", + "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", @@ -7854,7 +7854,7 @@ "desc": "You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -7885,7 +7885,7 @@ "desc": "You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -7918,7 +7918,7 @@ "desc": "You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n**Knowledge & Save Modifier** Secondhand (you have heard of the target) +5 Firsthand (you have met the target) +0 Familiar (you know the target well) -5 **Connection & Save Modifier** Likeness or picture -2 Possession or garment -4 Body part, lock of hair, bit of nail, or the like -10 \nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours. On a failed save, the spell creates an invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the duration. A creature that can see invisible objects sees the sensor as a luminous orb about the size of your fist. Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -7949,7 +7949,7 @@ "desc": "You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet). While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica. After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.", "document": "srd", "level": 4, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "object", "range": "Touch", @@ -7980,7 +7980,7 @@ "desc": "For the duration of the spell, you see invisible creatures and objects as if they were visible, and you can see through Ethereal. The ethereal objects and creatures appear ghostly translucent.", "document": "srd", "level": 2, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8011,7 +8011,7 @@ "desc": "This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a charisma saving throw, and if it succeeds, it is unaffected by this spell. The spell disguises physical appearance as well as clothing, armor, weapons, and equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The spell lasts for the duration, unless you use your action to dismiss it sooner. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.", "document": "srd", "level": 5, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -8042,7 +8042,7 @@ "desc": "You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message. You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.", "document": "srd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Unlimited", @@ -8073,7 +8073,7 @@ "desc": "By means of this spell, a willing creature or an object can be hidden away, safe from detection for the duration. When you cast the spell and touch the target, it becomes invisible and can't be targeted by divination spells or perceived through scrying sensors created by divination spells. If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older. You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the tarrasque awakens.\" This spell also ends if the target takes any damage.", "document": "srd", "level": 7, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8104,7 +8104,7 @@ "desc": "You assume the form of a different creature for the duration. The new form can be of any creature with a challenge rating equal to your level or lower. The creature can't be a construct or an undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait. Your game statistics are replaced by the statistics of the chosen creature, though you retain your alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary actions or lair actions of the new form. You assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious. You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any special senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak. When you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state. During this spell's duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.", "document": "srd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8135,7 +8135,7 @@ "desc": "A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-­--foot-­--radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone,crystal, or metal has disadvantage on this saving throw. A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -8168,7 +8168,7 @@ "desc": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8199,7 +8199,7 @@ "desc": "A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.", "document": "srd", "level": 1, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -8230,7 +8230,7 @@ "desc": "The wood of a club or a quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -8261,7 +8261,7 @@ "desc": "Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.", "document": "srd", "level": 0, - "school": "Evocation", + "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", @@ -8294,7 +8294,7 @@ "desc": "For the duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are deafened while entirely inside it. Casting a spell that includes a verbal component is impossible there.", "document": "srd", "level": 2, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -8325,7 +8325,7 @@ "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects. You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.", "document": "srd", "level": 1, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "object", "range": "60 feet", @@ -8356,7 +8356,7 @@ "desc": "You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates. The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots. If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly. If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.", "document": "srd", "level": 7, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8387,7 +8387,7 @@ "desc": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures). Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected. Undead and creatures immune to being charmed aren't affected by this spell.", "document": "srd", "level": 1, - "school": "Enchantment", + "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", @@ -8418,7 +8418,7 @@ "desc": "Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused. The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a dexterity saving throw. On a failed save, it falls prone. If a creature is concentrating in the spell's area, the creature must make a successful constitution saving throw against your spell save DC or lose concentration.", "document": "srd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "150 feet", @@ -8449,7 +8449,7 @@ "desc": "You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a wisdom saving throw or be affected by this spell for the duration. An affected target's speed is halved, it takes a -2 penalty to AC and dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn. If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted. A creature affected by this spell makes another wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -8480,7 +8480,7 @@ "desc": "You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.", "document": "srd", "level": 0, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8511,7 +8511,7 @@ "desc": "You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at a minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.", "document": "srd", "level": 1, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8542,7 +8542,7 @@ "desc": "You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days. Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.", "document": "srd", "level": 3, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "10 feet", @@ -8573,7 +8573,7 @@ "desc": "You imbue plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances. You can also turn difficult terrain caused by plant growth (such as thickets and undergrowth) into ordinary terrain that lasts for the duration. Or you can turn ordinary terrain where plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example. Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks. If a plant creature is in the area, you can communicate with it as if you shared a common language, but you gain no magical ability to influence it. This spell can cause the plants created by the entangle spell to release a restrained creature.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "area", "range": "Self", @@ -8604,7 +8604,7 @@ "desc": "Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8635,7 +8635,7 @@ "desc": "The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels. The development of land is camouflaged to look natural. Any creature that does not see the area when the spell is spell casts must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.", "document": "srd", "level": 2, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "150 feet", @@ -8668,7 +8668,7 @@ "desc": "You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish. When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.", "document": "srd", "level": 3, - "school": "Conjuration", + "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", @@ -8701,7 +8701,7 @@ "desc": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.", "document": "srd", "level": 2, - "school": "Evocation", + "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", @@ -8732,7 +8732,7 @@ "desc": "You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration. Each creature that is completely within the cloud at the start of its turn must make a constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw. A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.", "document": "srd", "level": 3, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "90 feet", @@ -8763,7 +8763,7 @@ "desc": "You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.", "document": "srd", "level": 4, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "object", "range": "Touch", @@ -8794,7 +8794,7 @@ "desc": "This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.", "document": "srd", "level": 4, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -8825,7 +8825,7 @@ "desc": "A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 5 minutes. Each round you maintain concentration on this spell, the storm produces additional effects on your turn.\n\n**Round 2.** Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.\n\n**Round 3.** You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**Round 4.** Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.\n\n**Round 5-10.** Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining concentration on spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.", "document": "srd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "Sight", @@ -8858,7 +8858,7 @@ "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell. The target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed. If you or any of your companions damage the target, the spell ends.", "document": "srd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -8889,7 +8889,7 @@ "desc": "A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. You can create a new line of radiance as your action on any turn until the spell ends. For the duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.", "document": "srd", "level": 6, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -8922,7 +8922,7 @@ "desc": "Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. A creature blinded by this spell makes another constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded. This spell dispels any darkness in its area that was created by a spell.", "document": "srd", "level": 8, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "150 feet", @@ -8955,7 +8955,7 @@ "desc": "When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph. You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the sphere for the first time on a turn or ends its turn there.\n\n**Death.** Each target must make a constitution saving throw, taking 10d 10 necrotic damage on a failed save, or half as much damage on a successful save\n\n **Discord.** Each target must make a constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on attack rolls and ability checks.\n\n**Fear.** Each target must make a wisdom saving throw and becomes frightened for 1 minute on a failed save. While frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\n\n**Hopelessness.** Each target must make a charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful abilities, spells, or other magical effects.\n\n**Insanity.** Each target must make an intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its movement, which is erratic.\n\n**Pain.** Each target must make a constitution saving throw and becomes incapacitated with excruciating pain for 1 minute on a failed save.\n\n**Sleep.** Each target must make a wisdom saving throw and falls unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\n\n**Stunning.** Each target must make a wisdom saving throw and becomes stunned for 1 minute on a failed save.", "document": "srd", "level": 7, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "object", "range": "Touch", @@ -8986,7 +8986,7 @@ "desc": "You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.\n\n**Creature.** You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air. On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.\n\n**Object.** You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell. If the object is worn or carried by a creature, you must make an ability check with your spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell. You can exert fine control on objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.", "document": "srd", "level": 5, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "60 feet", @@ -9017,7 +9017,7 @@ "desc": "You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell. Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.", "document": "srd", "level": 5, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9048,7 +9048,7 @@ "desc": "This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature. The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n**Familiarity.** \"Permanent circle\" means a permanent teleportation circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's secret tomb. \"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map. \"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.\n\n**On Target.** You and your group (or the target object) appear where you want to.\n\n**Off Target.** You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The GM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.\n\n**Similar Area.** You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.\n\n**Mishap.** The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the GM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).", "document": "srd", "level": 7, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "10 feet", @@ -9081,7 +9081,7 @@ "desc": "As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied. Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence-a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on the Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute. You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to teleport when you cast the spell in this way.", "document": "srd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "10 feet", @@ -9112,7 +9112,7 @@ "desc": "You manifest a minor wonder, a sign of supernatural power, within range. You create one of the following magical effects within range. \n- Your voice booms up to three times as loud as normal for 1 minute. \n- You cause flames to flicker, brighten, dim, or change color for 1 minute. \n- You cause harmless tremors in the ground for 1 minute. \n- You create an instantaneous sound that originates from a point of your choice within range, such as a rumble of thunder, the cry of a raven, or ominous whispers. \n- You instantaneously cause an unlocked door or window to fly open or slam shut. \n- You alter the appearance of your eyes for 1 minute. \nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", "document": "srd", "level": 0, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -9143,7 +9143,7 @@ "desc": "A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed. In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.", "document": "srd", "level": 1, - "school": "Evocation", + "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", @@ -9176,7 +9176,7 @@ "desc": "You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal. This spell ends if one of the actions you use during this period, or any effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.", "document": "srd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9207,7 +9207,7 @@ "desc": "A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area. Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside. Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.", "document": "srd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "area", "range": "Self", @@ -9238,7 +9238,7 @@ "desc": "This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.", "document": "srd", "level": 3, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9269,7 +9269,7 @@ "desc": "This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of movement.", "document": "srd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "10 feet", @@ -9300,7 +9300,7 @@ "desc": "You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered. You can use this transportation ability once per round for the duration. You must end each turn outside a tree.", "document": "srd", "level": 5, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9331,7 +9331,7 @@ "desc": "Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into an object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full duration, the transformation lasts until it is dispelled. This spell has no effect on a shapechanger or a creature with 0 hit points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.\n\n**Creature into Creature.** If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the new form. It retains its alignment and personality. The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech unless its new form is capable of such actions. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.\n\n**Object into Creature.** You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's statistics and resolves all of its actions and movement. If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\n **Creature into Object.** If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.", "document": "srd", "level": 9, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9362,7 +9362,7 @@ "desc": "You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points. This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.", "document": "srd", "level": 9, - "school": "Necromancy", + "school": "necromancy", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9393,7 +9393,7 @@ "desc": "This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.", "document": "srd", "level": 6, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9424,7 +9424,7 @@ "desc": "You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.", "document": "srd", "level": 0, - "school": "Divination", + "school": "divination", "higher_level": "", "target_type": "point", "range": "30 feet", @@ -9455,7 +9455,7 @@ "desc": "This spell creates an invisible, mindless, shapeless force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends. Once on each of your turns as a bonus action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wind. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command. If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.", "document": "srd", "level": 1, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -9486,7 +9486,7 @@ "desc": "The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.", "document": "srd", "level": 3, - "school": "Necromancy", + "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", @@ -9519,7 +9519,7 @@ "desc": "You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.", "document": "srd", "level": 0, - "school": "Enchantment", + "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", @@ -9550,7 +9550,7 @@ "desc": "You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration. When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save. One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet o f that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side o f the wall deals no damage. The other side of the wall deals no damage.", "document": "srd", "level": 4, - "school": "Evocation", + "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", @@ -9583,7 +9583,7 @@ "desc": "An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side). Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by dispel magic. A disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.", "document": "srd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -9614,7 +9614,7 @@ "desc": "You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the duration. If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save. The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 6, - "school": "Evocation", + "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", @@ -9647,7 +9647,7 @@ "desc": "A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a dexterity saving throw. On a success, it can use its reaction to move up to its speed so that it is no longer enclosed by the wall. The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp. If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on. The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 hit points per inch of thickness. Reducing a panel to 0 hit points destroys it and might cause connected panels to collapse at the DM's discretion. If you maintain your concentration on this spell for its whole duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.", "document": "srd", "level": 5, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -9678,7 +9678,7 @@ "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight. When the wall appears, each creature within its area must make a dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save. A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.", "document": "srd", "level": 6, - "school": "Conjuration", + "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", @@ -9711,7 +9711,7 @@ "desc": "This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage. The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.", "document": "srd", "level": 2, - "school": "Abjuration", + "school": "abjuration", "higher_level": "", "target_type": "creature", "range": "Touch", @@ -9742,7 +9742,7 @@ "desc": "This spell gives a maximum of ten willing creatures within range and you can see, the ability to breathe underwater until the end of its term. Affected creatures also retain their normal breathing pattern.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9773,7 +9773,7 @@ "desc": "This spell grants the ability to move across any liquid surface-such as water, acid, mud, snow, quicksand, or lava-as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration. If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.", "document": "srd", "level": 3, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9804,7 +9804,7 @@ "desc": "You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the duration. The webs are difficult terrain and lightly obscure their area. If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet. Each creature that starts its turn in the webs or that enters them during its turn must make a dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", "document": "srd", "level": 2, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "point", "range": "60 feet", @@ -9835,7 +9835,7 @@ "desc": "Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a wisdom saving throw. On a failed save, a creature becomes frightened for the duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the start of each of the frightened creature's turns, it must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.", "document": "srd", "level": 9, - "school": "Illusion", + "school": "illusion", "higher_level": "", "target_type": "creature", "range": "120 feet", @@ -9866,7 +9866,7 @@ "desc": "You and up to ten willing creatures you can see within range assume a gaseous form for the duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation. If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.", "document": "srd", "level": 6, - "school": "Transmutation", + "school": "transmutation", "higher_level": "", "target_type": "creature", "range": "30 feet", @@ -9897,7 +9897,7 @@ "desc": "A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the duration. When the wall appears, each creature within its area must make a strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one. The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.", "document": "srd", "level": 3, - "school": "Evocation", + "school": "evocation", "higher_level": "", "target_type": "point", "range": "120 feet", @@ -9930,7 +9930,7 @@ "desc": "Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires. The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly components. The spell simply takes effect. Alternatively, you can create one of the following effects of your choice: \n- You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground. \n- You allow up to twenty creatures that you can see to regain all hit points, and you end all effects on them described in the greater restoration spell. \n- You grant up to ten creatures you can see resistance to a damage type you choose. \n- You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack. \n- You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll. \nYou might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner. The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a long rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.", "document": "srd", "level": 9, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "Self", @@ -9961,7 +9961,7 @@ "desc": "You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect. You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.", "document": "srd", "level": 6, - "school": "Conjuration", + "school": "conjuration", "higher_level": "", "target_type": "creature", "range": "5 feet", @@ -9992,7 +9992,7 @@ "desc": "You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw. An affected creature is aware of the fate and can avoid answering questions she would normally have responded with a lie. Such a creature can remain evasive in his answers as they remain within the limits of truth.", "document": "srd", "level": 2, - "school": "Enchantment", + "school": "enchantment", "higher_level": "", "target_type": "point", "range": "60 feet", diff --git a/data/v2/wizards-of-the-coast/srd/SpellSchool.json b/data/v2/wizards-of-the-coast/srd/SpellSchool.json new file mode 100644 index 00000000..69ed0ea1 --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/SpellSchool.json @@ -0,0 +1,74 @@ +[ +{ + "model": "api_v2.spellschool", + "pk": "abjuration", + "fields": { + "name": "Abjuration", + "desc": "**Abjuration** spells are protective in nature, though some of them have aggressive uses. They create magical barriers, negate harmful effects, harm trespassers, or banish creatures to other planes of existence.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "conjuration", + "fields": { + "name": "Conjuration", + "desc": "**Conjuration** spells involve the transportation of objects and creatures from one location to another. Some spells summon creatures or objects to the caster’s side, whereas others allow the caster to teleport to another location. Some conjurations create objects or effects out of nothing.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "divination", + "fields": { + "name": "Divination", + "desc": "**Divination** spells reveal information, whether in the form of secrets long forgotten, glimpses of the future, the locations of hidden things, the truth behind illusions, or visions of distant people or places.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "enchantment", + "fields": { + "name": "Enchantment", + "desc": "**Enchantment** spells affect the minds of others, influencing or controlling their behavior. Such spells can make enemies see the caster as a friend, force creatures to take a course of action, or even control another creature like a puppet.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "evocation", + "fields": { + "name": "Evocation", + "desc": "**Evocation** spells manipulate magical energy to produce a desired effect. Some call up blasts of fire or lightning. Others channel positive energy to heal wounds.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "illusion", + "fields": { + "name": "Illusion", + "desc": "**Illusion** spells deceive the senses or minds of others. They cause people to see things that are not there, to miss things that are there, to hear phantom noises, or to remember things that never happened. Some illusions create phantom images that any creature can see, but the most insidious illusions plant an image directly in the mind of a creature.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "necromancy", + "fields": { + "name": "Necromancy", + "desc": "**Necromancy** spells manipulate the energies of life and death. Such spells can grant an extra reserve of life force, drain the life energy from another creature, create the undead, or even bring the dead back to life.\r\nCreating the undead through the use of necromancy spells such as animate dead is not a good act, and only evil casters use such spells frequently.", + "document": "srd" + } +}, +{ + "model": "api_v2.spellschool", + "pk": "transmutation", + "fields": { + "name": "Transmutation", + "desc": "**Transmutation** spells change the properties of a creature, object, or environment. They might turn an enemy into a harmless creature, bolster the strength of an ally, make an object move at the caster’s command, or enhance a creature’s innate healing abilities to rapidly recover from injury.", + "document": "srd" + } +} +] diff --git a/scripts/data_manipulation/remapdmg.py b/scripts/data_manipulation/remapdmg.py new file mode 100644 index 00000000..715d553f --- /dev/null +++ b/scripts/data_manipulation/remapdmg.py @@ -0,0 +1,17 @@ +from api_v2 import models as v2 + + +# Run this by: +#$ python manage.py shell -c 'from scripts.data_manipulation.spell import casting_option_generate; casting_option_generate()' + +def remapdmg(): + print("REMAPPING dmg FOR monsters") + for ca in v2.CreatureAttack.objects.all(): + if ca.extra_damage_type_OLD is not None: + for dt in v2.DamageType.objects.all(): + if ca.extra_damage_type_OLD.lower() == dt.key: + mapped_dt = dt + ca.extra_damage_type = mapped_dt + ca.save() + print("key:{} dmg_old:{} dmg_new:{}".format(ca.pk, ca.extra_damage_type_OLD, dt.key)) + \ No newline at end of file diff --git a/scripts/data_manipulation/remaprarity.py b/scripts/data_manipulation/remaprarity.py new file mode 100644 index 00000000..49bd5dc6 --- /dev/null +++ b/scripts/data_manipulation/remaprarity.py @@ -0,0 +1,16 @@ +from api_v2 import models as v2 + + +# Run this by: +#$ python manage.py shell -c 'from scripts.data_manipulation.spell import casting_option_generate; casting_option_generate()' + +def remaprarity(): + print("REMAPPING RARITY FOR ITEMS") + for item in v2.Item.objects.all(): + if item.rarity_integer is not None: + for rarity in v2.ItemRarity.objects.all(): + if item.rarity_integer == rarity.rank: + mapped_rarity = rarity + print("key:{} size_int:{} mapped_size:{}".format(item.key, item.rarity, mapped_rarity.name)) + item.rarity = mapped_rarity + item.save() diff --git a/scripts/data_manipulation/remapschool.py b/scripts/data_manipulation/remapschool.py new file mode 100644 index 00000000..c2631b03 --- /dev/null +++ b/scripts/data_manipulation/remapschool.py @@ -0,0 +1,19 @@ +from api import models as v1 +from api_v2 import models as v2 + + +# Run this by: +#$ python manage.py shell -c 'from scripts.data_manipulation.spell import casting_option_generate; casting_option_generate()' + +def remapschool(): + print("REMAPPING RARITY FOR ITEMS") + for spell in v2.Spell.objects.all(): + spell_v1 = v1.Spell.objects.filter(slug=spell.key).first() + + print("key:{} v2school:{} v1school:{}".format(spell.key,spell.school,spell_v1.school)) + + spell.school = v2.SpellSchool.objects.get(key=spell_v1.school.lower()) + spell.save() + #spell.school = ss + #spell.school.save() + diff --git a/scripts/data_manipulation/remapsize.py b/scripts/data_manipulation/remapsize.py new file mode 100644 index 00000000..43cfd92f --- /dev/null +++ b/scripts/data_manipulation/remapsize.py @@ -0,0 +1,26 @@ +from api_v2 import models as v2 + + +# Run this by: +#$ python manage.py shell -c 'from scripts.data_manipulation.spell import casting_option_generate; casting_option_generate()' + +def remapsize(): + """print("REMAPPING SIZE FOR ITEMS") + for item in v2.Item.objects.all(): + for size in v2.Size.objects.all(): + if item.size_integer == size.rank: + mapped_size = size + print("key:{} size_int:{} mapped_size:{}".format(item.key, item.size_integer, mapped_size.name)) + item.size = mapped_size + item.save() + """ + + print("REMAPPING SIZE FOR CREATURES") + for creature in v2.Creature.objects.all(): + for size in v2.Size.objects.all(): + if creature.size_integer==size.rank: + mapped_size=size + creature.size=mapped_size + creature.save() + + print("key:{} size_int:{} mapped_size:{}".format(creature.key, creature.size_integer, mapped_size.name)) \ No newline at end of file diff --git a/scripts/data_manipulation/remapweapons.py b/scripts/data_manipulation/remapweapons.py new file mode 100644 index 00000000..d7b06998 --- /dev/null +++ b/scripts/data_manipulation/remapweapons.py @@ -0,0 +1,17 @@ +from api_v2 import models as v2 + + +# Run this by: +#$ python manage.py shell -c 'from scripts.data_manipulation.spell import casting_option_generate; casting_option_generate()' + +def remapdmg(): + print("REMAPPING dmg FOR monsters") + for w in v2.Weapon.objects.all(): + if w.damage_type_old is not None: + for dt in v2.DamageType.objects.all(): + if w.damage_type_old.lower() == dt.key: + mapped_dt = dt + w.damage_type = mapped_dt + w.save() + print("key:{} dmg_old:{} dmg_new:{}".format(w.pk, w.damage_type_old, dt.key)) + \ No newline at end of file diff --git a/server/urls.py b/server/urls.py index db430230..e3b11200 100644 --- a/server/urls.py +++ b/server/urls.py @@ -72,7 +72,9 @@ router_v2.register(r'conditions',views_v2.ConditionViewSet) router_v2.register(r'spells',views_v2.SpellViewSet) router_v2.register(r'classes',views_v2.CharacterClassViewSet) - + router_v2.register(r'sizes',views_v2.SizeViewSet) + router_v2.register(r'itemrarities',views_v2.ItemRarityViewSet) + # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ @@ -80,6 +82,7 @@ #url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), re_path(r'^search/', include('haystack.urls')), re_path(r'^version/', views.get_version, name="version"), + re_path(r'^v2/enums/', views_v2.get_enums, name="enums"), # Versioned API routes (above routes default to v1)