From 966d738d109184372ddf778016fbe8a40f0438fb Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sat, 4 Nov 2023 19:16:23 -0500 Subject: [PATCH] Stable item category. --- api_v2/admin.py | 3 +- ...0023_rename_category_item_category_text.py | 18 + api_v2/migrations/0024_itemcategory.py | 23 + api_v2/migrations/0025_auto_20231105_0009.py | 23 + api_v2/migrations/0026_auto_20231105_0015.py | 25 + api_v2/models/__init__.py | 1 + api_v2/models/item.py | 5 +- api_v2/views/item.py | 2 +- data/v2/kobold-press/vault-of-magic/Item.json | 2136 ++++++++--------- data/v2/wizards-of-the-coast/srd/Item.json | 1444 +++++------ 10 files changed, 1887 insertions(+), 1793 deletions(-) create mode 100644 api_v2/migrations/0023_rename_category_item_category_text.py create mode 100644 api_v2/migrations/0024_itemcategory.py create mode 100644 api_v2/migrations/0025_auto_20231105_0009.py create mode 100644 api_v2/migrations/0026_auto_20231105_0015.py diff --git a/api_v2/admin.py b/api_v2/admin.py index 80e3f967..a8b211a2 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -10,7 +10,7 @@ class FromDocumentModelAdmin(admin.ModelAdmin): class ItemModelAdmin(admin.ModelAdmin): - list_display = ['key', 'category', 'name'] + list_display = ['key', 'name'] class TraitInline(admin.TabularInline): @@ -77,6 +77,7 @@ class LanguageAdmin(admin.ModelAdmin): admin.site.register(Weapon, admin_class=FromDocumentModelAdmin) admin.site.register(Armor, admin_class=FromDocumentModelAdmin) +admin.site.register(ItemCategory) admin.site.register(Item, admin_class=ItemModelAdmin) admin.site.register(ItemSet, admin_class=FromDocumentModelAdmin) diff --git a/api_v2/migrations/0023_rename_category_item_category_text.py b/api_v2/migrations/0023_rename_category_item_category_text.py new file mode 100644 index 00000000..d7751f34 --- /dev/null +++ b/api_v2/migrations/0023_rename_category_item_category_text.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2023-11-04 23:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0022_condition'), + ] + + operations = [ + migrations.RenameField( + model_name='item', + old_name='category', + new_name='category_text', + ), + ] diff --git a/api_v2/migrations/0024_itemcategory.py b/api_v2/migrations/0024_itemcategory.py new file mode 100644 index 00000000..fbade8c4 --- /dev/null +++ b/api_v2/migrations/0024_itemcategory.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2023-11-05 00:06 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0023_rename_category_item_category_text'), + ] + + operations = [ + migrations.CreateModel( + name='ItemCategory', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(help_text='Name of the item.', max_length=100)), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/api_v2/migrations/0025_auto_20231105_0009.py b/api_v2/migrations/0025_auto_20231105_0009.py new file mode 100644 index 00000000..f0dc0caa --- /dev/null +++ b/api_v2/migrations/0025_auto_20231105_0009.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2023-11-05 00:09 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0024_itemcategory'), + ] + + operations = [ + migrations.RemoveField( + model_name='itemcategory', + name='id', + ), + migrations.AddField( + model_name='itemcategory', + name='key', + field=models.CharField(default='key', help_text='Unique key for the ItemCategory.', max_length=100, primary_key=True, serialize=False), + preserve_default=False, + ), + ] diff --git a/api_v2/migrations/0026_auto_20231105_0015.py b/api_v2/migrations/0026_auto_20231105_0015.py new file mode 100644 index 00000000..cafddb57 --- /dev/null +++ b/api_v2/migrations/0026_auto_20231105_0015.py @@ -0,0 +1,25 @@ +# Generated by Django 3.2.20 on 2023-11-05 00:15 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0025_auto_20231105_0009'), + ] + + operations = [ + migrations.AddField( + model_name='itemcategory', + name='document', + field=models.ForeignKey(default='srd', on_delete=django.db.models.deletion.CASCADE, to='api_v2.document'), + preserve_default=False, + ), + migrations.AlterField( + model_name='itemcategory', + name='key', + field=models.CharField(help_text='Unique key for the Item.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 7b8a782c..c3d12196 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -2,6 +2,7 @@ from .abilities import Abilities +from .item import ItemCategory from .item import Item from .item import ItemSet diff --git a/api_v2/models/item.py b/api_v2/models/item.py index 6a37373e..e0205295 100644 --- a/api_v2/models/item.py +++ b/api_v2/models/item.py @@ -10,6 +10,9 @@ from .abstracts import Object, HasName, HasDescription from .document import FromDocument +class ItemCategory(HasName, FromDocument): + """A class describing categories of items.""" + pass class Item(Object, HasDescription, FromDocument): """ @@ -61,7 +64,7 @@ class Item(Object, HasDescription, FromDocument): ('tools', 'Tools') ] - category = models.CharField( + category_text = models.CharField( null=False, choices=CATEGORY_CHOICES, max_length=100, diff --git a/api_v2/views/item.py b/api_v2/views/item.py index dc51458f..9b94a38f 100644 --- a/api_v2/views/item.py +++ b/api_v2/views/item.py @@ -20,7 +20,7 @@ class Meta: 'weight': ['exact', 'range', 'gt', 'gte', 'lt', 'lte'], 'rarity': ['exact', 'in', ], 'requires_attunement': ['exact'], - 'category': ['in', 'iexact', 'exact'], + #'category': ['in', 'iexact', 'exact'], 'document__key': ['in','iexact','exact'] } diff --git a/data/v2/kobold-press/vault-of-magic/Item.json b/data/v2/kobold-press/vault-of-magic/Item.json index 6ee847f9..bcba4b18 100644 --- a/data/v2/kobold-press/vault-of-magic/Item.json +++ b/data/v2/kobold-press/vault-of-magic/Item.json @@ -13,7 +13,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -32,7 +32,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -51,7 +51,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -70,7 +70,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -89,7 +89,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -108,7 +108,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -127,7 +127,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -146,7 +146,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -165,7 +165,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -184,7 +184,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -203,7 +203,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -222,7 +222,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -241,7 +241,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -260,7 +260,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -279,7 +279,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -298,7 +298,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -317,7 +317,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -336,7 +336,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -355,7 +355,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -374,7 +374,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -393,7 +393,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -412,7 +412,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -431,7 +431,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -450,7 +450,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -469,7 +469,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -488,7 +488,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -507,7 +507,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -526,7 +526,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -545,7 +545,7 @@ "cost": "0.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -564,7 +564,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -583,7 +583,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -602,7 +602,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -621,7 +621,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -640,7 +640,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 4 } @@ -659,7 +659,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -678,7 +678,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -697,7 +697,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -716,7 +716,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 1 } @@ -735,7 +735,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 5 } @@ -754,7 +754,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -773,7 +773,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -792,7 +792,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -811,7 +811,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -830,7 +830,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -849,7 +849,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -868,7 +868,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -887,7 +887,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -906,7 +906,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -925,7 +925,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -944,7 +944,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -963,7 +963,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -982,7 +982,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1001,7 +1001,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1020,7 +1020,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1039,7 +1039,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1058,7 +1058,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1077,7 +1077,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1096,7 +1096,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1115,7 +1115,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1134,7 +1134,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -1153,7 +1153,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": true, "rarity": 4 } @@ -1172,7 +1172,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1191,7 +1191,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1210,7 +1210,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -1229,7 +1229,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1248,7 +1248,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1267,7 +1267,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -1286,7 +1286,7 @@ "cost": "0.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -1305,7 +1305,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -1324,7 +1324,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 5 } @@ -1343,7 +1343,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1362,7 +1362,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1381,7 +1381,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -1400,7 +1400,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -1419,7 +1419,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -1438,7 +1438,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1457,7 +1457,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1476,7 +1476,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1495,7 +1495,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -1514,7 +1514,7 @@ "cost": "0.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1533,7 +1533,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1552,7 +1552,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1571,7 +1571,7 @@ "cost": "0.00", "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1590,7 +1590,7 @@ "cost": "0.00", "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1609,7 +1609,7 @@ "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1628,7 +1628,7 @@ "cost": "0.00", "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1647,7 +1647,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1666,7 +1666,7 @@ "cost": "0.00", "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1685,7 +1685,7 @@ "cost": "0.00", "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1704,7 +1704,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1723,7 +1723,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1742,7 +1742,7 @@ "cost": "0.00", "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1761,7 +1761,7 @@ "cost": "0.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1780,7 +1780,7 @@ "cost": "0.00", "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1799,7 +1799,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1818,7 +1818,7 @@ "cost": "0.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1837,7 +1837,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1856,7 +1856,7 @@ "cost": "0.00", "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1875,7 +1875,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1894,7 +1894,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1913,7 +1913,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1932,7 +1932,7 @@ "cost": "0.00", "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1951,7 +1951,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1970,7 +1970,7 @@ "cost": "0.00", "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -1989,7 +1989,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2008,7 +2008,7 @@ "cost": "0.00", "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2027,7 +2027,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2046,7 +2046,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2065,7 +2065,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -2084,7 +2084,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -2103,7 +2103,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -2122,7 +2122,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2141,7 +2141,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2160,7 +2160,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2179,7 +2179,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2198,7 +2198,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2217,7 +2217,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2236,7 +2236,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2255,7 +2255,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2274,7 +2274,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2293,7 +2293,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2312,7 +2312,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2331,7 +2331,7 @@ "cost": "0.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -2350,7 +2350,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2369,7 +2369,7 @@ "cost": "0.00", "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2388,7 +2388,7 @@ "cost": "0.00", "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2407,7 +2407,7 @@ "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2426,7 +2426,7 @@ "cost": "0.00", "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2445,7 +2445,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2464,7 +2464,7 @@ "cost": "0.00", "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2483,7 +2483,7 @@ "cost": "0.00", "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2502,7 +2502,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2521,7 +2521,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2540,7 +2540,7 @@ "cost": "0.00", "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2559,7 +2559,7 @@ "cost": "0.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2578,7 +2578,7 @@ "cost": "0.00", "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2597,7 +2597,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2616,7 +2616,7 @@ "cost": "0.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2635,7 +2635,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2654,7 +2654,7 @@ "cost": "0.00", "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2673,7 +2673,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2692,7 +2692,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2711,7 +2711,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2730,7 +2730,7 @@ "cost": "0.00", "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2749,7 +2749,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2768,7 +2768,7 @@ "cost": "0.00", "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2787,7 +2787,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2806,7 +2806,7 @@ "cost": "0.00", "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2825,7 +2825,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2844,7 +2844,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2863,7 +2863,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -2882,7 +2882,7 @@ "cost": "0.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2901,7 +2901,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -2920,7 +2920,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -2939,7 +2939,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -2958,7 +2958,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -2977,7 +2977,7 @@ "cost": "0.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -2996,7 +2996,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -3015,7 +3015,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -3034,7 +3034,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3053,7 +3053,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3072,7 +3072,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3091,7 +3091,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3110,7 +3110,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -3129,7 +3129,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3148,7 +3148,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3167,7 +3167,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3186,7 +3186,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3205,7 +3205,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3224,7 +3224,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3243,7 +3243,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3262,7 +3262,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -3281,7 +3281,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -3300,7 +3300,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -3319,7 +3319,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3338,7 +3338,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3357,7 +3357,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -3376,7 +3376,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -3395,7 +3395,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -3414,7 +3414,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3433,7 +3433,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -3452,7 +3452,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -3471,7 +3471,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -3490,7 +3490,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3509,7 +3509,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3528,7 +3528,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3547,7 +3547,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3566,7 +3566,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3585,7 +3585,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -3604,7 +3604,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3623,7 +3623,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -3642,7 +3642,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -3661,7 +3661,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3680,7 +3680,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -3699,7 +3699,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3718,7 +3718,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3737,7 +3737,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3756,7 +3756,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3775,7 +3775,7 @@ "cost": "0.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3794,7 +3794,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3813,7 +3813,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3832,7 +3832,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3851,7 +3851,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -3870,7 +3870,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -3889,7 +3889,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3908,7 +3908,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3927,7 +3927,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -3946,7 +3946,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -3965,7 +3965,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3984,7 +3984,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4003,7 +4003,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -4022,7 +4022,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -4041,7 +4041,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -4060,7 +4060,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -4079,7 +4079,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -4098,7 +4098,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4117,7 +4117,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4136,7 +4136,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4155,7 +4155,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -4174,7 +4174,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -4193,7 +4193,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -4212,7 +4212,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -4231,7 +4231,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4250,7 +4250,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -4269,7 +4269,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -4288,7 +4288,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4307,7 +4307,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4326,7 +4326,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4345,7 +4345,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4364,7 +4364,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4383,7 +4383,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4402,7 +4402,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4421,7 +4421,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4440,7 +4440,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4459,7 +4459,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4478,7 +4478,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -4497,7 +4497,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -4516,7 +4516,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4535,7 +4535,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4554,7 +4554,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4573,7 +4573,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4592,7 +4592,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4611,7 +4611,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4630,7 +4630,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4649,7 +4649,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -4668,7 +4668,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -4687,7 +4687,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4706,7 +4706,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4725,7 +4725,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4744,7 +4744,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4763,7 +4763,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -4782,7 +4782,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4801,7 +4801,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -4820,7 +4820,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4839,7 +4839,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4858,7 +4858,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4877,7 +4877,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -4896,7 +4896,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4915,7 +4915,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4934,7 +4934,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4953,7 +4953,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4972,7 +4972,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4991,7 +4991,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5010,7 +5010,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5029,7 +5029,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5048,7 +5048,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5067,7 +5067,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -5086,7 +5086,7 @@ "cost": "0.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5105,7 +5105,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5124,7 +5124,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5143,7 +5143,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -5162,7 +5162,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5181,7 +5181,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5200,7 +5200,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5219,7 +5219,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -5238,7 +5238,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -5257,7 +5257,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -5276,7 +5276,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5295,7 +5295,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -5314,7 +5314,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5333,7 +5333,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -5352,7 +5352,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -5371,7 +5371,7 @@ "cost": "0.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -5390,7 +5390,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -5409,7 +5409,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -5428,7 +5428,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -5447,7 +5447,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5466,7 +5466,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -5485,7 +5485,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -5504,7 +5504,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5523,7 +5523,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -5542,7 +5542,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -5561,7 +5561,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -5580,7 +5580,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -5599,7 +5599,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -5618,7 +5618,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -5637,7 +5637,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -5656,7 +5656,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -5675,7 +5675,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -5694,7 +5694,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 1 } @@ -5713,7 +5713,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -5732,7 +5732,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -5751,7 +5751,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -5770,7 +5770,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -5789,7 +5789,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5808,7 +5808,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -5827,7 +5827,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5846,7 +5846,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5865,7 +5865,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5884,7 +5884,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5903,7 +5903,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5922,7 +5922,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5941,7 +5941,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -5960,7 +5960,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 3 } @@ -5979,7 +5979,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -5998,7 +5998,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6017,7 +6017,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -6036,7 +6036,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6055,7 +6055,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -6074,7 +6074,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -6093,7 +6093,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -6112,7 +6112,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -6131,7 +6131,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6150,7 +6150,7 @@ "cost": "0.00", "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -6169,7 +6169,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 5 } @@ -6188,7 +6188,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -6207,7 +6207,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -6226,7 +6226,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -6236,7 +6236,7 @@ "pk": "doppelganger-ointment", "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.", + "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_text 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, "weight": "0.000", "armor_class": 0, @@ -6245,7 +6245,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -6264,7 +6264,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -6283,7 +6283,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -6302,7 +6302,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -6321,7 +6321,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6340,7 +6340,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -6359,7 +6359,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -6378,7 +6378,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6397,7 +6397,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6416,7 +6416,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -6435,7 +6435,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6454,7 +6454,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6473,7 +6473,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6492,7 +6492,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -6511,7 +6511,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 2 } @@ -6530,7 +6530,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6549,7 +6549,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -6568,7 +6568,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -6587,7 +6587,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -6606,7 +6606,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -6625,7 +6625,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -6644,7 +6644,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -6663,7 +6663,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -6682,7 +6682,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -6701,7 +6701,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -6720,7 +6720,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -6739,7 +6739,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6758,7 +6758,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6777,7 +6777,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6796,7 +6796,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6815,7 +6815,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6834,7 +6834,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6853,7 +6853,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6872,7 +6872,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6891,7 +6891,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6910,7 +6910,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6929,7 +6929,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6948,7 +6948,7 @@ "cost": "0.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -6967,7 +6967,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -6986,7 +6986,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -7005,7 +7005,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7024,7 +7024,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7043,7 +7043,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -7062,7 +7062,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -7081,7 +7081,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -7100,7 +7100,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7119,7 +7119,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -7138,7 +7138,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -7157,7 +7157,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7176,7 +7176,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -7195,7 +7195,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -7214,7 +7214,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7233,7 +7233,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -7252,7 +7252,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -7271,7 +7271,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -7290,7 +7290,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -7309,7 +7309,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -7328,7 +7328,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -7347,7 +7347,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7366,7 +7366,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7385,7 +7385,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7404,7 +7404,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7423,7 +7423,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7442,7 +7442,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7461,7 +7461,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -7480,7 +7480,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7499,7 +7499,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7518,7 +7518,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -7537,7 +7537,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 1 } @@ -7556,7 +7556,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -7575,7 +7575,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -7594,7 +7594,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -7613,7 +7613,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7632,7 +7632,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -7651,7 +7651,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -7670,7 +7670,7 @@ "cost": "0.00", "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7689,7 +7689,7 @@ "cost": "0.00", "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7708,7 +7708,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -7727,7 +7727,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -7746,7 +7746,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7765,7 +7765,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -7784,7 +7784,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -7803,7 +7803,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -7822,7 +7822,7 @@ "cost": "0.00", "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -7841,7 +7841,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -7860,7 +7860,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -7879,7 +7879,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7898,7 +7898,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7917,7 +7917,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7936,7 +7936,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7955,7 +7955,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7974,7 +7974,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7993,7 +7993,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8012,7 +8012,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8031,7 +8031,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8050,7 +8050,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8069,7 +8069,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8088,7 +8088,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8107,7 +8107,7 @@ "cost": "0.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -8126,7 +8126,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -8145,7 +8145,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -8164,7 +8164,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -8183,7 +8183,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8202,7 +8202,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 3 } @@ -8221,7 +8221,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -8240,7 +8240,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -8259,7 +8259,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -8278,7 +8278,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -8297,7 +8297,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8316,7 +8316,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8335,7 +8335,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8354,7 +8354,7 @@ "cost": "0.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8373,7 +8373,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8392,7 +8392,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8411,7 +8411,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8430,7 +8430,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -8449,7 +8449,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8468,7 +8468,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -8487,7 +8487,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -8506,7 +8506,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -8525,7 +8525,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -8544,7 +8544,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -8563,7 +8563,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8582,7 +8582,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8601,7 +8601,7 @@ "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -8620,7 +8620,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8639,7 +8639,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8658,7 +8658,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -8677,7 +8677,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -8696,7 +8696,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 2 } @@ -8715,7 +8715,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8734,7 +8734,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8753,7 +8753,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8772,7 +8772,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8791,7 +8791,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8810,7 +8810,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8829,7 +8829,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8848,7 +8848,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8867,7 +8867,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8886,7 +8886,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8905,7 +8905,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8924,7 +8924,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8943,7 +8943,7 @@ "cost": "0.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -8962,7 +8962,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8981,7 +8981,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 4 } @@ -9000,7 +9000,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -9019,7 +9019,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -9038,7 +9038,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -9057,7 +9057,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -9076,7 +9076,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -9095,7 +9095,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": true, "rarity": 2 } @@ -9114,7 +9114,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9133,7 +9133,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -9152,7 +9152,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -9171,7 +9171,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -9190,7 +9190,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -9209,7 +9209,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9228,7 +9228,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -9247,7 +9247,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9266,7 +9266,7 @@ "cost": "0.00", "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -9285,7 +9285,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -9304,7 +9304,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9323,7 +9323,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -9342,7 +9342,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9361,7 +9361,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9380,7 +9380,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 1 } @@ -9399,7 +9399,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9418,7 +9418,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9437,7 +9437,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9456,7 +9456,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -9475,7 +9475,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -9494,7 +9494,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -9513,7 +9513,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -9532,7 +9532,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -9551,7 +9551,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -9570,7 +9570,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9589,7 +9589,7 @@ "cost": "0.00", "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -9608,7 +9608,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 2 } @@ -9627,7 +9627,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -9646,7 +9646,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -9665,7 +9665,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -9684,7 +9684,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -9703,7 +9703,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9722,7 +9722,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -9741,7 +9741,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -9760,7 +9760,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9779,7 +9779,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -9798,7 +9798,7 @@ "cost": "0.00", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -9817,7 +9817,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -9836,7 +9836,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -9855,7 +9855,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9874,7 +9874,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9893,7 +9893,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9912,7 +9912,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9931,7 +9931,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9950,7 +9950,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -9969,7 +9969,7 @@ "cost": "0.00", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -9988,7 +9988,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10007,7 +10007,7 @@ "cost": "0.00", "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10026,7 +10026,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10045,7 +10045,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10064,7 +10064,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10083,7 +10083,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10102,7 +10102,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -10112,7 +10112,7 @@ "pk": "ironskin-oil", "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.", + "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_text above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", "size": 1, "weight": "0.000", "armor_class": 0, @@ -10121,7 +10121,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -10140,7 +10140,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10159,7 +10159,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -10178,7 +10178,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -10197,7 +10197,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -10216,7 +10216,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -10235,7 +10235,7 @@ "cost": "0.00", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -10254,7 +10254,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -10273,7 +10273,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 4 } @@ -10292,7 +10292,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10311,7 +10311,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10330,7 +10330,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10349,7 +10349,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -10368,7 +10368,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10387,7 +10387,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -10406,7 +10406,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -10425,7 +10425,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -10444,7 +10444,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -10463,7 +10463,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10482,7 +10482,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10501,7 +10501,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10520,7 +10520,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10539,7 +10539,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -10558,7 +10558,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -10577,7 +10577,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 2 } @@ -10596,7 +10596,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -10615,7 +10615,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -10634,7 +10634,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -10653,7 +10653,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -10672,7 +10672,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -10691,7 +10691,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -10710,7 +10710,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -10729,7 +10729,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -10748,7 +10748,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -10767,7 +10767,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -10786,7 +10786,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -10805,7 +10805,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10824,7 +10824,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -10843,7 +10843,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -10862,7 +10862,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -10881,7 +10881,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -10900,7 +10900,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -10919,7 +10919,7 @@ "cost": "0.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -10938,7 +10938,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -10957,7 +10957,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -10976,7 +10976,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10995,7 +10995,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -11014,7 +11014,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -11033,7 +11033,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11052,7 +11052,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11071,7 +11071,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -11090,7 +11090,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11109,7 +11109,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -11128,7 +11128,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11147,7 +11147,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -11166,7 +11166,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -11185,7 +11185,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11204,7 +11204,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11223,7 +11223,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11242,7 +11242,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -11261,7 +11261,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11280,7 +11280,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -11299,7 +11299,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -11318,7 +11318,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -11337,7 +11337,7 @@ "cost": "0.00", "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -11356,7 +11356,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -11375,7 +11375,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -11394,7 +11394,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -11413,7 +11413,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11432,7 +11432,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -11451,7 +11451,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -11470,7 +11470,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -11489,7 +11489,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -11508,7 +11508,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -11527,7 +11527,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -11546,7 +11546,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -11565,7 +11565,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -11584,7 +11584,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11603,7 +11603,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11622,7 +11622,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11641,7 +11641,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -11660,7 +11660,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -11679,7 +11679,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11698,7 +11698,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11717,7 +11717,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11736,7 +11736,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11755,7 +11755,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11774,7 +11774,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11793,7 +11793,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11812,7 +11812,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -11831,7 +11831,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -11850,7 +11850,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -11869,7 +11869,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -11888,7 +11888,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -11907,7 +11907,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -11926,7 +11926,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -11945,7 +11945,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -11964,7 +11964,7 @@ "cost": "0.00", "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -11983,7 +11983,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12002,7 +12002,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12021,7 +12021,7 @@ "cost": "0.00", "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12040,7 +12040,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12059,7 +12059,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12078,7 +12078,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12097,7 +12097,7 @@ "cost": "0.00", "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12116,7 +12116,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12135,7 +12135,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -12154,7 +12154,7 @@ "cost": "0.00", "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -12173,7 +12173,7 @@ "cost": "0.00", "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -12192,7 +12192,7 @@ "cost": "0.00", "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -12211,7 +12211,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12230,7 +12230,7 @@ "cost": "0.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12249,7 +12249,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12268,7 +12268,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12287,7 +12287,7 @@ "cost": "0.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12306,7 +12306,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12325,7 +12325,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -12344,7 +12344,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -12363,7 +12363,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -12382,7 +12382,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -12401,7 +12401,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -12420,7 +12420,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -12439,7 +12439,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -12458,7 +12458,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -12477,7 +12477,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -12496,7 +12496,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 1 } @@ -12515,7 +12515,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -12534,7 +12534,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -12553,7 +12553,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -12563,7 +12563,7 @@ "pk": "odorless-oil", "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.", + "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_text 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, "weight": "0.000", "armor_class": 0, @@ -12572,7 +12572,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -12591,7 +12591,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -12610,7 +12610,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -12629,7 +12629,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -12648,7 +12648,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -12658,7 +12658,7 @@ "pk": "oil-of-numbing", "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.", + "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_text 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, "weight": "0.000", "armor_class": 0, @@ -12667,7 +12667,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -12686,7 +12686,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -12705,7 +12705,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -12724,7 +12724,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -12743,7 +12743,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -12762,7 +12762,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -12781,7 +12781,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -12800,7 +12800,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -12819,7 +12819,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 2 } @@ -12838,7 +12838,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -12857,7 +12857,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -12876,7 +12876,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -12895,7 +12895,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -12914,7 +12914,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -12933,7 +12933,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -12952,7 +12952,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -12971,7 +12971,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -12990,7 +12990,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -13009,7 +13009,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -13028,7 +13028,7 @@ "cost": "0.00", "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -13047,7 +13047,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13066,7 +13066,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -13085,7 +13085,7 @@ "cost": "0.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -13104,7 +13104,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -13123,7 +13123,7 @@ "cost": "0.00", "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -13142,7 +13142,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -13161,7 +13161,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -13180,7 +13180,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -13199,7 +13199,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -13218,7 +13218,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -13237,7 +13237,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -13256,7 +13256,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -13275,7 +13275,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -13294,7 +13294,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -13313,7 +13313,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13332,7 +13332,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13351,7 +13351,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13370,7 +13370,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13389,7 +13389,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13408,7 +13408,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13427,7 +13427,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13446,7 +13446,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -13465,7 +13465,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13484,7 +13484,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -13503,7 +13503,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -13522,7 +13522,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13541,7 +13541,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13560,7 +13560,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -13579,7 +13579,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -13598,7 +13598,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -13617,7 +13617,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -13636,7 +13636,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -13655,7 +13655,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -13674,7 +13674,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -13693,7 +13693,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -13712,7 +13712,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -13731,7 +13731,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -13750,7 +13750,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -13769,7 +13769,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -13788,7 +13788,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -13807,7 +13807,7 @@ "cost": "0.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -13826,7 +13826,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -13845,7 +13845,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -13864,7 +13864,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -13883,7 +13883,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -13902,7 +13902,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -13921,7 +13921,7 @@ "cost": "0.00", "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -13940,7 +13940,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -13959,7 +13959,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -13978,7 +13978,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -13997,7 +13997,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -14016,7 +14016,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -14035,7 +14035,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -14054,7 +14054,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -14073,7 +14073,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -14092,7 +14092,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14111,7 +14111,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14130,7 +14130,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 1 } @@ -14149,7 +14149,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -14168,7 +14168,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14187,7 +14187,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14206,7 +14206,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14225,7 +14225,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14244,7 +14244,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14263,7 +14263,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14282,7 +14282,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14301,7 +14301,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 1 } @@ -14320,7 +14320,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 4 } @@ -14339,7 +14339,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 1 } @@ -14358,7 +14358,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 1 } @@ -14377,7 +14377,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14396,7 +14396,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14415,7 +14415,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -14434,7 +14434,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14453,7 +14453,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14472,7 +14472,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14491,7 +14491,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14510,7 +14510,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -14529,7 +14529,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -14548,7 +14548,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -14567,7 +14567,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14586,7 +14586,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 3 } @@ -14605,7 +14605,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 2 } @@ -14624,7 +14624,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 3 } @@ -14643,7 +14643,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 5 } @@ -14662,7 +14662,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14681,7 +14681,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14700,7 +14700,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14719,7 +14719,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 1 } @@ -14738,7 +14738,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14757,7 +14757,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -14776,7 +14776,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14795,7 +14795,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 2 } @@ -14814,7 +14814,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -14833,7 +14833,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14852,7 +14852,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14871,7 +14871,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 5 } @@ -14890,7 +14890,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -14909,7 +14909,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 3 } @@ -14928,7 +14928,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 1 } @@ -14947,7 +14947,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 1 } @@ -14966,7 +14966,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 1 } @@ -14985,7 +14985,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -15004,7 +15004,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 2 } @@ -15023,7 +15023,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -15042,7 +15042,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -15061,7 +15061,7 @@ "cost": "0.00", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -15080,7 +15080,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -15090,7 +15090,7 @@ "pk": "royal-jelly", "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.", + "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_text above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", "size": 1, "weight": "0.000", "armor_class": 0, @@ -15099,7 +15099,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -15118,7 +15118,7 @@ "cost": "0.00", "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 5 } @@ -15137,7 +15137,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15156,7 +15156,7 @@ "cost": "0.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -15175,7 +15175,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -15194,7 +15194,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15213,7 +15213,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15232,7 +15232,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -15251,7 +15251,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -15270,7 +15270,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15289,7 +15289,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15308,7 +15308,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -15327,7 +15327,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15346,7 +15346,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -15365,7 +15365,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -15384,7 +15384,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -15403,7 +15403,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -15422,7 +15422,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -15441,7 +15441,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -15460,7 +15460,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15479,7 +15479,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -15498,7 +15498,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -15517,7 +15517,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -15536,7 +15536,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15555,7 +15555,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -15574,7 +15574,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15593,7 +15593,7 @@ "cost": "0.00", "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -15612,7 +15612,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -15631,7 +15631,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -15650,7 +15650,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15669,7 +15669,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -15688,7 +15688,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -15707,7 +15707,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -15726,7 +15726,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 1 } @@ -15745,7 +15745,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -15764,7 +15764,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -15783,7 +15783,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 1 } @@ -15802,7 +15802,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -15821,7 +15821,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -15840,7 +15840,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -15859,7 +15859,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -15878,7 +15878,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -15897,7 +15897,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15916,7 +15916,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -15935,7 +15935,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -15954,7 +15954,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -15973,7 +15973,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -15992,7 +15992,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -16011,7 +16011,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -16030,7 +16030,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16049,7 +16049,7 @@ "cost": "0.00", "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 5 } @@ -16068,7 +16068,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -16087,7 +16087,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -16106,7 +16106,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 1 } @@ -16125,7 +16125,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16144,7 +16144,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -16163,7 +16163,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -16182,7 +16182,7 @@ "cost": "0.00", "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -16201,7 +16201,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -16220,7 +16220,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -16239,7 +16239,7 @@ "cost": "0.00", "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -16258,7 +16258,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 1 } @@ -16277,7 +16277,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -16296,7 +16296,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16315,7 +16315,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -16334,7 +16334,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16353,7 +16353,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -16372,7 +16372,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16391,7 +16391,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -16410,7 +16410,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16429,7 +16429,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -16448,7 +16448,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -16467,7 +16467,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16486,7 +16486,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 1 } @@ -16505,7 +16505,7 @@ "cost": "0.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16524,7 +16524,7 @@ "cost": "0.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16543,7 +16543,7 @@ "cost": "0.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16562,7 +16562,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16581,7 +16581,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16600,7 +16600,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -16619,7 +16619,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16638,7 +16638,7 @@ "cost": "0.00", "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -16657,7 +16657,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -16676,7 +16676,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 5 } @@ -16695,7 +16695,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -16714,7 +16714,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -16733,7 +16733,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16752,7 +16752,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 2 } @@ -16771,7 +16771,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16790,7 +16790,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -16809,7 +16809,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -16828,7 +16828,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -16847,7 +16847,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -16866,7 +16866,7 @@ "cost": "0.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -16885,7 +16885,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 2 } @@ -16904,7 +16904,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 1 } @@ -16923,7 +16923,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -16942,7 +16942,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -16961,7 +16961,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -16980,7 +16980,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -16999,7 +16999,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 3 } @@ -17018,7 +17018,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -17037,7 +17037,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -17056,7 +17056,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -17075,7 +17075,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 2 } @@ -17094,7 +17094,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -17113,7 +17113,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17132,7 +17132,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17151,7 +17151,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 2 } @@ -17170,7 +17170,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -17189,7 +17189,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -17208,7 +17208,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17227,7 +17227,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17246,7 +17246,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17265,7 +17265,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17284,7 +17284,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -17303,7 +17303,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17322,7 +17322,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 1 } @@ -17341,7 +17341,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -17360,7 +17360,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17379,7 +17379,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17398,7 +17398,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17417,7 +17417,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17436,7 +17436,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17455,7 +17455,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17474,7 +17474,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17493,7 +17493,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 2 } @@ -17512,7 +17512,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -17531,7 +17531,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17550,7 +17550,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17569,7 +17569,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 2 } @@ -17588,7 +17588,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -17607,7 +17607,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -17626,7 +17626,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -17645,7 +17645,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -17664,7 +17664,7 @@ "cost": "0.00", "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -17683,7 +17683,7 @@ "cost": "0.00", "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -17702,7 +17702,7 @@ "cost": "0.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -17721,7 +17721,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -17740,7 +17740,7 @@ "cost": "0.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 2 } @@ -17759,7 +17759,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -17778,7 +17778,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -17797,7 +17797,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -17816,7 +17816,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -17835,7 +17835,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -17854,7 +17854,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -17873,7 +17873,7 @@ "cost": "0.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 2 } @@ -17892,7 +17892,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -17911,7 +17911,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -17930,7 +17930,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -17949,7 +17949,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -17968,7 +17968,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -17987,7 +17987,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -18006,7 +18006,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -18025,7 +18025,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -18044,7 +18044,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -18063,7 +18063,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -18082,7 +18082,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -18101,7 +18101,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -18120,7 +18120,7 @@ "cost": "0.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -18139,7 +18139,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -18158,7 +18158,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -18177,7 +18177,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -18196,7 +18196,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -18215,7 +18215,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -18234,7 +18234,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18253,7 +18253,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18272,7 +18272,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 4 } @@ -18291,7 +18291,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18310,7 +18310,7 @@ "cost": "0.00", "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18329,7 +18329,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -18348,7 +18348,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -18367,7 +18367,7 @@ "cost": "0.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18386,7 +18386,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -18405,7 +18405,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -18424,7 +18424,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -18443,7 +18443,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -18462,7 +18462,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18481,7 +18481,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -18500,7 +18500,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -18519,7 +18519,7 @@ "cost": "0.00", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18538,7 +18538,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18557,7 +18557,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -18576,7 +18576,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -18595,7 +18595,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -18614,7 +18614,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -18633,7 +18633,7 @@ "cost": "0.00", "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 1 } @@ -18652,7 +18652,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -18671,7 +18671,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -18690,7 +18690,7 @@ "cost": "0.00", "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -18709,7 +18709,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -18728,7 +18728,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -18747,7 +18747,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -18766,7 +18766,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -18785,7 +18785,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -18804,7 +18804,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -18823,7 +18823,7 @@ "cost": "0.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18842,7 +18842,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18861,7 +18861,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 5 } @@ -18880,7 +18880,7 @@ "cost": "0.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -18899,7 +18899,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -18918,7 +18918,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -18937,7 +18937,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -18956,7 +18956,7 @@ "cost": "0.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -18975,7 +18975,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -18994,7 +18994,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -19013,7 +19013,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -19032,7 +19032,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -19051,7 +19051,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 3 } @@ -19070,7 +19070,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -19089,7 +19089,7 @@ "cost": "0.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -19108,7 +19108,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -19127,7 +19127,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -19146,7 +19146,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -19165,7 +19165,7 @@ "cost": "0.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 3 } @@ -19184,7 +19184,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 4 } @@ -19203,7 +19203,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -19222,7 +19222,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 5 } @@ -19241,7 +19241,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -19260,7 +19260,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 4 } @@ -19279,7 +19279,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19298,7 +19298,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -19317,7 +19317,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19336,7 +19336,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19355,7 +19355,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 4 } @@ -19374,7 +19374,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19393,7 +19393,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -19412,7 +19412,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19431,7 +19431,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19450,7 +19450,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19469,7 +19469,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -19488,7 +19488,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19507,7 +19507,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -19526,7 +19526,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -19545,7 +19545,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19564,7 +19564,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -19583,7 +19583,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19602,7 +19602,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -19621,7 +19621,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -19640,7 +19640,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -19659,7 +19659,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 1 } @@ -19678,7 +19678,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -19697,7 +19697,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 1 } @@ -19716,7 +19716,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -19735,7 +19735,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -19754,7 +19754,7 @@ "cost": "0.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -19773,7 +19773,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -19792,7 +19792,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 2 } @@ -19811,7 +19811,7 @@ "cost": "0.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -19830,7 +19830,7 @@ "cost": "0.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 2 } @@ -19849,7 +19849,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -19868,7 +19868,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -19887,7 +19887,7 @@ "cost": "0.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -19906,7 +19906,7 @@ "cost": "0.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -19925,7 +19925,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -19944,7 +19944,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -19963,7 +19963,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -19982,7 +19982,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -20001,7 +20001,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -20020,7 +20020,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -20039,7 +20039,7 @@ "cost": "0.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": 4 } @@ -20058,7 +20058,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -20077,7 +20077,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -20096,7 +20096,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 1 } @@ -20115,7 +20115,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -20134,7 +20134,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -20153,7 +20153,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": 4 } @@ -20172,7 +20172,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -20191,7 +20191,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index 963a3e9e..cfdcfd02 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -13,7 +13,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -32,7 +32,7 @@ "cost": "3.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -51,7 +51,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -70,7 +70,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -89,7 +89,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -108,7 +108,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -127,7 +127,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -146,7 +146,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -165,7 +165,7 @@ "cost": "500.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -184,7 +184,7 @@ "cost": "15.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -203,7 +203,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -222,7 +222,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -241,7 +241,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -260,7 +260,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -279,7 +279,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -298,7 +298,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -317,7 +317,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -336,7 +336,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -355,7 +355,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -374,7 +374,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -393,7 +393,7 @@ "cost": null, "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -412,7 +412,7 @@ "cost": null, "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -431,7 +431,7 @@ "cost": null, "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -450,7 +450,7 @@ "cost": null, "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -469,7 +469,7 @@ "cost": null, "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -488,7 +488,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -507,7 +507,7 @@ "cost": null, "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -526,7 +526,7 @@ "cost": null, "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -545,7 +545,7 @@ "cost": null, "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -564,7 +564,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -583,7 +583,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -602,7 +602,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -621,7 +621,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -640,7 +640,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -659,7 +659,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -678,7 +678,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": true, "rarity": 4 } @@ -697,7 +697,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -716,7 +716,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -735,7 +735,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 5 } @@ -754,7 +754,7 @@ "cost": null, "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -773,7 +773,7 @@ "cost": null, "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -792,7 +792,7 @@ "cost": null, "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -811,7 +811,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 3 } @@ -830,7 +830,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": null } @@ -849,7 +849,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": true, "rarity": 3 } @@ -868,7 +868,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": 4 } @@ -887,7 +887,7 @@ "cost": "150.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -906,7 +906,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -925,7 +925,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -944,7 +944,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -963,7 +963,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -982,7 +982,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1001,7 +1001,7 @@ "cost": "30.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -1020,7 +1020,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1039,7 +1039,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1058,7 +1058,7 @@ "cost": "0.40", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1077,7 +1077,7 @@ "cost": "10.00", "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -1096,7 +1096,7 @@ "cost": null, "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -1115,7 +1115,7 @@ "cost": null, "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -1134,7 +1134,7 @@ "cost": null, "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -1153,7 +1153,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1172,7 +1172,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1191,7 +1191,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1210,7 +1210,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -1229,7 +1229,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1248,7 +1248,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1267,7 +1267,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1286,7 +1286,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1305,7 +1305,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1324,7 +1324,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -1343,7 +1343,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1362,7 +1362,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1381,7 +1381,7 @@ "cost": "10.00", "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -1400,7 +1400,7 @@ "cost": null, "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -1419,7 +1419,7 @@ "cost": null, "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -1438,7 +1438,7 @@ "cost": null, "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -1457,7 +1457,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": null } @@ -1476,7 +1476,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1495,7 +1495,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1514,7 +1514,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1533,7 +1533,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1552,7 +1552,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1571,7 +1571,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1590,7 +1590,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1609,7 +1609,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1628,7 +1628,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1647,7 +1647,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -1666,7 +1666,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1685,7 +1685,7 @@ "cost": "400.00", "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -1704,7 +1704,7 @@ "cost": "20.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -1723,7 +1723,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -1742,7 +1742,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -1761,7 +1761,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1780,7 +1780,7 @@ "cost": "500.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -1799,7 +1799,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -1818,7 +1818,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1837,7 +1837,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1856,7 +1856,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -1875,7 +1875,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -1894,7 +1894,7 @@ "cost": "8.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -1913,7 +1913,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -1932,7 +1932,7 @@ "cost": "15.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -1951,7 +1951,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1970,7 +1970,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -1989,7 +1989,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -2008,7 +2008,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2027,7 +2027,7 @@ "cost": "75.00", "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -2046,7 +2046,7 @@ "cost": "50.00", "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -2065,7 +2065,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2084,7 +2084,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2103,7 +2103,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -2122,7 +2122,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -2141,7 +2141,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -2160,7 +2160,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2179,7 +2179,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -2198,7 +2198,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -2217,7 +2217,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -2236,7 +2236,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -2255,7 +2255,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -2274,7 +2274,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -2293,7 +2293,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2312,7 +2312,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2331,7 +2331,7 @@ "cost": "15.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2350,7 +2350,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2369,7 +2369,7 @@ "cost": "0.10", "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -2388,7 +2388,7 @@ "cost": null, "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -2407,7 +2407,7 @@ "cost": null, "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -2426,7 +2426,7 @@ "cost": null, "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -2445,7 +2445,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -2464,7 +2464,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2483,7 +2483,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -2502,7 +2502,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -2521,7 +2521,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -2540,7 +2540,7 @@ "cost": "200.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -2559,7 +2559,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": null } @@ -2578,7 +2578,7 @@ "cost": "75.00", "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -2597,7 +2597,7 @@ "cost": null, "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -2616,7 +2616,7 @@ "cost": null, "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -2635,7 +2635,7 @@ "cost": null, "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -2654,7 +2654,7 @@ "cost": "50.00", "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -2673,7 +2673,7 @@ "cost": null, "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -2692,7 +2692,7 @@ "cost": null, "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -2711,7 +2711,7 @@ "cost": null, "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -2730,7 +2730,7 @@ "cost": "25.00", "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -2749,7 +2749,7 @@ "cost": null, "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -2768,7 +2768,7 @@ "cost": null, "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -2787,7 +2787,7 @@ "cost": null, "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -2806,7 +2806,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2825,7 +2825,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -2844,7 +2844,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -2863,7 +2863,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -2882,7 +2882,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -2901,7 +2901,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -2920,7 +2920,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -2939,7 +2939,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -2958,7 +2958,7 @@ "cost": "2.00", "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -2977,7 +2977,7 @@ "cost": null, "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -2996,7 +2996,7 @@ "cost": null, "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -3015,7 +3015,7 @@ "cost": null, "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -3034,7 +3034,7 @@ "cost": null, "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3053,7 +3053,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3072,7 +3072,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3091,7 +3091,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3110,7 +3110,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3129,7 +3129,7 @@ "cost": "0.05", "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3148,7 +3148,7 @@ "cost": null, "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -3167,7 +3167,7 @@ "cost": null, "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -3186,7 +3186,7 @@ "cost": null, "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -3205,7 +3205,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3224,7 +3224,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3243,7 +3243,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -3262,7 +3262,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3281,7 +3281,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3300,7 +3300,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3319,7 +3319,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -3338,7 +3338,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 4 } @@ -3357,7 +3357,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -3376,7 +3376,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3395,7 +3395,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -3414,7 +3414,7 @@ "cost": "0.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 4 } @@ -3433,7 +3433,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3452,7 +3452,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3471,7 +3471,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3490,7 +3490,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3509,7 +3509,7 @@ "cost": "200.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -3528,7 +3528,7 @@ "cost": "6.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -3547,7 +3547,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -3566,7 +3566,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3585,7 +3585,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3604,7 +3604,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3623,7 +3623,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 4 } @@ -3642,7 +3642,7 @@ "cost": null, "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -3661,7 +3661,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3680,7 +3680,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -3699,7 +3699,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3718,7 +3718,7 @@ "cost": null, "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -3737,7 +3737,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -3756,7 +3756,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -3775,7 +3775,7 @@ "cost": "300.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -3794,7 +3794,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3813,7 +3813,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -3832,7 +3832,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -3851,7 +3851,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -3870,7 +3870,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3889,7 +3889,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3908,7 +3908,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -3927,7 +3927,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3946,7 +3946,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3965,7 +3965,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -3984,7 +3984,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -4003,7 +4003,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4022,7 +4022,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4041,7 +4041,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4060,7 +4060,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -4079,7 +4079,7 @@ "cost": "10.00", "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4098,7 +4098,7 @@ "cost": null, "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -4117,7 +4117,7 @@ "cost": null, "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4136,7 +4136,7 @@ "cost": null, "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -4155,7 +4155,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4174,7 +4174,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4193,7 +4193,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4212,7 +4212,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4231,7 +4231,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -4250,7 +4250,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -4269,7 +4269,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -4288,7 +4288,7 @@ "cost": "15.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -4307,7 +4307,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4326,7 +4326,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4345,7 +4345,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4364,7 +4364,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -4383,7 +4383,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4402,7 +4402,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4421,7 +4421,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -4440,7 +4440,7 @@ "cost": null, "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4459,7 +4459,7 @@ "cost": null, "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4478,7 +4478,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4497,7 +4497,7 @@ "cost": null, "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4516,7 +4516,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4535,7 +4535,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4554,7 +4554,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4573,7 +4573,7 @@ "cost": "20.00", "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4592,7 +4592,7 @@ "cost": null, "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -4611,7 +4611,7 @@ "cost": null, "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4630,7 +4630,7 @@ "cost": null, "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -4649,7 +4649,7 @@ "cost": null, "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 3 } @@ -4668,7 +4668,7 @@ "cost": "30.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -4687,7 +4687,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4706,7 +4706,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -4725,7 +4725,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -4744,7 +4744,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -4763,7 +4763,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -4782,7 +4782,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -4801,7 +4801,7 @@ "cost": "30.00", "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4820,7 +4820,7 @@ "cost": null, "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -4839,7 +4839,7 @@ "cost": null, "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4858,7 +4858,7 @@ "cost": null, "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -4877,7 +4877,7 @@ "cost": "0.20", "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4896,7 +4896,7 @@ "cost": null, "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -4915,7 +4915,7 @@ "cost": null, "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -4934,7 +4934,7 @@ "cost": null, "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -4953,7 +4953,7 @@ "cost": "50.00", "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -4972,7 +4972,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -4991,7 +4991,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -5010,7 +5010,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -5029,7 +5029,7 @@ "cost": "20.00", "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5048,7 +5048,7 @@ "cost": null, "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -5067,7 +5067,7 @@ "cost": null, "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -5086,7 +5086,7 @@ "cost": null, "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -5105,7 +5105,7 @@ "cost": "750.00", "weapon": null, "armor": "half-plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -5124,7 +5124,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5143,7 +5143,7 @@ "cost": null, "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5162,7 +5162,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5181,7 +5181,7 @@ "cost": "5.00", "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5200,7 +5200,7 @@ "cost": null, "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -5219,7 +5219,7 @@ "cost": null, "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -5238,7 +5238,7 @@ "cost": null, "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -5257,7 +5257,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5276,7 +5276,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5295,7 +5295,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5314,7 +5314,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5333,7 +5333,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5352,7 +5352,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -5371,7 +5371,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -5390,7 +5390,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5409,7 +5409,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -5428,7 +5428,7 @@ "cost": "10.00", "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -5447,7 +5447,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5466,7 +5466,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5485,7 +5485,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5504,7 +5504,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -5523,7 +5523,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5542,7 +5542,7 @@ "cost": "3.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -5561,7 +5561,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5580,7 +5580,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5599,7 +5599,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -5618,7 +5618,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -5637,7 +5637,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5656,7 +5656,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -5675,7 +5675,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5694,7 +5694,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5713,7 +5713,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5732,7 +5732,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 2 } @@ -5751,7 +5751,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5770,7 +5770,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -5789,7 +5789,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -5808,7 +5808,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5827,7 +5827,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5846,7 +5846,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5865,7 +5865,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5884,7 +5884,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -5903,7 +5903,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5922,7 +5922,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5941,7 +5941,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -5960,7 +5960,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -5979,7 +5979,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -5998,7 +5998,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -6017,7 +6017,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -6036,7 +6036,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -6055,7 +6055,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -6074,7 +6074,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -6093,7 +6093,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -6112,7 +6112,7 @@ "cost": "0.50", "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6131,7 +6131,7 @@ "cost": null, "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6150,7 +6150,7 @@ "cost": null, "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6169,7 +6169,7 @@ "cost": null, "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6188,7 +6188,7 @@ "cost": null, "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6207,7 +6207,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -6226,7 +6226,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6245,7 +6245,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6264,7 +6264,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6283,7 +6283,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6302,7 +6302,7 @@ "cost": "10.00", "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6321,7 +6321,7 @@ "cost": null, "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6340,7 +6340,7 @@ "cost": null, "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6359,7 +6359,7 @@ "cost": null, "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6378,7 +6378,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6397,7 +6397,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6416,7 +6416,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -6435,7 +6435,7 @@ "cost": "10.00", "weapon": null, "armor": "leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -6454,7 +6454,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -6473,7 +6473,7 @@ "cost": "2.00", "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6492,7 +6492,7 @@ "cost": null, "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6511,7 +6511,7 @@ "cost": null, "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6530,7 +6530,7 @@ "cost": null, "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6549,7 +6549,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6568,7 +6568,7 @@ "cost": "50.00", "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6587,7 +6587,7 @@ "cost": null, "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6606,7 +6606,7 @@ "cost": null, "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6625,7 +6625,7 @@ "cost": null, "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6644,7 +6644,7 @@ "cost": "15.00", "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6663,7 +6663,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6682,7 +6682,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6701,7 +6701,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6720,7 +6720,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6739,7 +6739,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6758,7 +6758,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6777,7 +6777,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6796,7 +6796,7 @@ "cost": "35.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -6815,7 +6815,7 @@ "cost": "30.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -6834,7 +6834,7 @@ "cost": "5.00", "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6853,7 +6853,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -6872,7 +6872,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -6891,7 +6891,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -6910,7 +6910,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6929,7 +6929,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -6948,7 +6948,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -6967,7 +6967,7 @@ "cost": "100.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -6986,7 +6986,7 @@ "cost": "250.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -7005,7 +7005,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -7024,7 +7024,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -7043,7 +7043,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7062,7 +7062,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7081,7 +7081,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7100,7 +7100,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7119,7 +7119,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7138,7 +7138,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -7157,7 +7157,7 @@ "cost": "10.00", "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -7176,7 +7176,7 @@ "cost": null, "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -7195,7 +7195,7 @@ "cost": null, "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7214,7 +7214,7 @@ "cost": null, "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -7233,7 +7233,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -7252,7 +7252,7 @@ "cost": "0.20", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -7271,7 +7271,7 @@ "cost": "1500.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -7290,7 +7290,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -7309,7 +7309,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -7328,7 +7328,7 @@ "cost": null, "weapon": null, "armor": "breastplate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7347,7 +7347,7 @@ "cost": null, "weapon": null, "armor": "chain-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7366,7 +7366,7 @@ "cost": null, "weapon": null, "armor": "chain-shirt", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7385,7 +7385,7 @@ "cost": null, "weapon": null, "armor": "half-plate", - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -7404,7 +7404,7 @@ "cost": null, "weapon": null, "armor": "hide", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7423,7 +7423,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7442,7 +7442,7 @@ "cost": null, "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7461,7 +7461,7 @@ "cost": null, "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7480,7 +7480,7 @@ "cost": null, "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": 2 } @@ -7499,7 +7499,7 @@ "cost": "15.00", "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -7518,7 +7518,7 @@ "cost": null, "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -7537,7 +7537,7 @@ "cost": null, "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7556,7 +7556,7 @@ "cost": null, "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -7575,7 +7575,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -7594,7 +7594,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -7613,7 +7613,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7632,7 +7632,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -7651,7 +7651,7 @@ "cost": "1.00", "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -7670,7 +7670,7 @@ "cost": null, "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -7689,7 +7689,7 @@ "cost": null, "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -7708,7 +7708,7 @@ "cost": null, "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -7727,7 +7727,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -7746,7 +7746,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -7765,7 +7765,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -7784,7 +7784,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -7803,7 +7803,7 @@ "cost": null, "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -7813,7 +7813,7 @@ "pk": "oil-of-etherealness", "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.", + "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_text above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", "size": 1, "weight": "0.000", "armor_class": 0, @@ -7822,7 +7822,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -7841,7 +7841,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -7851,7 +7851,7 @@ "pk": "oil-of-slipperiness", "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.", + "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_text 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, "weight": "0.000", "armor_class": 0, @@ -7860,7 +7860,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -7879,7 +7879,7 @@ "cost": "400.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -7898,7 +7898,7 @@ "cost": "20.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -7917,7 +7917,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 6 } @@ -7936,7 +7936,7 @@ "cost": "15.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -7955,7 +7955,7 @@ "cost": "5.00", "weapon": null, "armor": "padded", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -7974,7 +7974,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -7993,7 +7993,7 @@ "cost": "250.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -8012,7 +8012,7 @@ "cost": "12.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -8031,7 +8031,7 @@ "cost": "0.20", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8050,7 +8050,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8069,7 +8069,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8088,7 +8088,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8107,7 +8107,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8126,7 +8126,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -8145,7 +8145,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -8164,7 +8164,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8183,7 +8183,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8202,7 +8202,7 @@ "cost": "3.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -8221,7 +8221,7 @@ "cost": "5.00", "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -8240,7 +8240,7 @@ "cost": null, "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -8259,7 +8259,7 @@ "cost": null, "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -8278,7 +8278,7 @@ "cost": null, "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -8297,7 +8297,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -8316,7 +8316,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -8335,7 +8335,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8354,7 +8354,7 @@ "cost": "1500.00", "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -8373,7 +8373,7 @@ "cost": null, "weapon": null, "armor": "plate", - "category": "armor", + "category_text": "armor", "requires_attunement": true, "rarity": 5 } @@ -8392,7 +8392,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -8411,7 +8411,7 @@ "cost": "100.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -8430,7 +8430,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -8449,7 +8449,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8468,7 +8468,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -8487,7 +8487,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -8506,7 +8506,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8525,7 +8525,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8544,7 +8544,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -8563,7 +8563,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8582,7 +8582,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8601,7 +8601,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -8620,7 +8620,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8639,7 +8639,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8658,7 +8658,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8677,7 +8677,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8696,7 +8696,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8715,7 +8715,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 1 } @@ -8734,7 +8734,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8753,7 +8753,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8772,7 +8772,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8791,7 +8791,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8810,7 +8810,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8829,7 +8829,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8848,7 +8848,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8867,7 +8867,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8886,7 +8886,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 5 } @@ -8905,7 +8905,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 3 } @@ -8924,7 +8924,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 4 } @@ -8943,7 +8943,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "potion", + "category_text": "potion", "requires_attunement": false, "rarity": 2 } @@ -8962,7 +8962,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -8981,7 +8981,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9000,7 +9000,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -9019,7 +9019,7 @@ "cost": "2000.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -9038,7 +9038,7 @@ "cost": null, "weapon": "quarterstaff", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -9057,7 +9057,7 @@ "cost": null, "weapon": "quarterstaff", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -9076,7 +9076,7 @@ "cost": null, "weapon": "quarterstaff", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -9095,7 +9095,7 @@ "cost": "0.20", "weapon": "quarterstaff", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -9114,7 +9114,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9133,7 +9133,7 @@ "cost": "4.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9152,7 +9152,7 @@ "cost": "25.00", "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -9171,7 +9171,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -9190,7 +9190,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -9209,7 +9209,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -9228,7 +9228,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9247,7 +9247,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9266,7 +9266,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9285,7 +9285,7 @@ "cost": "30.00", "weapon": null, "armor": "ring-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -9304,7 +9304,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 3 } @@ -9323,7 +9323,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 5 } @@ -9342,7 +9342,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 5 } @@ -9361,7 +9361,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9380,7 +9380,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9399,7 +9399,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9418,7 +9418,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 5 } @@ -9437,7 +9437,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -9456,7 +9456,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -9475,7 +9475,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9494,7 +9494,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 4 } @@ -9513,7 +9513,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9532,7 +9532,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 4 } @@ -9551,7 +9551,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9570,7 +9570,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 5 } @@ -9589,7 +9589,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -9608,7 +9608,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 4 } @@ -9627,7 +9627,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9646,7 +9646,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 5 } @@ -9665,7 +9665,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 2 } @@ -9684,7 +9684,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": 2 } @@ -9703,7 +9703,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": true, "rarity": 3 } @@ -9722,7 +9722,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -9741,7 +9741,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -9760,7 +9760,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 4 } @@ -9779,7 +9779,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -9798,7 +9798,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9817,7 +9817,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9836,7 +9836,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": null } @@ -9855,7 +9855,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -9874,7 +9874,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 4 } @@ -9893,7 +9893,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 5 } @@ -9912,7 +9912,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": true, "rarity": 3 } @@ -9931,7 +9931,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "rod", + "category_text": "rod", "requires_attunement": false, "rarity": 4 } @@ -9950,7 +9950,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -9969,7 +9969,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -9988,7 +9988,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -10007,7 +10007,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10026,7 +10026,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10045,7 +10045,7 @@ "cost": "50.00", "weapon": null, "armor": "scale-mail", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -10064,7 +10064,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10083,7 +10083,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -10102,7 +10102,7 @@ "cost": "25.00", "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10121,7 +10121,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10140,7 +10140,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10159,7 +10159,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10178,7 +10178,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -10197,7 +10197,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10216,7 +10216,7 @@ "cost": "200.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -10235,7 +10235,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -10254,7 +10254,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -10273,7 +10273,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": false, "rarity": null } @@ -10292,7 +10292,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": true, "rarity": 3 } @@ -10311,7 +10311,7 @@ "cost": "25.00", "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10330,7 +10330,7 @@ "cost": null, "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10349,7 +10349,7 @@ "cost": null, "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10368,7 +10368,7 @@ "cost": null, "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10387,7 +10387,7 @@ "cost": "10.00", "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10406,7 +10406,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10425,7 +10425,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10444,7 +10444,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10463,7 +10463,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10482,7 +10482,7 @@ "cost": "1.00", "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10501,7 +10501,7 @@ "cost": null, "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10520,7 +10520,7 @@ "cost": null, "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10539,7 +10539,7 @@ "cost": null, "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10558,7 +10558,7 @@ "cost": "0.05", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10577,7 +10577,7 @@ "cost": "5.00", "weapon": null, "armor": null, - "category": "ring", + "category_text": "ring", "requires_attunement": false, "rarity": null } @@ -10596,7 +10596,7 @@ "cost": "0.10", "weapon": "sling", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10615,7 +10615,7 @@ "cost": null, "weapon": "sling", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10634,7 +10634,7 @@ "cost": null, "weapon": "sling", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10653,7 +10653,7 @@ "cost": null, "weapon": "sling", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10672,7 +10672,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "ammunition", + "category_text": "ammunition", "requires_attunement": false, "rarity": null } @@ -10691,7 +10691,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -10710,7 +10710,7 @@ "cost": "20.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -10729,7 +10729,7 @@ "cost": "0.02", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -10748,7 +10748,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -10767,7 +10767,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "trade-good", + "category_text": "trade-good", "requires_attunement": false, "rarity": null } @@ -10786,7 +10786,7 @@ "cost": "1.00", "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -10805,7 +10805,7 @@ "cost": null, "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -10824,7 +10824,7 @@ "cost": null, "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -10843,7 +10843,7 @@ "cost": null, "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -10862,7 +10862,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 1 } @@ -10881,7 +10881,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -10900,7 +10900,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 2 } @@ -10919,7 +10919,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -10938,7 +10938,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 3 } @@ -10957,7 +10957,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 4 } @@ -10976,7 +10976,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 4 } @@ -10995,7 +10995,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 4 } @@ -11014,7 +11014,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 5 } @@ -11033,7 +11033,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "scroll", + "category_text": "scroll", "requires_attunement": false, "rarity": 1 } @@ -11052,7 +11052,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11071,7 +11071,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "shield", + "category_text": "shield", "requires_attunement": true, "rarity": 4 } @@ -11090,7 +11090,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -11109,7 +11109,7 @@ "cost": "0.10", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11128,7 +11128,7 @@ "cost": "200.00", "weapon": null, "armor": "splint", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -11147,7 +11147,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11166,7 +11166,7 @@ "cost": "1000.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11185,7 +11185,7 @@ "cost": "5.00", "weapon": "quarterstaff", "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": null } @@ -11204,7 +11204,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -11223,7 +11223,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -11242,7 +11242,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -11261,7 +11261,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -11280,7 +11280,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -11299,7 +11299,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -11318,7 +11318,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -11337,7 +11337,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 5 } @@ -11356,7 +11356,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 4 } @@ -11375,7 +11375,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -11394,7 +11394,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": true, "rarity": 4 } @@ -11413,7 +11413,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "staff", + "category_text": "staff", "requires_attunement": false, "rarity": 3 } @@ -11432,7 +11432,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 3 } @@ -11451,7 +11451,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -11470,7 +11470,7 @@ "cost": "45.00", "weapon": null, "armor": "studded-leather", - "category": "armor", + "category_text": "armor", "requires_attunement": false, "rarity": null } @@ -11489,7 +11489,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11508,7 +11508,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11527,7 +11527,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11546,7 +11546,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11565,7 +11565,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11584,7 +11584,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11603,7 +11603,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11622,7 +11622,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11641,7 +11641,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11660,7 +11660,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11679,7 +11679,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11698,7 +11698,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11717,7 +11717,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -11736,7 +11736,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -11755,7 +11755,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 5 } @@ -11774,7 +11774,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -11793,7 +11793,7 @@ "cost": "2.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11812,7 +11812,7 @@ "cost": "25.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -11831,7 +11831,7 @@ "cost": "0.50", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11850,7 +11850,7 @@ "cost": "50.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -11869,7 +11869,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -11888,7 +11888,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -11907,7 +11907,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 4 } @@ -11926,7 +11926,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11945,7 +11945,7 @@ "cost": "600.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -11964,7 +11964,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -11983,7 +11983,7 @@ "cost": "5.00", "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12002,7 +12002,7 @@ "cost": null, "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -12021,7 +12021,7 @@ "cost": null, "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -12040,7 +12040,7 @@ "cost": null, "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -12059,7 +12059,7 @@ "cost": null, "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -12078,7 +12078,7 @@ "cost": "150.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -12097,7 +12097,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -12116,7 +12116,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -12135,7 +12135,7 @@ "cost": null, "weapon": "battleaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12154,7 +12154,7 @@ "cost": null, "weapon": "blowgun", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12173,7 +12173,7 @@ "cost": null, "weapon": "club", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12192,7 +12192,7 @@ "cost": null, "weapon": "crossbow-hand", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12211,7 +12211,7 @@ "cost": null, "weapon": "crossbow-heavy", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12230,7 +12230,7 @@ "cost": null, "weapon": "crossbow-light", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12249,7 +12249,7 @@ "cost": null, "weapon": "dagger", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12268,7 +12268,7 @@ "cost": null, "weapon": "dart", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12287,7 +12287,7 @@ "cost": null, "weapon": "flail", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12306,7 +12306,7 @@ "cost": null, "weapon": "glaive", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12325,7 +12325,7 @@ "cost": null, "weapon": "greataxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12344,7 +12344,7 @@ "cost": null, "weapon": "greatclub", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12363,7 +12363,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12382,7 +12382,7 @@ "cost": null, "weapon": "halberd", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12401,7 +12401,7 @@ "cost": null, "weapon": "handaxe", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12420,7 +12420,7 @@ "cost": null, "weapon": "javelin", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12439,7 +12439,7 @@ "cost": null, "weapon": "lance", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12458,7 +12458,7 @@ "cost": null, "weapon": "light-hammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12477,7 +12477,7 @@ "cost": null, "weapon": "longbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12496,7 +12496,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12515,7 +12515,7 @@ "cost": null, "weapon": "mace", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12534,7 +12534,7 @@ "cost": null, "weapon": "maul", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12553,7 +12553,7 @@ "cost": null, "weapon": "morningstar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12572,7 +12572,7 @@ "cost": null, "weapon": "net", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12591,7 +12591,7 @@ "cost": null, "weapon": "pike", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12610,7 +12610,7 @@ "cost": null, "weapon": "quarterstaff", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12629,7 +12629,7 @@ "cost": null, "weapon": "rapier", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12648,7 +12648,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12667,7 +12667,7 @@ "cost": null, "weapon": "shortbow", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12686,7 +12686,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12705,7 +12705,7 @@ "cost": null, "weapon": "sickle", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12724,7 +12724,7 @@ "cost": null, "weapon": "sling", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12743,7 +12743,7 @@ "cost": null, "weapon": "spear", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12762,7 +12762,7 @@ "cost": null, "weapon": "trident", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12781,7 +12781,7 @@ "cost": null, "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12800,7 +12800,7 @@ "cost": null, "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12819,7 +12819,7 @@ "cost": null, "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -12838,7 +12838,7 @@ "cost": "30.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -12857,7 +12857,7 @@ "cost": null, "weapon": "greatsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -12876,7 +12876,7 @@ "cost": null, "weapon": "longsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -12895,7 +12895,7 @@ "cost": null, "weapon": "scimitar", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -12914,7 +12914,7 @@ "cost": null, "weapon": "shortsword", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": true, "rarity": null } @@ -12933,7 +12933,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": null } @@ -12952,7 +12952,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -12971,7 +12971,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -12990,7 +12990,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -13009,7 +13009,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -13028,7 +13028,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -13047,7 +13047,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -13066,7 +13066,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -13085,7 +13085,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -13104,7 +13104,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 4 } @@ -13123,7 +13123,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -13142,7 +13142,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 2 } @@ -13161,7 +13161,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 3 } @@ -13180,7 +13180,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": true, "rarity": 4 } @@ -13199,7 +13199,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 2 } @@ -13218,7 +13218,7 @@ "cost": null, "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": 3 } @@ -13237,7 +13237,7 @@ "cost": "5.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -13256,7 +13256,7 @@ "cost": "15.00", "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -13275,7 +13275,7 @@ "cost": null, "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -13294,7 +13294,7 @@ "cost": null, "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -13313,7 +13313,7 @@ "cost": null, "weapon": "warhammer", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -13332,7 +13332,7 @@ "cost": "5.00", "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -13351,7 +13351,7 @@ "cost": null, "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -13370,7 +13370,7 @@ "cost": null, "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -13389,7 +13389,7 @@ "cost": null, "weapon": "warpick", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -13408,7 +13408,7 @@ "cost": "0.20", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -13427,7 +13427,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -13446,7 +13446,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 5 } @@ -13465,7 +13465,7 @@ "cost": "0.01", "weapon": null, "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -13484,7 +13484,7 @@ "cost": "2.00", "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": null } @@ -13503,7 +13503,7 @@ "cost": null, "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 2 } @@ -13522,7 +13522,7 @@ "cost": null, "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 3 } @@ -13541,7 +13541,7 @@ "cost": null, "weapon": "whip", "armor": null, - "category": "weapon", + "category_text": "weapon", "requires_attunement": false, "rarity": 4 } @@ -13560,7 +13560,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": false, "rarity": 2 } @@ -13579,7 +13579,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 2 } @@ -13598,7 +13598,7 @@ "cost": "0.00", "weapon": null, "armor": null, - "category": "wondrous-item", + "category_text": "wondrous-item", "requires_attunement": true, "rarity": 3 } @@ -13617,7 +13617,7 @@ "cost": "1.00", "weapon": null, "armor": null, - "category": "tools", + "category_text": "tools", "requires_attunement": false, "rarity": null } @@ -13636,7 +13636,7 @@ "cost": "5.00", "weapon": "quarterstaff", "armor": null, - "category": "adventuring-gear", + "category_text": "adventuring-gear", "requires_attunement": false, "rarity": null } @@ -13655,7 +13655,7 @@ "cost": "1200.00", "weapon": null, "armor": null, - "category": "poison", + "category_text": "poison", "requires_attunement": false, "rarity": null } @@ -13674,7 +13674,7 @@ "cost": "10.00", "weapon": null, "armor": null, - "category": "wand", + "category_text": "wand", "requires_attunement": false, "rarity": null }