From 3848d842601c6020a78ae0938b4e0d57144d29c5 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 14 Feb 2026 16:59:11 -0600 Subject: [PATCH 01/33] Adding CrossReference model --- api_v2/migrations/0072_crossreference.py | 31 ++++++++++++++ api_v2/models/__init__.py | 2 + api_v2/models/abstracts.py | 14 ++++++- api_v2/models/crossreference.py | 53 ++++++++++++++++++++++++ 4 files changed, 99 insertions(+), 1 deletion(-) create mode 100644 api_v2/migrations/0072_crossreference.py create mode 100644 api_v2/models/crossreference.py diff --git a/api_v2/migrations/0072_crossreference.py b/api_v2/migrations/0072_crossreference.py new file mode 100644 index 00000000..6845608a --- /dev/null +++ b/api_v2/migrations/0072_crossreference.py @@ -0,0 +1,31 @@ +# Generated by Django 5.2.1 on 2026-02-14 22:58 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0071_convert_distance_fields_to_integer'), + ('contenttypes', '0002_remove_content_type_name'), + ] + + operations = [ + migrations.CreateModel( + name='CrossReference', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('source_object_key', models.CharField(help_text='Primary key of the source object (e.g. item key, spell key).', max_length=100)), + ('reference_object_key', models.CharField(help_text='Primary key of the reference object.', max_length=100)), + ('anchor', models.CharField(help_text="The text in the source's description to highlight and link to the reference.", max_length=100)), + ('reference_content_type', models.ForeignKey(help_text='The model of the object this Crossreference points to.', on_delete=django.db.models.deletion.CASCADE, related_name='Crossreferences_as_reference', to='contenttypes.contenttype')), + ('source_content_type', models.ForeignKey(help_text='The model of the object that contains the description.', on_delete=django.db.models.deletion.CASCADE, related_name='Crossreferences_as_source', to='contenttypes.contenttype')), + ], + options={ + 'verbose_name_plural': 'crossreferences', + 'ordering': ['source_content_type', 'source_object_key', 'id'], + 'indexes': [models.Index(fields=['source_content_type', 'source_object_key'], name='api_v2_cros_source__44db64_idx'), models.Index(fields=['reference_content_type', 'reference_object_key'], name='api_v2_cros_referen_a96fe0_idx')], + }, + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 66969ccb..9e4ba6d9 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -33,6 +33,8 @@ from .creature import CreatureTypeDescription from .creature import CreatureSet +from .crossreference import CrossReference + from .document import Document from .document import License from .document import Publisher diff --git a/api_v2/models/abstracts.py b/api_v2/models/abstracts.py index 70f93403..d21fdf4e 100644 --- a/api_v2/models/abstracts.py +++ b/api_v2/models/abstracts.py @@ -2,6 +2,7 @@ from math import floor from django.db import models +from django.contrib.contenttypes.fields import GenericRelation from django.core.validators import MaxValueValidator, MinValueValidator from .enums import MODIFICATION_TYPES, DIE_TYPES @@ -135,12 +136,23 @@ class Meta: class HasDescription(models.Model): - """This is the definition of a description.""" + """ + This is the definition of a description. + + Objects with a description can have crossreferences: anchor-text links from + spans in their desc to other content (e.g. Spell, Item, Condition). + """ desc = models.TextField( blank=True, help_text='Description of the game content item. Markdown.') + crossreferences = GenericRelation( + 'api_v2.CrossReference', + content_type_field='source_content_type', + object_id_field='source_object_key', + ) + class Meta: abstract = True diff --git a/api_v2/models/crossreference.py b/api_v2/models/crossreference.py new file mode 100644 index 00000000..35af820e --- /dev/null +++ b/api_v2/models/crossreference.py @@ -0,0 +1,53 @@ +"""The model for a Crossreference.""" + +from django.db import models +from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.models import ContentType + + +class CrossReference(models.Model): + """ + A cross reference from a span of text in one object's description to another object. + + The source is the object that contains the description. The reference is the object + being linked to. + """ + + # Source: the object that with the description + source_content_type = models.ForeignKey( + ContentType, + on_delete=models.CASCADE, + related_name="Crossreferences_as_source", + help_text="The model of the object that contains the description.", + ) + source_object_key = models.CharField( + max_length=100, + help_text="Primary key of the source object (e.g. item key, spell key).", + ) + source = GenericForeignKey("source_content_type", "source_object_key") + + # reference: the object being linked to + reference_content_type = models.ForeignKey( + ContentType, + on_delete=models.CASCADE, + related_name="Crossreferences_as_reference", + help_text="The model of the object this Crossreference points to.", + ) + reference_object_key = models.CharField( + max_length=100, + help_text="Primary key of the reference object.", + ) + reference = GenericForeignKey("reference_content_type", "reference_object_key") + + anchor = models.CharField( + max_length=100, + help_text="The text in the source's description to highlight and link to the reference.", + ) + + class Meta: + verbose_name_plural = "crossreferences" + ordering = ["source_content_type", "source_object_key", "id"] + indexes = [ + models.Index(fields=["source_content_type", "source_object_key"]), + models.Index(fields=["reference_content_type", "reference_object_key"]), + ] From 548d5ed0b9f1efd6bfb7dfac5b578081f7ff2ab2 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 14 Feb 2026 19:37:19 -0600 Subject: [PATCH 02/33] Adding in some crossreference utilities. --- api_v2/crossreference_utils.py | 564 ++++++++++++++++++ .../commands/delete_crossreferences.py | 89 +++ .../commands/find_crossref_candidates.py | 140 +++++ crossref_reference_blacklist.txt | 70 +++ crossref_source_blacklist.txt | 10 + 5 files changed, 873 insertions(+) create mode 100644 api_v2/crossreference_utils.py create mode 100644 api_v2/management/commands/delete_crossreferences.py create mode 100644 api_v2/management/commands/find_crossref_candidates.py create mode 100644 crossref_reference_blacklist.txt create mode 100644 crossref_source_blacklist.txt diff --git a/api_v2/crossreference_utils.py b/api_v2/crossreference_utils.py new file mode 100644 index 00000000..38140d36 --- /dev/null +++ b/api_v2/crossreference_utils.py @@ -0,0 +1,564 @@ +""" +Shared utilities for cross-reference candidate finding and deletion by document. + +Used by find_crossref_candidates and delete_crossreferences management commands. +""" + +import json +import re +from pathlib import Path + +from django.apps import apps +from django.contrib.contenttypes.models import ContentType +from django.db.models.fields.related import ForeignKey + +from api_v2.models import CrossReference, Document + +# FK field names that point to a "parent" entity; sources with these will not link to that parent. +PARENT_FIELD_NAMES = ("parent", "subclass_of") + +# Object keys containing any of these substrings are excluded as both sources and references. +EXCLUDED_KEY_SUBSTRINGS = ("spellcasting-levels",) + +# Reference names that are never suggested as links (e.g. ordinal table headers like "1st", "6th"). +EXCLUDED_REFERENCE_NAMES = frozenset({"1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th"}) + + +# Map api_v2 model name to URL path segment (router basename) for building /v2/{basename}/{pk}/. +MODEL_TO_URL_BASENAME = { + "Item": "items", + "ItemSet": "itemsets", + "ItemCategory": "itemcategories", + "ItemRarity": "itemrarities", + "Ability": "abilities", + "AbilityDescription": "abilities", + "Skill": "skills", + "SkillDescription": "skills", + "Armor": "armor", + "Weapon": "weapons", + "WeaponProperty": "weaponproperties", + "Species": "species", + "SpeciesTrait": "species", + "Feat": "feats", + "FeatBenefit": "feats", + "Background": "backgrounds", + "BackgroundBenefit": "backgrounds", + "Creature": "creatures", + "CreatureTrait": "creatures", + "CreatureAction": "creatures", + "CreatureType": "creaturetypes", + "CreatureTypeDescription": "creaturetypes", + "CreatureSet": "creaturesets", + "Document": "documents", + "DamageType": "damagetypes", + "DamageTypeDescription": "damagetypes", + "Language": "languages", + "Alignment": "alignments", + "AlignmentDescription": "alignments", + "Condition": "conditions", + "ConditionDescription": "conditions", + "Spell": "spells", + "SpellSchool": "spellschools", + "SpellCastingOption": "spells", + "ClassFeature": "classes", + "ClassFeatureItem": "classes", + "CharacterClass": "classes", + "Size": "sizes", + "Environment": "environments", + "Rule": "rules", + "RuleSet": "rulesets", + "Image": "images", + "Service": "services", +} + + +def build_object_url(content_type: ContentType, object_key: str) -> str: + """Return the API v2 path for an object, e.g. /v2/spells/srd_fireball/.""" + model = content_type.model_class() + if model is None: + return f"/v2/unknown/{object_key}/" + basename = MODEL_TO_URL_BASENAME.get(model.__name__) + if basename is None: + basename = (model._meta.verbose_name_plural or model.__name__.lower() + "s").replace(" ", "") + return f"/v2/{basename}/{object_key}/" + + +# Model classification for document scoping (aligned with export command). +SKIPPED_MODEL_NAMES = [ + "Document", + "GameSystem", + "License", + "Publisher", + "SearchResult", +] +CHILD_MODEL_NAMES = [ + "SpeciesTrait", + "FeatBenefit", + "BackgroundBenefit", + "ClassFeatureItem", + "SpellCastingOption", + "CreatureAction", + "CreatureTrait", +] +CHILD_CHILD_MODEL_NAMES = ["CreatureActionAttack"] + +# Models that can be mentioned in descriptions (reference targets for text-matching). +REFERENCE_MODEL_NAMES = [ + "Spell", + "Item", + "Condition", + "ConditionDescription", + "Feat", + "Rule", + "RuleSet", + "WeaponProperty", + "DamageTypeDescription", + "AbilityDescription", + "SkillDescription", + "AlignmentDescription", + "CreatureTypeDescription", + "Language", + "Environment", + "Background", + "Species", + "CharacterClass", + "ClassFeature", +] + + +def _model_has_name(model) -> bool: + """Return True if the model has a name field.""" + return any(f.name == "name" for f in model._meta.get_fields()) + + +def get_reference_models_and_filters_for_document(doc): + """ + Return (model, filter_kwargs) for all api_v2 models that are in REFERENCE_MODEL_NAMES, + have a name field, and belong to the given document. + """ + result = [] + for model in apps.get_models(): + if model._meta.app_label != "api_v2": + continue + if model.__name__ not in REFERENCE_MODEL_NAMES: + continue + if not _model_has_name(model): + continue + + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + filter_kwargs = {"parent__parent__document": doc} + elif model.__name__ in CHILD_MODEL_NAMES: + filter_kwargs = {"parent__document": doc} + else: + filter_kwargs = {"document": doc} + + result.append((model, filter_kwargs)) + return result + + +def get_reference_candidates_for_document(doc): + """ + Yield (content_type, object_key, name) for every reference candidate in the document. + Name is stripped; used for case-insensitive substring match in descriptions. + """ + for model, filter_kwargs in get_reference_models_and_filters_for_document(doc): + ct = ContentType.objects.get_for_model(model) + qs = model.objects.filter(**filter_kwargs) + for obj in qs: + name = getattr(obj, "name", None) + if name is None or not str(name).strip(): + continue + yield ct, str(obj.pk), str(name).strip() + + +def get_document(doc_key: str) -> Document: + """Resolve document by key. Raises Document.DoesNotExist if not found.""" + return Document.objects.get(key=doc_key) + + +def load_blacklist(file_path: str | None) -> set[str]: + """ + Load a blacklist from a file: one object key per line (stripped, empty lines skipped). + If file_path is None or file is missing, return empty set. + """ + if not file_path: + return set() + path = Path(file_path) + if not path.exists(): + return set() + keys = set() + with open(path, encoding="utf-8") as f: + for line in f: + key = line.strip() + if key: + keys.add(key) + return keys + + +def _model_has_description(model) -> bool: + """Return True if the model has a desc field (i.e. can be a crossref source).""" + return any(f.name == "desc" for f in model._meta.get_fields()) + + +def get_source_models_and_filters_for_document(doc, model_name: str | None = None): + """ + Return a list of (model, filter_kwargs) for all api_v2 models that have + HasDescription (desc field) and belong to the given document. + + doc: Document instance. + model_name: If set, only include this model (e.g. 'Spell', 'Item'). + + Each filter_kwargs is suitable for model.objects.filter(**filter_kwargs). + """ + result = [] + for model in apps.get_models(): + if model._meta.app_label != "api_v2": + continue + if model.__name__ in SKIPPED_MODEL_NAMES: + continue + if not _model_has_description(model): + continue + if model_name is not None and model.__name__ != model_name: + continue + + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + filter_kwargs = {"parent__parent__document": doc} + elif model.__name__ in CHILD_MODEL_NAMES: + filter_kwargs = {"parent__document": doc} + else: + filter_kwargs = {"document": doc} + + result.append((model, filter_kwargs)) + return result + + +def get_crossreferences_by_source_document( + doc, + *, + source_model_name: str | None = None, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """ + Return a queryset of CrossReference rows whose source object is in the given + document, optionally restricted by source model. Excludes rows whose + source_object_key is in source_blacklist or reference_object_key is in + reference_blacklist. + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + + pairs = get_source_models_and_filters_for_document(doc, model_name=source_model_name) + crossref_ids = [] + + for model, filter_kwargs in pairs: + ct = ContentType.objects.get_for_model(model) + keys_in_scope = set( + model.objects.filter(**filter_kwargs).values_list("pk", flat=True) + ) + if not keys_in_scope: + continue + qs = CrossReference.objects.filter( + source_content_type=ct, + source_object_key__in=keys_in_scope, + ) + if source_blacklist: + qs = qs.exclude(source_object_key__in=source_blacklist) + if reference_blacklist: + qs = qs.exclude(reference_object_key__in=reference_blacklist) + crossref_ids.extend(qs.values_list("pk", flat=True)) + + if not crossref_ids: + return CrossReference.objects.none() + return CrossReference.objects.filter(pk__in=crossref_ids) + + +def get_all_crossreferences_for_document(doc): + """Return queryset of all CrossReference rows whose source is in the given document.""" + return get_crossreferences_by_source_document( + doc, + source_model_name=None, + source_blacklist=set(), + reference_blacklist=set(), + ) + + +def _get_parent_keys_to_skip(obj) -> set[tuple[int, str]]: + """ + For an object that may have a parent-like FK (e.g. parent, subclass_of), + return a set of (content_type_id, parent_key) that should not be suggested as references. + """ + result = set() + model = type(obj) + for field_name in PARENT_FIELD_NAMES: + try: + field = model._meta.get_field(field_name) + except Exception: + continue + if not isinstance(field, ForeignKey): + continue + parent_id = getattr(obj, field.attname, None) + if parent_id is None: + continue + parent_model = field.remote_field.model + if isinstance(parent_model, str): + if "." in parent_model: + parent_model = apps.get_model(parent_model) + else: + parent_model = apps.get_model(model._meta.app_label, parent_model) + parent_ct = ContentType.objects.get_for_model(parent_model) + result.add((parent_ct.id, str(parent_id))) + return result + + +def _match_in_forbidden_context(desc: str, match_start: int, match_end: int) -> bool: + """ + Return True if the match at (match_start, match_end) is inside bold, a header line, + or a table header line. Such matches are excluded (don't link). + """ + # Bold: **...** or __...__ + for bold_pattern in (r"\*\*(.*?)\*\*", r"__(.*?)__"): + for m in re.finditer(bold_pattern, desc): + if m.start() <= match_start and match_end <= m.end(): + return True + + # Which line contains the match? + lines = desc.split("\n") + char_pos = 0 + line_idx = 0 + for idx, line in enumerate(lines): + if char_pos <= match_start < char_pos + len(line): + line_idx = idx + break + char_pos += len(line) + 1 + + line = lines[line_idx] + + # Header: line starts with # (optional leading whitespace) + if line.lstrip().startswith("#"): + return True + + # Table header: this line has | and is the first line of a run of table lines + if "|" in line: + block_start = line_idx + while block_start > 0 and "|" in lines[block_start - 1]: + block_start -= 1 + if block_start == line_idx: + return True + + return False + + +def identify_crossreferences_from_text( + doc, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """ + Find suggested (source, reference) links by matching reference names in source descriptions. + Returns (by_source, by_reference): + - by_source: dict key_src -> (src_url, list of (ref_url, anchor)) + - by_reference: dict key_ref -> (ref_url, list of (src_url, anchor)) + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + # Precompile word-boundary regex per ref (avoids recompiling for every source). + ref_candidates = [] + for ref_ct, ref_key, ref_name in get_reference_candidates_for_document(doc): + if ref_key in reference_blacklist or not ref_name or len(ref_name) < 2: + continue + if ref_name in EXCLUDED_REFERENCE_NAMES: + continue + if any(sub in ref_key for sub in EXCLUDED_KEY_SUBSTRINGS): + continue + pattern = re.compile( + r"\b" + re.escape(ref_name) + r"\b", + re.IGNORECASE, + ) + ref_candidates.append((ref_ct, ref_key, ref_name, pattern)) + + by_source = {} + by_reference = {} + + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + if any(sub in pk_str for sub in EXCLUDED_KEY_SUBSTRINGS): + continue + desc = obj.desc or "" + desc_len = len(desc) + src_ct = ContentType.objects.get_for_model(model) + src_url = build_object_url(src_ct, pk_str) + key_src = (src_ct.id, pk_str) + seen_refs = set() + parents_to_skip = _get_parent_keys_to_skip(obj) + + for ref_ct, ref_key, ref_name, pattern in ref_candidates: + # Don't allow an object to reference itself + if (ref_ct.id, ref_key) == (src_ct.id, pk_str): + continue + # Don't allow an object to reference its parent (e.g. class feature -> class, trait -> species) + if (ref_ct.id, ref_key) in parents_to_skip: + continue + if len(ref_name) > desc_len: + continue + # Require at least one match that is not in bold/header/table-header + found_allowed = False + for m in pattern.finditer(desc): + if not _match_in_forbidden_context(desc, m.start(), m.end()): + found_allowed = True + break + if not found_allowed: + continue + key_ref = (ref_ct.id, ref_key) + if (key_src, key_ref) in seen_refs: + continue + seen_refs.add((key_src, key_ref)) + ref_url = build_object_url(ref_ct, ref_key) + + if key_src not in by_source: + by_source[key_src] = (src_url, []) + by_source[key_src][1].append((ref_url, ref_name)) + + if key_ref not in by_reference: + by_reference[key_ref] = (ref_url, []) + by_reference[key_ref][1].append((src_url, ref_name)) + + return by_source, by_reference + + +def build_crossreference_reports( + doc, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, + use_text_matching: bool = True, +): + """ + Build two report structures for the document. + + When use_text_matching=True (default for report files): uses text-match identification + (reference names in source descriptions). Each entry includes "matches" with anchor. + When use_text_matching=False: uses existing CrossReference rows from the DB. + + Returns (sources_report, references_report). + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + + if use_text_matching: + by_source, by_reference = identify_crossreferences_from_text( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + # Build sources report: every source candidate with suggested links and matches + candidate_entries = [] + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + ct = ContentType.objects.get_for_model(model) + url = build_object_url(ct, pk_str) + key_src = (ct.id, pk_str) + refs_with_anchor = by_source.get(key_src, (url, []))[1] + ref_urls = sorted({r[0] for r in refs_with_anchor}) + matches = [{"url": r[0], "anchor": r[1]} for r in refs_with_anchor] + candidate_entries.append((url, ref_urls, matches)) + + sources_report = [ + {"url": url, "crossreference_to": ref_urls, "matches": matches} + for url, ref_urls, matches in candidate_entries + ] + sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) + + references_report = [ + { + "url": url, + "crossreference_from": sorted({m[0] for m in src_list}), + "matches": [{"url": m[0], "anchor": m[1]} for m in src_list], + } + for _key, (url, src_list) in by_reference.items() + ] + references_report.sort( + key=lambda x: len(x["crossreference_from"]), reverse=True + ) + return sources_report, references_report + + # DB-based: existing CrossReference rows only + qs = get_all_crossreferences_for_document(doc) + by_source = {} + by_reference = {} + + for cr in qs.select_related("source_content_type", "reference_content_type"): + src_url = build_object_url(cr.source_content_type, cr.source_object_key) + ref_url = build_object_url(cr.reference_content_type, cr.reference_object_key) + key_src = (cr.source_content_type_id, cr.source_object_key) + key_ref = (cr.reference_content_type_id, cr.reference_object_key) + if key_src not in by_source: + by_source[key_src] = (src_url, set()) + by_source[key_src][1].add(ref_url) + if key_ref not in by_reference: + by_reference[key_ref] = (ref_url, set()) + by_reference[key_ref][1].add(src_url) + + candidate_entries = [] + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + ct = ContentType.objects.get_for_model(model) + url = build_object_url(ct, pk_str) + key_src = (ct.id, pk_str) + ref_urls = by_source[key_src][1] if key_src in by_source else set() + candidate_entries.append((url, ref_urls)) + + sources_report = [ + {"url": url, "crossreference_to": sorted(ref_urls)} + for url, ref_urls in candidate_entries + ] + sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) + + references_report = [ + {"url": url, "crossreference_from": sorted(src_urls)} + for _key, (url, src_urls) in by_reference.items() + ] + references_report.sort( + key=lambda x: len(x["crossreference_from"]), reverse=True + ) + return sources_report, references_report + + +def write_crossreference_report_files( + doc, + sources_path: str, + references_path: str, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """Build both reports, write them as JSON to the given paths, and return (sources_report, references_report).""" + sources_report, references_report = build_crossreference_reports( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + with open(sources_path, "w", encoding="utf-8") as f: + json.dump(sources_report, f, indent=2) + with open(references_path, "w", encoding="utf-8") as f: + json.dump(references_report, f, indent=2) + return sources_report, references_report diff --git a/api_v2/management/commands/delete_crossreferences.py b/api_v2/management/commands/delete_crossreferences.py new file mode 100644 index 00000000..0563c03c --- /dev/null +++ b/api_v2/management/commands/delete_crossreferences.py @@ -0,0 +1,89 @@ +""" +Delete groups of cross-references by source document. + +Optionally restrict by source model and/or protect sources/references via blacklists. +""" + +from django.core.management.base import BaseCommand, CommandError + +from api_v2.crossreference_utils import ( + get_crossreferences_by_source_document, + get_document, + load_blacklist, +) + + +class Command(BaseCommand): + help = ( + "Delete CrossReference rows whose source object belongs to the given " + "document. Optional: restrict by source model; protect sources/references " + "with blacklists; use --dry-run to preview." + ) + + def add_arguments(self, parser): + parser.add_argument( + "--document", + type=str, + required=True, + help="Document key; delete crossrefs whose source is in this document.", + ) + parser.add_argument( + "--model", + type=str, + default=None, + help="If set, only delete crossrefs whose source is this model (e.g. Spell, Item).", + ) + parser.add_argument( + "--source-blacklist", + type=str, + default=None, + help="Path to file; do not delete crossrefs whose source key is in this set.", + ) + parser.add_argument( + "--reference-blacklist", + type=str, + default=None, + help="Path to file; do not delete crossrefs whose reference key is in this set.", + ) + parser.add_argument( + "--dry-run", + action="store_true", + help="Only print what would be deleted; do not delete.", + ) + + def handle(self, *args, **options): + doc_key = options["document"] + model_name = options["model"] + source_blacklist_path = options["source_blacklist"] + reference_blacklist_path = options["reference_blacklist"] + dry_run = options["dry_run"] + + try: + doc = get_document(doc_key) + except Exception as e: + raise CommandError(f"Document not found: {doc_key} ({e})") + + source_blacklist = load_blacklist(source_blacklist_path) + reference_blacklist = load_blacklist(reference_blacklist_path) + + qs = get_crossreferences_by_source_document( + doc, + source_model_name=model_name, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + count = qs.count() + + if dry_run: + self.stdout.write( + f"Would delete {count} crossreferences (source document {doc_key}). " + "Run without --dry-run to delete." + ) + return + + qs.delete() + self.stdout.write( + self.style.SUCCESS( + f"Deleted {count} crossreferences (source document {doc_key})." + ) + ) diff --git a/api_v2/management/commands/find_crossref_candidates.py b/api_v2/management/commands/find_crossref_candidates.py new file mode 100644 index 00000000..b422f6ba --- /dev/null +++ b/api_v2/management/commands/find_crossref_candidates.py @@ -0,0 +1,140 @@ +""" +Find objects in a document that are candidates for adding cross-references. + +One-shot run: pass --document and optionally blacklist paths. Output to console. +""" + +from django.core.management.base import BaseCommand, CommandError + +from api_v2.crossreference_utils import ( + get_document, + get_source_models_and_filters_for_document, + load_blacklist, + write_crossreference_report_files, +) + + +class Command(BaseCommand): + help = ( + "List objects with descriptions in a document that are candidates for " + "adding cross-references. Output to console." + ) + + def add_arguments(self, parser): + parser.add_argument( + "--document", + type=str, + required=True, + help="Document key (e.g. srd-2014).", + ) + parser.add_argument( + "--source-blacklist", + type=str, + default=None, + help="Path to file with source keys to exclude (one per line).", + ) + parser.add_argument( + "--reference-blacklist", + type=str, + default=None, + help="Path to file with reference keys to exclude (one per line).", + ) + parser.add_argument( + "--sources-report", + type=str, + default=None, + help="Write JSON report of source URLs and their crossreference_to list (most first).", + ) + parser.add_argument( + "--references-report", + type=str, + default=None, + help="Write JSON report of reference URLs and their crossreference_from list (most first).", + ) + + def handle(self, *args, **options): + doc_key = options["document"] + source_blacklist_path = options["source_blacklist"] + reference_blacklist_path = options["reference_blacklist"] + sources_report_path = options["sources_report"] + references_report_path = options["references_report"] + + try: + doc = get_document(doc_key) + except Exception as e: + raise CommandError(f"Document not found: {doc_key} ({e})") + + source_blacklist = load_blacklist(source_blacklist_path) + reference_blacklist = load_blacklist(reference_blacklist_path) + + pairs = get_source_models_and_filters_for_document(doc) + candidates = [] + + for model, filter_kwargs in pairs: + qs = ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ) + for obj in qs: + pk = getattr(obj, "pk", None) + if pk is None: + continue + pk_str = str(pk) + if pk_str in source_blacklist: + continue + name = getattr(obj, "name", "") or "" + desc_len = len(obj.desc) if obj.desc else 0 + try: + crossref_count = obj.crossreferences.count() + except Exception: + crossref_count = 0 + candidates.append( + (model.__name__, pk_str, name, desc_len, crossref_count) + ) + + if sources_report_path and references_report_path: + sources_report, references_report = write_crossreference_report_files( + doc, + sources_report_path, + references_report_path, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + self.stdout.write( + self.style.SUCCESS( + f"Wrote sources report to {sources_report_path} and references report to {references_report_path}." + ) + ) + # Top 10 sources with the most references + self.stdout.write("") + self.stdout.write("Top 10 sources (most references):") + for i, entry in enumerate(sources_report[:10], 1): + count = len(entry["crossreference_to"]) + anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) + words = f" — {', '.join(anchors)}" if anchors else "" + self.stdout.write(f" {i}. {entry['url']} ({count}){words}") + # Top 10 references with the most sources + self.stdout.write("") + self.stdout.write("Top 10 references (most sources):") + for i, entry in enumerate(references_report[:10], 1): + count = len(entry["crossreference_from"]) + anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) + words = f" — {', '.join(anchors)}" if anchors else "" + self.stdout.write(f" {i}. {entry['url']} ({count}){words}") + return + + if sources_report_path or references_report_path: + raise CommandError( + "Provide both --sources-report and --references-report, or neither." + ) + + self.stdout.write(f"Document: {doc_key}") + self.stdout.write( + "Candidates (objects with description; source-blacklist applied):" + ) + for model_name, key, name, desc_len, crossref_count in candidates: + self.stdout.write( + f" {model_name}\t{key}\t{name}\t{desc_len}\t{crossref_count}" + ) + self.stdout.write(f"Total: {len(candidates)} candidates.") diff --git a/crossref_reference_blacklist.txt b/crossref_reference_blacklist.txt new file mode 100644 index 00000000..fd1bee3f --- /dev/null +++ b/crossref_reference_blacklist.txt @@ -0,0 +1,70 @@ +srd-2024_bard_spellcasting +srd-2024_cleric_spellcasting +srd-2024_druid_spellcasting +srd-2024_paladin_spellcasting +srd-2024_ranger_spellcasting +srd-2024_sorcerer_spellcasting +srd-2024_wizard_spellcasting +srd-2024_barbarian_proficiency-bonus +srd-2024_bard_proficiency-bonus +srd-2024_cleric_proficiency-bonus +srd-2024_druid_proficiency-bonus +srd-2024_fighter_proficiency-bonus +srd-2024_monk_proficiency-bonus +srd-2024_paladin_proficiency-bonus +srd-2024_ranger_proficiency-bonus +srd-2024_rogue_proficiency-bonus +srd-2024_sorcerer_proficiency-bonus +srd-2024_warlock_proficiency-bonus +srd-2024_wizard_proficiency-bonus +srd-2024_bard_expertise +srd-2024_ranger_expertise +srd-2024_rogue_expertise +srd-2024_bard_cantrips +srd-2024_cleric_cantrips +srd-2024_druid_cantrips +srd-2024_sorcerer_cantrips +srd-2024_warlock_cantrips +srd-2024_wizard_cantrips +srd-2024_barbarian_extra-attack +srd-2024_fighter_extra-attack +srd-2024_fighter_two-extra-attacks +srd-2024_monk_extra-attack +srd-2024_paladin_extra-attack +srd-2024_ranger_extra-attack +srd-2024_bard_prepared-spells +srd-2024_cleric_prepared-spells +srd-2024_druid_prepared-spells +srd-2024_paladin_prepared-spells +srd-2024_ranger_prepared-spells +srd-2024_sorcerer_prepared-spells +srd-2024_warlock_prepared-spells +srd-2024_wizard_prepared-spells +srd-2024_light-wp +srd-2024_magic-weapon +srd-2024_d20-tests_attack-rolls +srd-2024_d20-tests_saving-throw +srd-2024_damage-and-healing_damage-rolls +srd-2024_damage-and-healing_hit-points +srd-2024_light +srd-2014_reach-wp +srd-2024_reach-wp +srd-2024_elf +srd-2024_orc +srd-2024_sleep +srd-2024_resistance +srd-2024_fly +srd-2024_musical-instrument-bagpipes +srd-2024_musical-instrument-drum +srd-2024_musical-instrument-dulcimer +srd-2024_musical-instrument-flute +srd-2024_musical-instrument-horn +srd-2024_musical-instrument-lute +srd-2024_musical-instrument-lyre +srd-2024_musical-instrument-pan-flute +srd-2024_musical-instrument-shawm +srd-2024_musical-instrument-viol +srd-2024_heavy-wp +srd-2024_d20-tests_ability-checks +srd-2024_social-interaction_ability-checks +srd-2024_combat_cover diff --git a/crossref_source_blacklist.txt b/crossref_source_blacklist.txt new file mode 100644 index 00000000..5fb50557 --- /dev/null +++ b/crossref_source_blacklist.txt @@ -0,0 +1,10 @@ +srd-2024_bard_bard-spell-list +srd-2024_cleric_cleric-spell-list +srd-2024_cleric_life-domain_life-domain-spells +srd-2024_druid_circle-of-the-land_spell-list +srd-2024_druid_druid-spell-list +srd-2024_paladin_spell-list +srd-2024_ranger_spell-list +srd-2024_sorcerer_sorcerer-spell-list +srd-2024_warlock_warlock-spell-list +srd-2024_wizard_wizard-spell-list From ee55963edb845f8e2d61aebd7583b81ddd81875c Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sun, 15 Feb 2026 14:24:38 -0600 Subject: [PATCH 03/33] Move logic into scripts/crossreference folder exclusively. Adding apply command. --- api_v2/crossreference_utils.py | 590 +- .../commands/apply_crossreferences.py | 66 + .../commands/delete_crossreferences.py | 52 +- .../commands/find_crossref_candidates.py | 105 +- references_report.json | 13721 ++++++++ scripts/crossreference/README.md | 30 + scripts/crossreference/__init__.py | 9 + .../crossreference/apply_crossreferences.py | 105 + scripts/crossreference/core.py | 686 + .../crossref_reference_blacklist.txt | 5 - .../crossref_source_blacklist.txt | 0 .../crossreference/delete_crossreferences.py | 58 + scripts/crossreference/find_candidates.py | 110 + sources_report.json | 28702 ++++++++++++++++ 14 files changed, 43548 insertions(+), 691 deletions(-) create mode 100644 api_v2/management/commands/apply_crossreferences.py create mode 100644 references_report.json create mode 100644 scripts/crossreference/README.md create mode 100644 scripts/crossreference/__init__.py create mode 100644 scripts/crossreference/apply_crossreferences.py create mode 100644 scripts/crossreference/core.py rename crossref_reference_blacklist.txt => scripts/crossreference/crossref_reference_blacklist.txt (95%) rename crossref_source_blacklist.txt => scripts/crossreference/crossref_source_blacklist.txt (100%) create mode 100644 scripts/crossreference/delete_crossreferences.py create mode 100644 scripts/crossreference/find_candidates.py create mode 100644 sources_report.json diff --git a/api_v2/crossreference_utils.py b/api_v2/crossreference_utils.py index 38140d36..b6ae9096 100644 --- a/api_v2/crossreference_utils.py +++ b/api_v2/crossreference_utils.py @@ -1,564 +1,36 @@ """ -Shared utilities for cross-reference candidate finding and deletion by document. +Re-export cross-reference logic from scripts.crossreference.core for backwards compatibility. -Used by find_crossref_candidates and delete_crossreferences management commands. +Management commands find_crossref_candidates and delete_crossreferences delegate to +scripts/crossreference/find_candidates.py and delete_crossreferences.py. """ -import json -import re -from pathlib import Path - -from django.apps import apps -from django.contrib.contenttypes.models import ContentType -from django.db.models.fields.related import ForeignKey - -from api_v2.models import CrossReference, Document - -# FK field names that point to a "parent" entity; sources with these will not link to that parent. -PARENT_FIELD_NAMES = ("parent", "subclass_of") - -# Object keys containing any of these substrings are excluded as both sources and references. -EXCLUDED_KEY_SUBSTRINGS = ("spellcasting-levels",) - -# Reference names that are never suggested as links (e.g. ordinal table headers like "1st", "6th"). -EXCLUDED_REFERENCE_NAMES = frozenset({"1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th"}) - - -# Map api_v2 model name to URL path segment (router basename) for building /v2/{basename}/{pk}/. -MODEL_TO_URL_BASENAME = { - "Item": "items", - "ItemSet": "itemsets", - "ItemCategory": "itemcategories", - "ItemRarity": "itemrarities", - "Ability": "abilities", - "AbilityDescription": "abilities", - "Skill": "skills", - "SkillDescription": "skills", - "Armor": "armor", - "Weapon": "weapons", - "WeaponProperty": "weaponproperties", - "Species": "species", - "SpeciesTrait": "species", - "Feat": "feats", - "FeatBenefit": "feats", - "Background": "backgrounds", - "BackgroundBenefit": "backgrounds", - "Creature": "creatures", - "CreatureTrait": "creatures", - "CreatureAction": "creatures", - "CreatureType": "creaturetypes", - "CreatureTypeDescription": "creaturetypes", - "CreatureSet": "creaturesets", - "Document": "documents", - "DamageType": "damagetypes", - "DamageTypeDescription": "damagetypes", - "Language": "languages", - "Alignment": "alignments", - "AlignmentDescription": "alignments", - "Condition": "conditions", - "ConditionDescription": "conditions", - "Spell": "spells", - "SpellSchool": "spellschools", - "SpellCastingOption": "spells", - "ClassFeature": "classes", - "ClassFeatureItem": "classes", - "CharacterClass": "classes", - "Size": "sizes", - "Environment": "environments", - "Rule": "rules", - "RuleSet": "rulesets", - "Image": "images", - "Service": "services", -} - - -def build_object_url(content_type: ContentType, object_key: str) -> str: - """Return the API v2 path for an object, e.g. /v2/spells/srd_fireball/.""" - model = content_type.model_class() - if model is None: - return f"/v2/unknown/{object_key}/" - basename = MODEL_TO_URL_BASENAME.get(model.__name__) - if basename is None: - basename = (model._meta.verbose_name_plural or model.__name__.lower() + "s").replace(" ", "") - return f"/v2/{basename}/{object_key}/" - - -# Model classification for document scoping (aligned with export command). -SKIPPED_MODEL_NAMES = [ - "Document", - "GameSystem", - "License", - "Publisher", - "SearchResult", -] -CHILD_MODEL_NAMES = [ - "SpeciesTrait", - "FeatBenefit", - "BackgroundBenefit", - "ClassFeatureItem", - "SpellCastingOption", - "CreatureAction", - "CreatureTrait", -] -CHILD_CHILD_MODEL_NAMES = ["CreatureActionAttack"] - -# Models that can be mentioned in descriptions (reference targets for text-matching). -REFERENCE_MODEL_NAMES = [ - "Spell", - "Item", - "Condition", - "ConditionDescription", - "Feat", - "Rule", - "RuleSet", - "WeaponProperty", - "DamageTypeDescription", - "AbilityDescription", - "SkillDescription", - "AlignmentDescription", - "CreatureTypeDescription", - "Language", - "Environment", - "Background", - "Species", - "CharacterClass", - "ClassFeature", +from scripts.crossreference.core import ( + REFERENCE_MODEL_NAMES, + build_crossreference_reports, + build_object_url, + get_all_crossreferences_for_document, + get_crossreferences_by_source_document, + get_document, + get_reference_candidates_for_document, + get_reference_models_and_filters_for_document, + get_source_models_and_filters_for_document, + identify_crossreferences_from_text, + load_blacklist, + write_crossreference_report_files, +) + +__all__ = [ + "REFERENCE_MODEL_NAMES", + "build_crossreference_reports", + "build_object_url", + "get_all_crossreferences_for_document", + "get_crossreferences_by_source_document", + "get_document", + "get_reference_candidates_for_document", + "get_reference_models_and_filters_for_document", + "get_source_models_and_filters_for_document", + "identify_crossreferences_from_text", + "load_blacklist", + "write_crossreference_report_files", ] - - -def _model_has_name(model) -> bool: - """Return True if the model has a name field.""" - return any(f.name == "name" for f in model._meta.get_fields()) - - -def get_reference_models_and_filters_for_document(doc): - """ - Return (model, filter_kwargs) for all api_v2 models that are in REFERENCE_MODEL_NAMES, - have a name field, and belong to the given document. - """ - result = [] - for model in apps.get_models(): - if model._meta.app_label != "api_v2": - continue - if model.__name__ not in REFERENCE_MODEL_NAMES: - continue - if not _model_has_name(model): - continue - - if model.__name__ in CHILD_CHILD_MODEL_NAMES: - filter_kwargs = {"parent__parent__document": doc} - elif model.__name__ in CHILD_MODEL_NAMES: - filter_kwargs = {"parent__document": doc} - else: - filter_kwargs = {"document": doc} - - result.append((model, filter_kwargs)) - return result - - -def get_reference_candidates_for_document(doc): - """ - Yield (content_type, object_key, name) for every reference candidate in the document. - Name is stripped; used for case-insensitive substring match in descriptions. - """ - for model, filter_kwargs in get_reference_models_and_filters_for_document(doc): - ct = ContentType.objects.get_for_model(model) - qs = model.objects.filter(**filter_kwargs) - for obj in qs: - name = getattr(obj, "name", None) - if name is None or not str(name).strip(): - continue - yield ct, str(obj.pk), str(name).strip() - - -def get_document(doc_key: str) -> Document: - """Resolve document by key. Raises Document.DoesNotExist if not found.""" - return Document.objects.get(key=doc_key) - - -def load_blacklist(file_path: str | None) -> set[str]: - """ - Load a blacklist from a file: one object key per line (stripped, empty lines skipped). - If file_path is None or file is missing, return empty set. - """ - if not file_path: - return set() - path = Path(file_path) - if not path.exists(): - return set() - keys = set() - with open(path, encoding="utf-8") as f: - for line in f: - key = line.strip() - if key: - keys.add(key) - return keys - - -def _model_has_description(model) -> bool: - """Return True if the model has a desc field (i.e. can be a crossref source).""" - return any(f.name == "desc" for f in model._meta.get_fields()) - - -def get_source_models_and_filters_for_document(doc, model_name: str | None = None): - """ - Return a list of (model, filter_kwargs) for all api_v2 models that have - HasDescription (desc field) and belong to the given document. - - doc: Document instance. - model_name: If set, only include this model (e.g. 'Spell', 'Item'). - - Each filter_kwargs is suitable for model.objects.filter(**filter_kwargs). - """ - result = [] - for model in apps.get_models(): - if model._meta.app_label != "api_v2": - continue - if model.__name__ in SKIPPED_MODEL_NAMES: - continue - if not _model_has_description(model): - continue - if model_name is not None and model.__name__ != model_name: - continue - - if model.__name__ in CHILD_CHILD_MODEL_NAMES: - filter_kwargs = {"parent__parent__document": doc} - elif model.__name__ in CHILD_MODEL_NAMES: - filter_kwargs = {"parent__document": doc} - else: - filter_kwargs = {"document": doc} - - result.append((model, filter_kwargs)) - return result - - -def get_crossreferences_by_source_document( - doc, - *, - source_model_name: str | None = None, - source_blacklist: set[str] | None = None, - reference_blacklist: set[str] | None = None, -): - """ - Return a queryset of CrossReference rows whose source object is in the given - document, optionally restricted by source model. Excludes rows whose - source_object_key is in source_blacklist or reference_object_key is in - reference_blacklist. - """ - source_blacklist = source_blacklist or set() - reference_blacklist = reference_blacklist or set() - - pairs = get_source_models_and_filters_for_document(doc, model_name=source_model_name) - crossref_ids = [] - - for model, filter_kwargs in pairs: - ct = ContentType.objects.get_for_model(model) - keys_in_scope = set( - model.objects.filter(**filter_kwargs).values_list("pk", flat=True) - ) - if not keys_in_scope: - continue - qs = CrossReference.objects.filter( - source_content_type=ct, - source_object_key__in=keys_in_scope, - ) - if source_blacklist: - qs = qs.exclude(source_object_key__in=source_blacklist) - if reference_blacklist: - qs = qs.exclude(reference_object_key__in=reference_blacklist) - crossref_ids.extend(qs.values_list("pk", flat=True)) - - if not crossref_ids: - return CrossReference.objects.none() - return CrossReference.objects.filter(pk__in=crossref_ids) - - -def get_all_crossreferences_for_document(doc): - """Return queryset of all CrossReference rows whose source is in the given document.""" - return get_crossreferences_by_source_document( - doc, - source_model_name=None, - source_blacklist=set(), - reference_blacklist=set(), - ) - - -def _get_parent_keys_to_skip(obj) -> set[tuple[int, str]]: - """ - For an object that may have a parent-like FK (e.g. parent, subclass_of), - return a set of (content_type_id, parent_key) that should not be suggested as references. - """ - result = set() - model = type(obj) - for field_name in PARENT_FIELD_NAMES: - try: - field = model._meta.get_field(field_name) - except Exception: - continue - if not isinstance(field, ForeignKey): - continue - parent_id = getattr(obj, field.attname, None) - if parent_id is None: - continue - parent_model = field.remote_field.model - if isinstance(parent_model, str): - if "." in parent_model: - parent_model = apps.get_model(parent_model) - else: - parent_model = apps.get_model(model._meta.app_label, parent_model) - parent_ct = ContentType.objects.get_for_model(parent_model) - result.add((parent_ct.id, str(parent_id))) - return result - - -def _match_in_forbidden_context(desc: str, match_start: int, match_end: int) -> bool: - """ - Return True if the match at (match_start, match_end) is inside bold, a header line, - or a table header line. Such matches are excluded (don't link). - """ - # Bold: **...** or __...__ - for bold_pattern in (r"\*\*(.*?)\*\*", r"__(.*?)__"): - for m in re.finditer(bold_pattern, desc): - if m.start() <= match_start and match_end <= m.end(): - return True - - # Which line contains the match? - lines = desc.split("\n") - char_pos = 0 - line_idx = 0 - for idx, line in enumerate(lines): - if char_pos <= match_start < char_pos + len(line): - line_idx = idx - break - char_pos += len(line) + 1 - - line = lines[line_idx] - - # Header: line starts with # (optional leading whitespace) - if line.lstrip().startswith("#"): - return True - - # Table header: this line has | and is the first line of a run of table lines - if "|" in line: - block_start = line_idx - while block_start > 0 and "|" in lines[block_start - 1]: - block_start -= 1 - if block_start == line_idx: - return True - - return False - - -def identify_crossreferences_from_text( - doc, - source_blacklist: set[str] | None = None, - reference_blacklist: set[str] | None = None, -): - """ - Find suggested (source, reference) links by matching reference names in source descriptions. - Returns (by_source, by_reference): - - by_source: dict key_src -> (src_url, list of (ref_url, anchor)) - - by_reference: dict key_ref -> (ref_url, list of (src_url, anchor)) - """ - source_blacklist = source_blacklist or set() - reference_blacklist = reference_blacklist or set() - # Precompile word-boundary regex per ref (avoids recompiling for every source). - ref_candidates = [] - for ref_ct, ref_key, ref_name in get_reference_candidates_for_document(doc): - if ref_key in reference_blacklist or not ref_name or len(ref_name) < 2: - continue - if ref_name in EXCLUDED_REFERENCE_NAMES: - continue - if any(sub in ref_key for sub in EXCLUDED_KEY_SUBSTRINGS): - continue - pattern = re.compile( - r"\b" + re.escape(ref_name) + r"\b", - re.IGNORECASE, - ) - ref_candidates.append((ref_ct, ref_key, ref_name, pattern)) - - by_source = {} - by_reference = {} - - for model, filter_kwargs in get_source_models_and_filters_for_document(doc): - for obj in ( - model.objects.filter(**filter_kwargs) - .exclude(desc__isnull=True) - .exclude(desc="") - ): - pk_str = str(obj.pk) - if pk_str in source_blacklist: - continue - if any(sub in pk_str for sub in EXCLUDED_KEY_SUBSTRINGS): - continue - desc = obj.desc or "" - desc_len = len(desc) - src_ct = ContentType.objects.get_for_model(model) - src_url = build_object_url(src_ct, pk_str) - key_src = (src_ct.id, pk_str) - seen_refs = set() - parents_to_skip = _get_parent_keys_to_skip(obj) - - for ref_ct, ref_key, ref_name, pattern in ref_candidates: - # Don't allow an object to reference itself - if (ref_ct.id, ref_key) == (src_ct.id, pk_str): - continue - # Don't allow an object to reference its parent (e.g. class feature -> class, trait -> species) - if (ref_ct.id, ref_key) in parents_to_skip: - continue - if len(ref_name) > desc_len: - continue - # Require at least one match that is not in bold/header/table-header - found_allowed = False - for m in pattern.finditer(desc): - if not _match_in_forbidden_context(desc, m.start(), m.end()): - found_allowed = True - break - if not found_allowed: - continue - key_ref = (ref_ct.id, ref_key) - if (key_src, key_ref) in seen_refs: - continue - seen_refs.add((key_src, key_ref)) - ref_url = build_object_url(ref_ct, ref_key) - - if key_src not in by_source: - by_source[key_src] = (src_url, []) - by_source[key_src][1].append((ref_url, ref_name)) - - if key_ref not in by_reference: - by_reference[key_ref] = (ref_url, []) - by_reference[key_ref][1].append((src_url, ref_name)) - - return by_source, by_reference - - -def build_crossreference_reports( - doc, - source_blacklist: set[str] | None = None, - reference_blacklist: set[str] | None = None, - use_text_matching: bool = True, -): - """ - Build two report structures for the document. - - When use_text_matching=True (default for report files): uses text-match identification - (reference names in source descriptions). Each entry includes "matches" with anchor. - When use_text_matching=False: uses existing CrossReference rows from the DB. - - Returns (sources_report, references_report). - """ - source_blacklist = source_blacklist or set() - reference_blacklist = reference_blacklist or set() - - if use_text_matching: - by_source, by_reference = identify_crossreferences_from_text( - doc, - source_blacklist=source_blacklist, - reference_blacklist=reference_blacklist, - ) - # Build sources report: every source candidate with suggested links and matches - candidate_entries = [] - for model, filter_kwargs in get_source_models_and_filters_for_document(doc): - for obj in ( - model.objects.filter(**filter_kwargs) - .exclude(desc__isnull=True) - .exclude(desc="") - ): - pk_str = str(obj.pk) - if pk_str in source_blacklist: - continue - ct = ContentType.objects.get_for_model(model) - url = build_object_url(ct, pk_str) - key_src = (ct.id, pk_str) - refs_with_anchor = by_source.get(key_src, (url, []))[1] - ref_urls = sorted({r[0] for r in refs_with_anchor}) - matches = [{"url": r[0], "anchor": r[1]} for r in refs_with_anchor] - candidate_entries.append((url, ref_urls, matches)) - - sources_report = [ - {"url": url, "crossreference_to": ref_urls, "matches": matches} - for url, ref_urls, matches in candidate_entries - ] - sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) - - references_report = [ - { - "url": url, - "crossreference_from": sorted({m[0] for m in src_list}), - "matches": [{"url": m[0], "anchor": m[1]} for m in src_list], - } - for _key, (url, src_list) in by_reference.items() - ] - references_report.sort( - key=lambda x: len(x["crossreference_from"]), reverse=True - ) - return sources_report, references_report - - # DB-based: existing CrossReference rows only - qs = get_all_crossreferences_for_document(doc) - by_source = {} - by_reference = {} - - for cr in qs.select_related("source_content_type", "reference_content_type"): - src_url = build_object_url(cr.source_content_type, cr.source_object_key) - ref_url = build_object_url(cr.reference_content_type, cr.reference_object_key) - key_src = (cr.source_content_type_id, cr.source_object_key) - key_ref = (cr.reference_content_type_id, cr.reference_object_key) - if key_src not in by_source: - by_source[key_src] = (src_url, set()) - by_source[key_src][1].add(ref_url) - if key_ref not in by_reference: - by_reference[key_ref] = (ref_url, set()) - by_reference[key_ref][1].add(src_url) - - candidate_entries = [] - for model, filter_kwargs in get_source_models_and_filters_for_document(doc): - for obj in ( - model.objects.filter(**filter_kwargs) - .exclude(desc__isnull=True) - .exclude(desc="") - ): - pk_str = str(obj.pk) - if pk_str in source_blacklist: - continue - ct = ContentType.objects.get_for_model(model) - url = build_object_url(ct, pk_str) - key_src = (ct.id, pk_str) - ref_urls = by_source[key_src][1] if key_src in by_source else set() - candidate_entries.append((url, ref_urls)) - - sources_report = [ - {"url": url, "crossreference_to": sorted(ref_urls)} - for url, ref_urls in candidate_entries - ] - sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) - - references_report = [ - {"url": url, "crossreference_from": sorted(src_urls)} - for _key, (url, src_urls) in by_reference.items() - ] - references_report.sort( - key=lambda x: len(x["crossreference_from"]), reverse=True - ) - return sources_report, references_report - - -def write_crossreference_report_files( - doc, - sources_path: str, - references_path: str, - source_blacklist: set[str] | None = None, - reference_blacklist: set[str] | None = None, -): - """Build both reports, write them as JSON to the given paths, and return (sources_report, references_report).""" - sources_report, references_report = build_crossreference_reports( - doc, - source_blacklist=source_blacklist, - reference_blacklist=reference_blacklist, - ) - with open(sources_path, "w", encoding="utf-8") as f: - json.dump(sources_report, f, indent=2) - with open(references_path, "w", encoding="utf-8") as f: - json.dump(references_report, f, indent=2) - return sources_report, references_report diff --git a/api_v2/management/commands/apply_crossreferences.py b/api_v2/management/commands/apply_crossreferences.py new file mode 100644 index 00000000..ce0358e9 --- /dev/null +++ b/api_v2/management/commands/apply_crossreferences.py @@ -0,0 +1,66 @@ +""" +Apply suggested cross-references to the database from text-matching. + +Delegates to scripts/crossreference/apply_crossreferences.py. +""" + +from django.core.management.base import BaseCommand, CommandError + +from scripts.crossreference.apply_crossreferences import run as run_apply_crossreferences + + +class Command(BaseCommand): + help = ( + "Create CrossReference rows from text-matching for the given document. " + "Use --dry-run to preview; use --replace to delete existing crossrefs for " + "the document before creating." + ) + + def add_arguments(self, parser): + parser.add_argument( + "--document", + type=str, + required=True, + help="Document key (e.g. srd-2024).", + ) + parser.add_argument( + "--source-blacklist", + type=str, + default=None, + help="Path to file with source keys to exclude (one per line).", + ) + parser.add_argument( + "--reference-blacklist", + type=str, + default=None, + help="Path to file with reference keys to exclude (one per line).", + ) + parser.add_argument( + "--dry-run", + action="store_true", + help="Only print what would be created; do not create.", + ) + parser.add_argument( + "--replace", + action="store_true", + help="Delete existing crossrefs whose source is in this document before creating.", + ) + + def handle(self, *args, **options): + doc_key = options["document"] + try: + run_apply_crossreferences( + doc_key, + source_blacklist_path=options["source_blacklist"], + reference_blacklist_path=options["reference_blacklist"], + dry_run=options["dry_run"], + replace_existing=options["replace"], + stdout=self.stdout, + style_success=self.style.SUCCESS, + ) + except Exception as e: + if type(e).__name__ == "DoesNotExist" or "not found" in str(e).lower(): + raise CommandError(f"Document not found: {doc_key} ({e})") from e + if isinstance(e, ValueError): + raise CommandError(str(e)) from e + raise diff --git a/api_v2/management/commands/delete_crossreferences.py b/api_v2/management/commands/delete_crossreferences.py index 0563c03c..88638f79 100644 --- a/api_v2/management/commands/delete_crossreferences.py +++ b/api_v2/management/commands/delete_crossreferences.py @@ -1,16 +1,12 @@ """ Delete groups of cross-references by source document. -Optionally restrict by source model and/or protect sources/references via blacklists. +Delegates to scripts/crossreference/delete_crossreferences.py. """ from django.core.management.base import BaseCommand, CommandError -from api_v2.crossreference_utils import ( - get_crossreferences_by_source_document, - get_document, - load_blacklist, -) +from scripts.crossreference.delete_crossreferences import run as run_delete_crossreferences class Command(BaseCommand): @@ -53,37 +49,17 @@ def add_arguments(self, parser): def handle(self, *args, **options): doc_key = options["document"] - model_name = options["model"] - source_blacklist_path = options["source_blacklist"] - reference_blacklist_path = options["reference_blacklist"] - dry_run = options["dry_run"] - try: - doc = get_document(doc_key) - except Exception as e: - raise CommandError(f"Document not found: {doc_key} ({e})") - - source_blacklist = load_blacklist(source_blacklist_path) - reference_blacklist = load_blacklist(reference_blacklist_path) - - qs = get_crossreferences_by_source_document( - doc, - source_model_name=model_name, - source_blacklist=source_blacklist, - reference_blacklist=reference_blacklist, - ) - count = qs.count() - - if dry_run: - self.stdout.write( - f"Would delete {count} crossreferences (source document {doc_key}). " - "Run without --dry-run to delete." - ) - return - - qs.delete() - self.stdout.write( - self.style.SUCCESS( - f"Deleted {count} crossreferences (source document {doc_key})." + run_delete_crossreferences( + doc_key, + model_name=options["model"], + source_blacklist_path=options["source_blacklist"], + reference_blacklist_path=options["reference_blacklist"], + dry_run=options["dry_run"], + stdout=self.stdout, + style_success=self.style.SUCCESS, ) - ) + except Exception as e: + if type(e).__name__ == "DoesNotExist" or "not found" in str(e).lower(): + raise CommandError(f"Document not found: {doc_key} ({e})") from e + raise diff --git a/api_v2/management/commands/find_crossref_candidates.py b/api_v2/management/commands/find_crossref_candidates.py index b422f6ba..00829e36 100644 --- a/api_v2/management/commands/find_crossref_candidates.py +++ b/api_v2/management/commands/find_crossref_candidates.py @@ -1,17 +1,12 @@ """ Find objects in a document that are candidates for adding cross-references. -One-shot run: pass --document and optionally blacklist paths. Output to console. +Delegates to scripts/crossreference/find_candidates.py. """ from django.core.management.base import BaseCommand, CommandError -from api_v2.crossreference_utils import ( - get_document, - get_source_models_and_filters_for_document, - load_blacklist, - write_crossreference_report_files, -) +from scripts.crossreference.find_candidates import run as run_find_candidates class Command(BaseCommand): @@ -54,87 +49,19 @@ def add_arguments(self, parser): def handle(self, *args, **options): doc_key = options["document"] - source_blacklist_path = options["source_blacklist"] - reference_blacklist_path = options["reference_blacklist"] - sources_report_path = options["sources_report"] - references_report_path = options["references_report"] - try: - doc = get_document(doc_key) - except Exception as e: - raise CommandError(f"Document not found: {doc_key} ({e})") - - source_blacklist = load_blacklist(source_blacklist_path) - reference_blacklist = load_blacklist(reference_blacklist_path) - - pairs = get_source_models_and_filters_for_document(doc) - candidates = [] - - for model, filter_kwargs in pairs: - qs = ( - model.objects.filter(**filter_kwargs) - .exclude(desc__isnull=True) - .exclude(desc="") - ) - for obj in qs: - pk = getattr(obj, "pk", None) - if pk is None: - continue - pk_str = str(pk) - if pk_str in source_blacklist: - continue - name = getattr(obj, "name", "") or "" - desc_len = len(obj.desc) if obj.desc else 0 - try: - crossref_count = obj.crossreferences.count() - except Exception: - crossref_count = 0 - candidates.append( - (model.__name__, pk_str, name, desc_len, crossref_count) - ) - - if sources_report_path and references_report_path: - sources_report, references_report = write_crossreference_report_files( - doc, - sources_report_path, - references_report_path, - source_blacklist=source_blacklist, - reference_blacklist=reference_blacklist, + run_find_candidates( + doc_key, + source_blacklist_path=options["source_blacklist"], + reference_blacklist_path=options["reference_blacklist"], + sources_report_path=options["sources_report"], + references_report_path=options["references_report"], + stdout=self.stdout, + style_success=self.style.SUCCESS, ) - self.stdout.write( - self.style.SUCCESS( - f"Wrote sources report to {sources_report_path} and references report to {references_report_path}." - ) - ) - # Top 10 sources with the most references - self.stdout.write("") - self.stdout.write("Top 10 sources (most references):") - for i, entry in enumerate(sources_report[:10], 1): - count = len(entry["crossreference_to"]) - anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) - words = f" — {', '.join(anchors)}" if anchors else "" - self.stdout.write(f" {i}. {entry['url']} ({count}){words}") - # Top 10 references with the most sources - self.stdout.write("") - self.stdout.write("Top 10 references (most sources):") - for i, entry in enumerate(references_report[:10], 1): - count = len(entry["crossreference_from"]) - anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) - words = f" — {', '.join(anchors)}" if anchors else "" - self.stdout.write(f" {i}. {entry['url']} ({count}){words}") - return - - if sources_report_path or references_report_path: - raise CommandError( - "Provide both --sources-report and --references-report, or neither." - ) - - self.stdout.write(f"Document: {doc_key}") - self.stdout.write( - "Candidates (objects with description; source-blacklist applied):" - ) - for model_name, key, name, desc_len, crossref_count in candidates: - self.stdout.write( - f" {model_name}\t{key}\t{name}\t{desc_len}\t{crossref_count}" - ) - self.stdout.write(f"Total: {len(candidates)} candidates.") + except Exception as e: + if type(e).__name__ == "DoesNotExist" or "not found" in str(e).lower(): + raise CommandError(f"Document not found: {doc_key} ({e})") from e + if isinstance(e, ValueError): + raise CommandError(str(e)) from e + raise diff --git a/references_report.json b/references_report.json new file mode 100644 index 00000000..91d5112d --- /dev/null +++ b/references_report.json @@ -0,0 +1,13721 @@ +[ + { + "url": "/v2/items/srd-2024_acid/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_elemental-affinity/", + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/creatures/srd-2024_aboleth_mucus-cloud/", + "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge/", + "/v2/creatures/srd-2024_adult-black-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-black-dragon_rend/", + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath/", + "/v2/creatures/srd-2024_adult-copper-dragon_rend/", + "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath/", + "/v2/creatures/srd-2024_ancient-black-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-black-dragon_rend/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath/", + "/v2/creatures/srd-2024_ancient-copper-dragon_rend/", + "/v2/creatures/srd-2024_ankheg_acid-spray-recharge-6/", + "/v2/creatures/srd-2024_ankheg_acid-spray/", + "/v2/creatures/srd-2024_ankheg_bite/", + "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath/", + "/v2/creatures/srd-2024_black-dragon-wyrmling_rend/", + "/v2/creatures/srd-2024_black-pudding_corrosive-form/", + "/v2/creatures/srd-2024_black-pudding_dissolving-pseudopod/", + "/v2/creatures/srd-2024_clay-golem_acid-absorption/", + "/v2/creatures/srd-2024_clay-golem_slam/", + "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath/", + "/v2/creatures/srd-2024_gelatinous-cube_pseudopod/", + "/v2/creatures/srd-2024_gray-ooze_pseudopod/", + "/v2/creatures/srd-2024_half-dragon_draconic-origin/", + "/v2/creatures/srd-2024_mimic_bite/", + "/v2/creatures/srd-2024_mimic_pseudopod/", + "/v2/creatures/srd-2024_ochre-jelly_pseudopod/", + "/v2/creatures/srd-2024_troll-limb_regeneration/", + "/v2/creatures/srd-2024_troll_regeneration/", + "/v2/creatures/srd-2024_vampire-spawn_vampire-weakness/", + "/v2/creatures/srd-2024_vampire_vampire-weakness/", + "/v2/creatures/srd-2024_young-black-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_young-black-dragon_acid-breath/", + "/v2/creatures/srd-2024_young-black-dragon_rend/", + "/v2/creatures/srd-2024_young-copper-dragon_acid-breath-recharge-5-6/", + "/v2/creatures/srd-2024_young-copper-dragon_acid-breath/", + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_armor-of-resistance-breastplate/", + "/v2/items/srd-2024_armor-of-resistance-chain-mail/", + "/v2/items/srd-2024_armor-of-resistance-chain-shirt/", + "/v2/items/srd-2024_armor-of-resistance-half-plate/", + "/v2/items/srd-2024_armor-of-resistance-hide-armor/", + "/v2/items/srd-2024_armor-of-resistance-leather/", + "/v2/items/srd-2024_armor-of-resistance-padded/", + "/v2/items/srd-2024_armor-of-resistance-plate/", + "/v2/items/srd-2024_armor-of-resistance-ring-mail/", + "/v2/items/srd-2024_armor-of-resistance-scale-mail/", + "/v2/items/srd-2024_armor-of-resistance-splint/", + "/v2/items/srd-2024_armor-of-resistance-studded-leather/", + "/v2/items/srd-2024_dragon-scale-mail/", + "/v2/items/srd-2024_potion-of-resistance/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_ring-of-resistance/", + "/v2/species/srd-2024_dragonborn_draconic-ancestry/", + "/v2/spells/srd-2024_acid-arrow/", + "/v2/spells/srd-2024_acid-splash/", + "/v2/spells/srd-2024_chromatic-orb/", + "/v2/spells/srd-2024_conjure-minor-elementals/", + "/v2/spells/srd-2024_dragons-breath/", + "/v2/spells/srd-2024_protection-from-energy/", + "/v2/spells/srd-2024_resistance/", + "/v2/spells/srd-2024_sorcerous-burst/", + "/v2/spells/srd-2024_vitriolic-sphere/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-breastplate/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-chain-mail/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-chain-shirt/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-half-plate/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-hide-armor/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-leather/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-padded/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-plate/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-ring-mail/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-scale-mail/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-splint/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-studded-leather/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_dragon-scale-mail/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_potion-of-resistance/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_ring-of-resistance/", + "anchor": "Acid" + }, + { + "url": "/v2/species/srd-2024_dragonborn_draconic-ancestry/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_multiattack/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_multiattack/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ankheg_acid-spray-recharge-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ankheg_bite/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ankheg_acid-spray/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_dissolving-pseudopod/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_slam/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_gelatinous-cube_pseudopod/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_pseudopod/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_mimic_bite/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_mimic_pseudopod/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_ochre-jelly_pseudopod/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_rend/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_acid-breath-recharge-5-6/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_acid-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_aboleth_mucus-cloud/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_corrosive-form/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_acid-absorption/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_draconic-origin/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_troll-limb_regeneration/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_troll_regeneration/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_vampire-weakness/", + "anchor": "Acid" + }, + { + "url": "/v2/creatures/srd-2024_vampire_vampire-weakness/", + "anchor": "Acid" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_elemental-affinity/", + "anchor": "Acid" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-splash/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_chromatic-orb/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_conjure-minor-elementals/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_dragons-breath/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_protection-from-energy/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_resistance/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_sorcerous-burst/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_vitriolic-sphere/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/items/srd-2024_holy-avenger-battleaxe/", + "/v2/items/srd-2024_holy-avenger-blowgun/", + "/v2/items/srd-2024_holy-avenger-club/", + "/v2/items/srd-2024_holy-avenger-dagger/", + "/v2/items/srd-2024_holy-avenger-dart/", + "/v2/items/srd-2024_holy-avenger-flail/", + "/v2/items/srd-2024_holy-avenger-glaive/", + "/v2/items/srd-2024_holy-avenger-greataxe/", + "/v2/items/srd-2024_holy-avenger-greatclub/", + "/v2/items/srd-2024_holy-avenger-greatsword/", + "/v2/items/srd-2024_holy-avenger-halberd/", + "/v2/items/srd-2024_holy-avenger-hand-crossbow/", + "/v2/items/srd-2024_holy-avenger-handaxe/", + "/v2/items/srd-2024_holy-avenger-heavy-crossbow/", + "/v2/items/srd-2024_holy-avenger-javelin/", + "/v2/items/srd-2024_holy-avenger-lance/", + "/v2/items/srd-2024_holy-avenger-light-crossbow/", + "/v2/items/srd-2024_holy-avenger-light-hammer/", + "/v2/items/srd-2024_holy-avenger-longbow/", + "/v2/items/srd-2024_holy-avenger-longsword/", + "/v2/items/srd-2024_holy-avenger-mace/", + "/v2/items/srd-2024_holy-avenger-maul/", + "/v2/items/srd-2024_holy-avenger-morningstar/", + "/v2/items/srd-2024_holy-avenger-musket/", + "/v2/items/srd-2024_holy-avenger-pike/", + "/v2/items/srd-2024_holy-avenger-pistol/", + "/v2/items/srd-2024_holy-avenger-quarterstaff/", + "/v2/items/srd-2024_holy-avenger-rapier/", + "/v2/items/srd-2024_holy-avenger-scimitar/", + "/v2/items/srd-2024_holy-avenger-shortbow/", + "/v2/items/srd-2024_holy-avenger-shortsword/", + "/v2/items/srd-2024_holy-avenger-sickle/", + "/v2/items/srd-2024_holy-avenger-sling/", + "/v2/items/srd-2024_holy-avenger-spear/", + "/v2/items/srd-2024_holy-avenger-trident/", + "/v2/items/srd-2024_holy-avenger-war-pick/", + "/v2/items/srd-2024_holy-avenger-warhammer/", + "/v2/items/srd-2024_holy-avenger-whip/", + "/v2/items/srd-2024_holy-avenger/", + "/v2/items/srd-2024_holy-symbol-amulet/", + "/v2/items/srd-2024_holy-symbol-emblem/", + "/v2/items/srd-2024_holy-symbol-reliquary/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_holy-avenger/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-battleaxe/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-blowgun/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-club/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-dagger/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-dart/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-flail/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-glaive/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greataxe/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greatclub/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greatsword/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-halberd/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-hand-crossbow/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-handaxe/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-heavy-crossbow/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-javelin/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-lance/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-light-crossbow/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-light-hammer/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-longbow/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-longsword/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-mace/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-maul/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-morningstar/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-musket/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-pike/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-pistol/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-quarterstaff/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-rapier/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-scimitar/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-shortbow/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-shortsword/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-sickle/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-sling/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-spear/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-trident/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-war-pick/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-warhammer/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-avenger-whip/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-amulet/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-emblem/", + "anchor": "Paladin" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-reliquary/", + "anchor": "Paladin" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/", + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_chuul_sense-magic/", + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_night-hag_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "/v2/items/srd-2024_dragon-orb/", + "/v2/items/srd-2024_rod-of-alertness/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_staff-of-the-woodlands/", + "/v2/items/srd-2024_wand-of-magic-detection/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/items/srd-2024_wand-of-magic-detection/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/creatures/srd-2024_chuul_sense-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Detect Magic" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_aura-of-courage/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_aura-of-devotion/", + "/v2/classes/srd-2024_path-of-the-berserker_mindless-rage/", + "/v2/classes/srd-2024_wizard_evoker_overchannel/", + "/v2/conditions/srd-2024_petrified/", + "/v2/creatures/srd-2024_ettercap_web-strand-recharge-5-6/", + "/v2/creatures/srd-2024_ettercap_web-strand/", + "/v2/creatures/srd-2024_giant-spider_web-recharge-5-6/", + "/v2/creatures/srd-2024_giant-spider_web/", + "/v2/creatures/srd-2024_mummy-lord_undead-restoration/", + "/v2/creatures/srd-2024_roper_tentacle/", + "/v2/items/srd-2024_apparatus-of-the-crab/", + "/v2/items/srd-2024_armor-of-invulnerability/", + "/v2/items/srd-2024_brooch-of-shielding/", + "/v2/items/srd-2024_horn-of-valhalla/", + "/v2/items/srd-2024_instant-fortress/", + "/v2/items/srd-2024_mirror-of-life-trapping/", + "/v2/items/srd-2024_net/", + "/v2/items/srd-2024_periapt-of-proof-against-poison/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_rope-of-climbing/", + "/v2/items/srd-2024_rope-of-entanglement/", + "/v2/items/srd-2024_vorpal-glaive/", + "/v2/items/srd-2024_vorpal-greatsword/", + "/v2/items/srd-2024_vorpal-longsword/", + "/v2/items/srd-2024_vorpal-scimitar/", + "/v2/spells/srd-2024_calm-emotions/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_heroes-feast/", + "/v2/spells/srd-2024_mind-blank/", + "/v2/spells/srd-2024_silence/", + "/v2/spells/srd-2024_sleep/", + "/v2/spells/srd-2024_wall-of-ice/", + "/v2/spells/srd-2024_wall-of-stone/", + "/v2/spells/srd-2024_wind-walk/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_apparatus-of-the-crab/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_armor-of-invulnerability/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_brooch-of-shielding/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_horn-of-valhalla/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_instant-fortress/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_mirror-of-life-trapping/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_net/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_periapt-of-proof-against-poison/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_rope-of-climbing/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_rope-of-entanglement/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_vorpal-glaive/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_vorpal-greatsword/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_vorpal-longsword/", + "anchor": "Immunity" + }, + { + "url": "/v2/items/srd-2024_vorpal-scimitar/", + "anchor": "Immunity" + }, + { + "url": "/v2/conditions/srd-2024_petrified/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_ettercap_web-strand-recharge-5-6/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_ettercap_web-strand/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_web-recharge-5-6/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_web/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_roper_tentacle/", + "anchor": "Immunity" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_undead-restoration/", + "anchor": "Immunity" + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-of-courage/", + "anchor": "Immunity" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_aura-of-devotion/", + "anchor": "Immunity" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_mindless-rage/", + "anchor": "Immunity" + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_overchannel/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_calm-emotions/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_heroes-feast/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_mind-blank/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_silence/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_wall-of-stone/", + "anchor": "Immunity" + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_jack-of-all-trades/", + "/v2/classes/srd-2024_druid_wild-shape/", + "/v2/classes/srd-2024_monk_monks-focus/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_holy-nimbus/", + "/v2/classes/srd-2024_path-of-the-berserker_intimidating-presence/", + "/v2/classes/srd-2024_rogue_cunning-strike/", + "/v2/feats/srd-2024_alert_1_initative-proficiency/", + "/v2/items/srd-2024_acid/", + "/v2/items/srd-2024_alchemists-fire/", + "/v2/items/srd-2024_holy-water/", + "/v2/items/srd-2024_horn-of-valhalla/", + "/v2/items/srd-2024_ioun-stone/", + "/v2/items/srd-2024_iron-bands/", + "/v2/items/srd-2024_mysterious-deck/", + "/v2/items/srd-2024_net/", + "/v2/items/srd-2024_oil/", + "/v2/rules/srd-2024_d20-tests_ability-checks/", + "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "/v2/rules/srd-2024_d20-tests_saving-throw/", + "/v2/rules/srd-2024_proficiency_bonus-dont-stack/", + "/v2/rules/srd-2024_proficiency_equipment-proficiencies/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/rulesets/srd-2024_d20-tests/", + "/v2/species/srd-2024_dragonborn_breath-weapon/", + "/v2/species/srd-2024_dwarf_stonecunning/", + "/v2/species/srd-2024_gnome_gnomish-lineage/", + "/v2/species/srd-2024_goliath_giant-ancestry/", + "/v2/species/srd-2024_orc_adrenaline-rush/", + "/v2/weaponproperties/srd-2024_topple-mastery/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_topple-mastery/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_alchemists-fire/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_holy-water/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_horn-of-valhalla/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_ioun-stone/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_iron-bands/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_net/", + "anchor": "Proficiency" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Proficiency" + }, + { + "url": "/v2/species/srd-2024_dragonborn_breath-weapon/", + "anchor": "Proficiency" + }, + { + "url": "/v2/species/srd-2024_dwarf_stonecunning/", + "anchor": "Proficiency" + }, + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "anchor": "Proficiency" + }, + { + "url": "/v2/species/srd-2024_goliath_giant-ancestry/", + "anchor": "Proficiency" + }, + { + "url": "/v2/species/srd-2024_orc_adrenaline-rush/", + "anchor": "Proficiency" + }, + { + "url": "/v2/feats/srd-2024_alert_1_initative-proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_bard_jack-of-all-trades/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_monk_monks-focus/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_holy-nimbus/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_intimidating-presence/", + "anchor": "Proficiency" + }, + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_ability-checks/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_proficiency_bonus-dont-stack/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_saving-throw/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_proficiency_equipment-proficiencies/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_improved-blessed-strikes/", + "/v2/classes/srd-2024_druid_wild-shape/", + "/v2/classes/srd-2024_monk_heightened-focus/", + "/v2/classes/srd-2024_ranger_tireless/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-blessing/", + "/v2/creatures/srd-2024_swarm-of-bats_swarm/", + "/v2/creatures/srd-2024_swarm-of-crawling-claws_swarm/", + "/v2/creatures/srd-2024_swarm-of-insects_swarm/", + "/v2/creatures/srd-2024_swarm-of-piranhas_swarm/", + "/v2/creatures/srd-2024_swarm-of-rats_swarm/", + "/v2/creatures/srd-2024_swarm-of-ravens_swarm/", + "/v2/creatures/srd-2024_swarm-of-venomous-snakes_swarm/", + "/v2/creatures/srd-2024_unicorn_shimmering-shield/", + "/v2/items/srd-2024_bag-of-beans/", + "/v2/items/srd-2024_glaive-of-life-stealing/", + "/v2/items/srd-2024_greatsword-of-life-stealing/", + "/v2/items/srd-2024_longsword-of-life-stealing/", + "/v2/items/srd-2024_mysterious-deck/", + "/v2/items/srd-2024_potion-of-heroism/", + "/v2/items/srd-2024_rapier-of-life-stealing/", + "/v2/items/srd-2024_scimitar-of-life-stealing/", + "/v2/items/srd-2024_shortsword-of-life-stealing/", + "/v2/species/srd-2024_orc_adrenaline-rush/", + "/v2/spells/srd-2024_animal-shapes/", + "/v2/spells/srd-2024_false-life/", + "/v2/spells/srd-2024_heroism/", + "/v2/spells/srd-2024_polymorph/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_true-polymorph/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-beans/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_glaive-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_greatsword-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_longsword-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_potion-of-heroism/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_rapier-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_scimitar-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/items/srd-2024_shortsword-of-life-stealing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/species/srd-2024_orc_adrenaline-rush/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_shimmering-shield/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-bats_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-crawling-claws_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-insects_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-piranhas_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-rats_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-ravens_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-venomous-snakes_swarm/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_cleric_improved-blessed-strikes/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_monk_heightened-focus/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_ranger_tireless/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-blessing/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_animal-shapes/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_false-life/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_heroism/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Temporary Hit Points" + }, + { + "url": "/v2/spells/srd-2024_true-polymorph/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_identify/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_armor-of-vulnerability-breastplate/", + "/v2/items/srd-2024_armor-of-vulnerability-chain-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-chain-shirt/", + "/v2/items/srd-2024_armor-of-vulnerability-half-plate-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-hide-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-leather-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-padded-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-plate-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-ring-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-scale-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-splint-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-studded-leather-armor/", + "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "/v2/items/srd-2024_herbalism-kit/", + "/v2/items/srd-2024_iron-flask/", + "/v2/items/srd-2024_musical-instrument-bagpipes/", + "/v2/items/srd-2024_musical-instrument-drum/", + "/v2/items/srd-2024_musical-instrument-dulcimer/", + "/v2/items/srd-2024_musical-instrument-flute/", + "/v2/items/srd-2024_musical-instrument-horn/", + "/v2/items/srd-2024_musical-instrument-lute/", + "/v2/items/srd-2024_musical-instrument-lyre/", + "/v2/items/srd-2024_musical-instrument-pan-flute/", + "/v2/items/srd-2024_musical-instrument-shawm/", + "/v2/items/srd-2024_musical-instrument-viol/", + "/v2/items/srd-2024_potion-of-poison/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-breastplate/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-mail/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-shirt/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-half-plate-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-hide-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-leather-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-padded-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-plate-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-ring-mail/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-scale-mail/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-splint-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-studded-leather-armor/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_iron-flask/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-bagpipes/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-drum/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-dulcimer/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-flute/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-horn/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-lute/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-lyre/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-pan-flute/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-shawm/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_musical-instrument-viol/", + "anchor": "Identify" + }, + { + "url": "/v2/items/srd-2024_potion-of-poison/", + "anchor": "Identify" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Identify" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "crossreference_from": [ + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/items/srd-2024_armor-of-vulnerability-breastplate/", + "/v2/items/srd-2024_armor-of-vulnerability-chain-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-chain-shirt/", + "/v2/items/srd-2024_armor-of-vulnerability-half-plate-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-hide-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-leather-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-padded-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-plate-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-ring-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-scale-mail/", + "/v2/items/srd-2024_armor-of-vulnerability-splint-armor/", + "/v2/items/srd-2024_armor-of-vulnerability-studded-leather-armor/", + "/v2/items/srd-2024_demon-breastplate/", + "/v2/items/srd-2024_demon-chain-mail/", + "/v2/items/srd-2024_demon-chain-shirt/", + "/v2/items/srd-2024_demon-half-plate-armor/", + "/v2/items/srd-2024_demon-hide-armor/", + "/v2/items/srd-2024_demon-leather-armor/", + "/v2/items/srd-2024_demon-padded-armor/", + "/v2/items/srd-2024_demon-plate-armor/", + "/v2/items/srd-2024_demon-ring-mail/", + "/v2/items/srd-2024_demon-scale-mail/", + "/v2/items/srd-2024_demon-splint-armor/", + "/v2/items/srd-2024_demon-studded-leather-armor/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_modify-memory/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-breastplate/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-shirt/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-half-plate-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-hide-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-leather-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-padded-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-plate-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-ring-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-scale-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-splint-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-studded-leather-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-breastplate/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-chain-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-chain-shirt/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-half-plate-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-hide-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-leather-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-padded-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-plate-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-ring-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-scale-mail/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-splint-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/items/srd-2024_demon-studded-leather-armor/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/spells/srd-2024_modify-memory/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fly/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_wild-shape/", + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-wings/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_adult-blue-dragon_cloaked-flight/", + "/v2/creatures/srd-2024_ancient-blue-dragon_cloaked-flight/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "/v2/creatures/srd-2024_imp_shape-shift/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_quasit_shape-shift/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/items/srd-2024_broom-of-flying/", + "/v2/items/srd-2024_carpet-of-flying/", + "/v2/items/srd-2024_cloak-of-the-bat/", + "/v2/items/srd-2024_figurine-of-wondrous-power-ebony-fly/", + "/v2/items/srd-2024_mysterious-deck/", + "/v2/items/srd-2024_potion-of-flying/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_winged-boots/", + "/v2/items/srd-2024_wings-of-flying/", + "/v2/rules/srd-2024_combat_movement-and-position/", + "/v2/species/srd-2024_dragonborn_draconic-flight/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_wind-walk/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_broom-of-flying/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_carpet-of-flying/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_cloak-of-the-bat/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ebony-fly/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_potion-of-flying/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_winged-boots/", + "anchor": "Fly" + }, + { + "url": "/v2/items/srd-2024_wings-of-flying/", + "anchor": "Fly" + }, + { + "url": "/v2/species/srd-2024_dragonborn_draconic-flight/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_cloaked-flight/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_cloaked-flight/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_imp_shape-shift/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_quasit_shape-shift/", + "anchor": "Fly" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Fly" + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Fly" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Fly" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-wings/", + "anchor": "Fly" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "anchor": "Fly" + }, + { + "url": "/v2/rules/srd-2024_combat_movement-and-position/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_core-traits/", + "/v2/classes/srd-2024_bard_core-traits/", + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_monk_core-traits/", + "/v2/classes/srd-2024_monk_martial-arts/", + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/feats/srd-2024_defense_1/", + "/v2/feats/srd-2024_two-weapon-fighting_1/", + "/v2/items/srd-2024_helm-of-brilliance/", + "/v2/items/srd-2024_mace-of-disruption/", + "/v2/items/srd-2024_robe-of-eyes/", + "/v2/items/srd-2024_spikes-iron/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/weaponproperties/srd-2024_nick-mastery/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_nick-mastery/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_mace-of-disruption/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_robe-of-eyes/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_spikes-iron/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Light" + }, + { + "url": "/v2/feats/srd-2024_defense_1/", + "anchor": "Light" + }, + { + "url": "/v2/feats/srd-2024_two-weapon-fighting_1/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_adult-blue-dragon_cloaked-flight/", + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_cloaked-flight/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_green-hag_spellcasting/", + "/v2/creatures/srd-2024_imp_invisibility/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_quasit_invisibility/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sprite_invisibility/", + "/v2/items/srd-2024_rod-of-alertness/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/spells/srd-2024_clairvoyance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "anchor": "Invisibility" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Invisibility" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_cloaked-flight/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_cloaked-flight/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_imp_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_quasit_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Invisibility" + }, + { + "url": "/v2/creatures/srd-2024_sprite_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/spells/srd-2024_darkvision/", + "crossreference_from": [ + "/v2/creatures/srd-2024_darkmantle_darkness-aura-1-day/", + "/v2/creatures/srd-2024_darkmantle_darkness-aura/", + "/v2/items/srd-2024_eyes-of-minute-seeing/", + "/v2/items/srd-2024_figurine-of-wondrous-power-ebony-fly/", + "/v2/items/srd-2024_goggles-of-night/", + "/v2/items/srd-2024_robe-of-eyes/", + "/v2/rules/srd-2024_exploration_vision-and-light/", + "/v2/species/srd-2024_dragonborn_darkvision/", + "/v2/species/srd-2024_dwarf_darkvision/", + "/v2/species/srd-2024_elf_darkvision/", + "/v2/species/srd-2024_elf_elven-lineage/", + "/v2/species/srd-2024_gnome_darkvision/", + "/v2/species/srd-2024_orc_darkvision/", + "/v2/species/srd-2024_tiefling_darkvision/", + "/v2/spells/srd-2024_arcane-eye/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_private-sanctum/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_eyes-of-minute-seeing/", + "anchor": "Darkvision" + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ebony-fly/", + "anchor": "Darkvision" + }, + { + "url": "/v2/items/srd-2024_goggles-of-night/", + "anchor": "Darkvision" + }, + { + "url": "/v2/items/srd-2024_robe-of-eyes/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_dragonborn_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_dwarf_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_elf_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_gnome_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_orc_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/species/srd-2024_tiefling_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/creatures/srd-2024_darkmantle_darkness-aura-1-day/", + "anchor": "Darkvision" + }, + { + "url": "/v2/creatures/srd-2024_darkmantle_darkness-aura/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_arcane-eye/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_private-sanctum/", + "anchor": "Darkvision" + }, + { + "url": "/v2/rules/srd-2024_exploration_vision-and-light/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/items/srd-2024_shield/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_unarmored-defense/", + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_monk_acrobatic-movement/", + "/v2/classes/srd-2024_monk_martial-arts/", + "/v2/classes/srd-2024_monk_unarmored-defense/", + "/v2/classes/srd-2024_monk_unarmored-movement/", + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/creatures/srd-2024_gladiator_multiattack/", + "/v2/items/srd-2024_animated-shield/", + "/v2/items/srd-2024_arrow-catching-shield/", + "/v2/items/srd-2024_bracers-of-defense/", + "/v2/items/srd-2024_shield-of-missile-attraction/", + "/v2/items/srd-2024_shield-plus-1/", + "/v2/items/srd-2024_shield-plus-2/", + "/v2/items/srd-2024_shield-plus-3/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_animated-shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_arrow-catching-shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_bracers-of-defense/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-of-missile-attraction/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-1/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-2/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-3/", + "anchor": "Shield" + }, + { + "url": "/v2/creatures/srd-2024_gladiator_multiattack/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_barbarian_unarmored-defense/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_monk_acrobatic-movement/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_monk_unarmored-defense/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_monk_unarmored-movement/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "/v2/items/srd-2024_helm-of-brilliance/", + "/v2/items/srd-2024_necklace-of-fireballs/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-fire/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_wand-of-fireballs/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/rules/srd-2024_damage-and-healing_saving-throws-and-damage/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_necklace-of-fireballs/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_staff-of-fire/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_wand-of-fireballs/", + "anchor": "Fireball" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "anchor": "Fireball" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "anchor": "Fireball" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Fireball" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_saving-throws-and-damage/", + "anchor": "Fireball" + } + ] + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_sage_equipment/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_wizard_core-traits/", + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/items/srd-2024_staff-of-striking/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_staff-of-the-woodlands/", + "/v2/items/srd-2024_staff-of-thunder-and-lightning/", + "/v2/items/srd-2024_staff-of-withering/", + "/v2/items/srd-2024_woodcarvers-tools/", + "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "/v2/spells/srd-2024_shillelagh/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-striking/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-thunder-and-lightning/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_staff-of-withering/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_equipment/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/spells/srd-2024_shillelagh/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "anchor": "Quarterstaff" + } + ] + }, + { + "url": "/v2/spells/srd-2024_light/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/", + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_priest-acolyte_spellcasting/", + "/v2/creatures/srd-2024_priest_spellcasting/", + "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "/v2/items/srd-2024_helm-of-brilliance/", + "/v2/items/srd-2024_mace-of-disruption/", + "/v2/items/srd-2024_ring-of-shooting-stars/", + "/v2/items/srd-2024_robe-of-eyes/", + "/v2/items/srd-2024_spikes-iron/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_mace-of-disruption/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_ring-of-shooting-stars/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_robe-of-eyes/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_spikes-iron/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_priest_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_priest-acolyte_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Light" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shield/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_unarmored-defense/", + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_gladiator_multiattack/", + "/v2/items/srd-2024_animated-shield/", + "/v2/items/srd-2024_arrow-catching-shield/", + "/v2/items/srd-2024_bracers-of-defense/", + "/v2/items/srd-2024_cube-of-force/", + "/v2/items/srd-2024_holy-symbol-emblem/", + "/v2/items/srd-2024_shield-plus-1/", + "/v2/items/srd-2024_shield-plus-2/", + "/v2/items/srd-2024_shield-plus-3/", + "/v2/items/srd-2024_spellguard-shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_animated-shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_arrow-catching-shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_bracers-of-defense/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-emblem/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-1/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-2/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_shield-plus-3/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_spellguard-shield/", + "anchor": "Shield" + }, + { + "url": "/v2/creatures/srd-2024_gladiator_multiattack/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_barbarian_unarmored-defense/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_adult-brass-dragon_blazing-light/", + "/v2/creatures/srd-2024_adult-brass-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-red-dragon_fiery-rays/", + "/v2/creatures/srd-2024_adult-red-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_blazing-light/", + "/v2/creatures/srd-2024_ancient-brass-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-red-dragon_fiery-rays/", + "/v2/creatures/srd-2024_ancient-red-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "/v2/items/srd-2024_circlet-of-blasting/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_circlet-of-blasting/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_blazing-light/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_multiattack/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_fiery-rays/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_multiattack/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_blazing-light/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_multiattack/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_fiery-rays/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_multiattack/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_doppelganger_read-thoughts/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/items/srd-2024_crystal-ball-of-mind-reading/", + "/v2/items/srd-2024_helm-of-telepathy/", + "/v2/items/srd-2024_medallion-of-thoughts/", + "/v2/items/srd-2024_potion-of-mind-reading/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_crystal-ball-of-mind-reading/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/items/srd-2024_helm-of-telepathy/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/items/srd-2024_medallion-of-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/items/srd-2024_potion-of-mind-reading/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_read-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Detect Thoughts" + } + ] + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "/v2/creatures/srd-2024_oni_spellcasting/", + "/v2/feats/srd-2024_boon-of-the-night-spirit_2/", + "/v2/feats/srd-2024_boon-of-the-night-spirit_3/", + "/v2/items/srd-2024_cloak-of-the-bat/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/rules/srd-2024_exploration_vision-and-light/", + "/v2/species/srd-2024_elf_elven-lineage/", + "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "/v2/spells/srd-2024_daylight/", + "/v2/spells/srd-2024_sunburst/", + "/v2/spells/srd-2024_tiny-hut/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cloak-of-the-bat/", + "anchor": "Darkness" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Darkness" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Darkness" + }, + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Darkness" + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit_2/", + "anchor": "Darkness" + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit_3/", + "anchor": "Darkness" + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Darkness" + }, + { + "url": "/v2/creatures/srd-2024_oni_spellcasting/", + "anchor": "Darkness" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_sunburst/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_tiny-hut/", + "anchor": "Darkness" + }, + { + "url": "/v2/rules/srd-2024_exploration_vision-and-light/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_lamia_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/items/srd-2024_crystal-ball-of-mind-reading/", + "/v2/items/srd-2024_crystal-ball-of-telepathy/", + "/v2/items/srd-2024_crystal-ball-of-true-seeing/", + "/v2/items/srd-2024_crystal-ball/", + "/v2/items/srd-2024_dragon-orb/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_crystal-ball/", + "anchor": "Scrying" + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-mind-reading/", + "anchor": "Scrying" + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-telepathy/", + "anchor": "Scrying" + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-true-seeing/", + "anchor": "Scrying" + }, + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "anchor": "Scrying" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wish/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_greater-divine-intervention/", + "/v2/creatures/srd-2024_djinni_wishes/", + "/v2/creatures/srd-2024_efreeti_wishes/", + "/v2/creatures/srd-2024_spirit-naga_fiendish-restoration/", + "/v2/items/srd-2024_efreeti-bottle/", + "/v2/items/srd-2024_instant-fortress/", + "/v2/items/srd-2024_mysterious-deck/", + "/v2/items/srd-2024_ring-of-three-wishes/", + "/v2/items/srd-2024_sovereign-glue/", + "/v2/spells/srd-2024_befuddlement/", + "/v2/spells/srd-2024_disintegrate/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_mind-blank/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_efreeti-bottle/", + "anchor": "Wish" + }, + { + "url": "/v2/items/srd-2024_instant-fortress/", + "anchor": "Wish" + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Wish" + }, + { + "url": "/v2/items/srd-2024_ring-of-three-wishes/", + "anchor": "Wish" + }, + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Wish" + }, + { + "url": "/v2/creatures/srd-2024_djinni_wishes/", + "anchor": "Wish" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_wishes/", + "anchor": "Wish" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_fiendish-restoration/", + "anchor": "Wish" + }, + { + "url": "/v2/classes/srd-2024_cleric_greater-divine-intervention/", + "anchor": "Wish" + }, + { + "url": "/v2/spells/srd-2024_befuddlement/", + "anchor": "Wish" + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Wish" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Wish" + }, + { + "url": "/v2/spells/srd-2024_mind-blank/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/spells/srd-2024_command/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_adult-red-dragon_commanding-presence/", + "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-red-dragon_commanding-presence/", + "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "/v2/creatures/srd-2024_mummy-lord_dread-command/", + "/v2/creatures/srd-2024_vampire_beguile/", + "/v2/items/srd-2024_folding-boat/", + "/v2/items/srd-2024_gem-of-brightness/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_wand-of-web/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_folding-boat/", + "anchor": "Command" + }, + { + "url": "/v2/items/srd-2024_gem-of-brightness/", + "anchor": "Command" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Command" + }, + { + "url": "/v2/items/srd-2024_wand-of-web/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_commanding-presence/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_commanding-presence/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_dread-command/", + "anchor": "Command" + }, + { + "url": "/v2/creatures/srd-2024_vampire_beguile/", + "anchor": "Command" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Command" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_equipment/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_paladin_abjure-foes/", + "/v2/classes/srd-2024_paladin_spellcasting/", + "/v2/items/srd-2024_holy-symbol-amulet/", + "/v2/items/srd-2024_holy-symbol-emblem/", + "/v2/items/srd-2024_holy-symbol-reliquary/", + "/v2/items/srd-2024_jewelers-tools/", + "/v2/items/srd-2024_painters-supplies/", + "/v2/items/srd-2024_talisman-of-pure-good/", + "/v2/items/srd-2024_talisman-of-ultimate-evil/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_holy-symbol-amulet/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-emblem/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-reliquary/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_jewelers-tools/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_painters-supplies/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_talisman-of-pure-good/", + "anchor": "Symbol" + }, + { + "url": "/v2/items/srd-2024_talisman-of-ultimate-evil/", + "anchor": "Symbol" + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_equipment/", + "anchor": "Symbol" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Symbol" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Symbol" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Symbol" + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "anchor": "Symbol" + }, + { + "url": "/v2/classes/srd-2024_paladin_spellcasting/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_guiding-light/", + "/v2/creatures/srd-2024_adult-bronze-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-gold-dragon_guiding-light/", + "/v2/creatures/srd-2024_adult-gold-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_guiding-light/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-gold-dragon_guiding-light/", + "/v2/creatures/srd-2024_ancient-gold-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_guiding-light/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_multiattack/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_guiding-light/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_multiattack/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_guiding-light/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_multiattack/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_guiding-light/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_multiattack/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_magical-secrets/", + "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "/v2/classes/srd-2024_druid_circle-of-the-land_lands-aid/", + "/v2/classes/srd-2024_druid_circle-of-the-land_natural-recovery/", + "/v2/classes/srd-2024_druid_circle-of-the-land_natures-sanctuary/", + "/v2/classes/srd-2024_ranger_fighting-style/", + "/v2/feats/srd-2024_magic-initiate_1/", + "/v2/items/srd-2024_candle-of-invocation/", + "/v2/items/srd-2024_deck-of-illusions/", + "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "/v2/items/srd-2024_druidic-focus-yew-wand/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_candle-of-invocation/", + "anchor": "Druid" + }, + { + "url": "/v2/items/srd-2024_deck-of-illusions/", + "anchor": "Druid" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "anchor": "Druid" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "anchor": "Druid" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-yew-wand/", + "anchor": "Druid" + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_1/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_bard_magical-secrets/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_lands-aid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natural-recovery/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natures-sanctuary/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Druid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "/v2/items/srd-2024_necklace-of-prayer-beads/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/spells/srd-2024_befuddlement/", + "/v2/spells/srd-2024_contact-other-plane/", + "/v2/spells/srd-2024_flesh-to-stone/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_modify-memory/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_befuddlement/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_contact-other-plane/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_flesh-to-stone/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_modify-memory/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Greater Restoration" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_deva_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Shapechange" + }, + { + "url": "/v2/creatures/srd-2024_deva_spellcasting/", + "anchor": "Shapechange" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-copper-dragon_mind-jolt/", + "/v2/creatures/srd-2024_adult-copper-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-green-dragon_mind-invasion/", + "/v2/creatures/srd-2024_adult-green-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_mind-jolt/", + "/v2/creatures/srd-2024_ancient-copper-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-green-dragon_mind-invasion/", + "/v2/creatures/srd-2024_ancient-green-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_mind-jolt/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_multiattack/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_mind-invasion/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_multiattack/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_mind-jolt/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_multiattack/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_mind-invasion/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_multiattack/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_core-traits/", + "/v2/classes/srd-2024_bard_core-traits/", + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_monk_core-traits/", + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_sorcerer_core-traits/", + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/classes/srd-2024_wizard_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Skill Proficiencies" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_core-traits/", + "/v2/classes/srd-2024_bard_core-traits/", + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_monk_core-traits/", + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_sorcerer_core-traits/", + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/classes/srd-2024_wizard_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Saving Throw Proficiencies" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_lamp/", + "/v2/items/srd-2024_lantern-bullseye/", + "/v2/items/srd-2024_lantern-hooded/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_lantern-bullseye/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_lantern-hooded/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Oil" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "/v2/items/srd-2024_deck-of-illusions/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/spells/srd-2024_guards-and-wards/", + "/v2/spells/srd-2024_imprisonment/", + "/v2/spells/srd-2024_wall-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_deck-of-illusions/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_imprisonment/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "anchor": "Dispel Magic" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fear/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/creatures/srd-2024_adult-black-dragon_frightful-presence/", + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-white-dragon_frightful-presence/", + "/v2/creatures/srd-2024_ancient-black-dragon_frightful-presence/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-white-dragon_frightful-presence/", + "/v2/creatures/srd-2024_lich_frightening-gaze/", + "/v2/items/srd-2024_ring-of-animal-influence/", + "/v2/items/srd-2024_wand-of-web/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-animal-influence/", + "anchor": "Fear" + }, + { + "url": "/v2/items/srd-2024_wand-of-web/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_frightful-presence/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_frightful-presence/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_frightful-presence/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_frightful-presence/", + "anchor": "Fear" + }, + { + "url": "/v2/creatures/srd-2024_lich_frightening-gaze/", + "anchor": "Fear" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "crossreference_from": [ + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_night-hag_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/items/srd-2024_amulet-of-the-planes/", + "/v2/items/srd-2024_cubic-gate/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/spells/srd-2024_forbiddance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_amulet-of-the-planes/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/items/srd-2024_cubic-gate/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_forbiddance/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/items/srd-2024_rope/", + "crossreference_from": [ + "/v2/creatures/srd-2024_erinyes_entangling-rope-requires-magic-rope/", + "/v2/creatures/srd-2024_erinyes_entangling-rope/", + "/v2/creatures/srd-2024_erinyes_multiattack/", + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_grappling-hook/", + "/v2/items/srd-2024_robe-of-useful-items/", + "/v2/items/srd-2024_spikes-iron/", + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_grappling-hook/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_spikes-iron/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Rope" + }, + { + "url": "/v2/creatures/srd-2024_erinyes_entangling-rope-requires-magic-rope/", + "anchor": "Rope" + }, + { + "url": "/v2/creatures/srd-2024_erinyes_multiattack/", + "anchor": "Rope" + }, + { + "url": "/v2/creatures/srd-2024_erinyes_entangling-rope/", + "anchor": "Rope" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_feat/", + "/v2/classes/srd-2024_bard_magical-secrets/", + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/feats/srd-2024_magic-initiate_1/", + "/v2/items/srd-2024_candle-of-invocation/", + "/v2/items/srd-2024_holy-symbol-amulet/", + "/v2/items/srd-2024_holy-symbol-emblem/", + "/v2/items/srd-2024_holy-symbol-reliquary/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_candle-of-invocation/", + "anchor": "Cleric" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-amulet/", + "anchor": "Cleric" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-emblem/", + "anchor": "Cleric" + }, + { + "url": "/v2/items/srd-2024_holy-symbol-reliquary/", + "anchor": "Cleric" + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_1/", + "anchor": "Cleric" + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_feat/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_bard_magical-secrets/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Cleric" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "crossreference_from": [ + "/v2/classes/srd-2024_circle-of-the-land/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_druid_spellcasting/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_ranger_spellcasting/", + "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "/v2/items/srd-2024_druidic-focus-yew-wand/", + "/v2/items/srd-2024_painters-supplies/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "anchor": "Druidic" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "anchor": "Druidic" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-yew-wand/", + "anchor": "Druidic" + }, + { + "url": "/v2/items/srd-2024_painters-supplies/", + "anchor": "Druidic" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_ranger_spellcasting/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_circle-of-the-land/", + "anchor": "Druidic" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "crossreference_from": [ + "/v2/items/srd-2024_eversmoking-bottle/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-swarming-insects/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/items/srd-2024_wind-fan/", + "/v2/spells/srd-2024_cloudkill/", + "/v2/spells/srd-2024_fog-cloud/", + "/v2/spells/srd-2024_guards-and-wards/", + "/v2/spells/srd-2024_incendiary-cloud/", + "/v2/spells/srd-2024_stinking-cloud/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_eversmoking-bottle/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/items/srd-2024_staff-of-swarming-insects/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/items/srd-2024_wind-fan/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_cloudkill/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_incendiary-cloud/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_jump/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_frog_standing-leap/", + "/v2/creatures/srd-2024_giant-frog_standing-leap/", + "/v2/creatures/srd-2024_giant-toad_standing-leap/", + "/v2/creatures/srd-2024_lion_running-leap/", + "/v2/creatures/srd-2024_saber-toothed-tiger_running-leap/", + "/v2/items/srd-2024_pole/", + "/v2/items/srd-2024_ring-of-jumping/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/skills/srd-2024_athletics/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_pole/", + "anchor": "Jump" + }, + { + "url": "/v2/items/srd-2024_ring-of-jumping/", + "anchor": "Jump" + }, + { + "url": "/v2/skills/srd-2024_athletics/", + "anchor": "Jump" + }, + { + "url": "/v2/creatures/srd-2024_frog_standing-leap/", + "anchor": "Jump" + }, + { + "url": "/v2/creatures/srd-2024_giant-frog_standing-leap/", + "anchor": "Jump" + }, + { + "url": "/v2/creatures/srd-2024_giant-toad_standing-leap/", + "anchor": "Jump" + }, + { + "url": "/v2/creatures/srd-2024_lion_running-leap/", + "anchor": "Jump" + }, + { + "url": "/v2/creatures/srd-2024_saber-toothed-tiger_running-leap/", + "anchor": "Jump" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Jump" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Mage Hand" + } + ] + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_green-hag_spellcasting/", + "/v2/creatures/srd-2024_lamia_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/species/srd-2024_gnome_gnomish-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Minor Illusion" + } + ] + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "/v2/creatures/srd-2024_priest-acolyte_spellcasting/", + "/v2/creatures/srd-2024_priest_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "/v2/species/srd-2024_tiefling_otherworldly-presence/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_otherworldly-presence/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_priest_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_priest-acolyte_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/items/srd-2024_longbow/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/creatures/srd-2024_centaur-trooper_multiattack/", + "/v2/creatures/srd-2024_hobgoblin-captain_multiattack/", + "/v2/creatures/srd-2024_scout_multiattack/", + "/v2/creatures/srd-2024_weretiger_multiattack/", + "/v2/creatures/srd-2024_werewolf_multiattack/", + "/v2/items/srd-2024_bracers-of-archery/", + "/v2/rules/srd-2024_combat_ranged-attacks/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bracers-of-archery/", + "anchor": "Longbow" + }, + { + "url": "/v2/creatures/srd-2024_centaur-trooper_multiattack/", + "anchor": "Longbow" + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_multiattack/", + "anchor": "Longbow" + }, + { + "url": "/v2/creatures/srd-2024_scout_multiattack/", + "anchor": "Longbow" + }, + { + "url": "/v2/creatures/srd-2024_weretiger_multiattack/", + "anchor": "Longbow" + }, + { + "url": "/v2/creatures/srd-2024_werewolf_multiattack/", + "anchor": "Longbow" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Longbow" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Longbow" + }, + { + "url": "/v2/rules/srd-2024_combat_ranged-attacks/", + "anchor": "Longbow" + } + ] + }, + { + "url": "/v2/items/srd-2024_whip/", + "crossreference_from": [ + "/v2/creatures/srd-2024_balor_multiattack/", + "/v2/items/srd-2024_feather-token-anchor/", + "/v2/items/srd-2024_feather-token-bird/", + "/v2/items/srd-2024_feather-token-fan/", + "/v2/items/srd-2024_feather-token-swan-boat/", + "/v2/items/srd-2024_feather-token-tree/", + "/v2/items/srd-2024_feather-token-whip/", + "/v2/items/srd-2024_leatherworkers-tools/", + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_feather-token-anchor/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_feather-token-bird/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_feather-token-fan/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_feather-token-swan-boat/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_feather-token-tree/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_feather-token-whip/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Whip" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Whip" + }, + { + "url": "/v2/creatures/srd-2024_balor_multiattack/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/", + "/v2/items/srd-2024_herbalism-kit/", + "/v2/items/srd-2024_periapt-of-wound-closure/", + "/v2/items/srd-2024_potion-of-poison/", + "/v2/items/srd-2024_potions-of-healing/", + "/v2/items/srd-2024_robe-of-useful-items/", + "/v2/rules/srd-2024_combat_underwater-combat/", + "/v2/spells/10602/", + "/v2/spells/10603/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "anchor": "Healing" + }, + { + "url": "/v2/items/srd-2024_periapt-of-wound-closure/", + "anchor": "Healing" + }, + { + "url": "/v2/items/srd-2024_potion-of-poison/", + "anchor": "Healing" + }, + { + "url": "/v2/items/srd-2024_potions-of-healing/", + "anchor": "Healing" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Healing" + }, + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Healing" + }, + { + "url": "/v2/spells/10602/", + "anchor": "Healing" + }, + { + "url": "/v2/spells/10603/", + "anchor": "Healing" + }, + { + "url": "/v2/rules/srd-2024_combat_underwater-combat/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_druid_spellcasting/", + "/v2/items/srd-2024_ring-of-animal-influence/", + "/v2/items/srd-2024_staff-of-the-woodlands/", + "/v2/species/srd-2024_gnome_gnomish-lineage/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-animal-influence/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/items/srd-2024_chain/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_chain-devil_multiattack/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/items/srd-2024_spikes-iron/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_spikes-iron/", + "anchor": "Chain" + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_multiattack/", + "anchor": "Chain" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Chain" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Chain" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Chain" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Chain" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Chain" + } + ] + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "crossreference_from": [ + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_deva_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "/v2/creatures/srd-2024_planetar_spellcasting/", + "/v2/creatures/srd-2024_solar_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/", + "/v2/items/srd-2024_rod-of-alertness/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_deva_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Detect Evil and Good" + } + ] + }, + { + "url": "/v2/spells/srd-2024_magic-missile/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_night-hag_spellcasting/", + "/v2/creatures/srd-2024_tarrasque_reflective-carapace/", + "/v2/items/srd-2024_brooch-of-shielding/", + "/v2/items/srd-2024_robe-of-stars/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/items/srd-2024_wand-of-magic-missiles/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_brooch-of-shielding/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/items/srd-2024_robe-of-stars/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/items/srd-2024_wand-of-magic-missiles/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_reflective-carapace/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Magic Missile" + } + ] + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Tinderbox" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "crossreference_from": [ + "/v2/conditions/srd-2024_exhaustion/", + "/v2/items/srd-2024_candle-of-invocation/", + "/v2/items/srd-2024_mysterious-deck/", + "/v2/rules/srd-2024_the-six-abilities_ability-modifiers/", + "/v2/spells/srd-2024_foresight/", + "/v2/spells/srd-2024_raise-dead/", + "/v2/spells/srd-2024_ray-of-enfeeblement/", + "/v2/spells/srd-2024_resurrection/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_candle-of-invocation/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/conditions/srd-2024_exhaustion/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/spells/srd-2024_foresight/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/spells/srd-2024_raise-dead/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/spells/srd-2024_ray-of-enfeeblement/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/spells/srd-2024_resurrection/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/rules/srd-2024_the-six-abilities_ability-modifiers/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_druid_spellcasting/", + "/v2/classes/srd-2024_ranger_spellcasting/", + "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "/v2/items/srd-2024_dragon-orb/", + "/v2/items/srd-2024_necklace-of-prayer-beads/", + "/v2/items/srd-2024_staff-of-healing/", + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/items/srd-2024_staff-of-healing/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/classes/srd-2024_ranger_spellcasting/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Cure Wounds" + } + ] + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_green-hag_spellcasting/", + "/v2/creatures/srd-2024_incubus_spellcasting/", + "/v2/creatures/srd-2024_lamia_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "/v2/creatures/srd-2024_sea-hag_illusory-appearance/", + "/v2/items/srd-2024_hat-of-disguise/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_hat-of-disguise/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_incubus_spellcasting/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_illusory-appearance/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Disguise Self" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "/v2/items/srd-2024_helm-of-brilliance/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-fire/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/items/srd-2024_staff-of-fire/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "crossreference_from": [ + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/items/srd-2024_javelin-of-lightning/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_wand-of-lightning-bolts/", + "/v2/items/srd-2024_wand-of-wonder/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_javelin-of-lightning/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/items/srd-2024_wand-of-lightning-bolts/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Lightning Bolt" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-silver-dragon_chill/", + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_chill/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/items/srd-2024_wand-of-binding/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/items/srd-2024_wand-of-binding/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_chill/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_chill/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "anchor": "Hold Monster" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_sage_feat/", + "/v2/classes/srd-2024_bard_magical-secrets/", + "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "/v2/classes/srd-2024_wizard_evoker_empowered-evocation/", + "/v2/classes/srd-2024_wizard_evoker_evocation-savant/", + "/v2/classes/srd-2024_wizard_evoker_overchannel/", + "/v2/feats/srd-2024_magic-initiate_1/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Wizard" + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_1/", + "anchor": "Wizard" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_feat/", + "anchor": "Wizard" + }, + { + "url": "/v2/classes/srd-2024_bard_magical-secrets/", + "anchor": "Wizard" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "anchor": "Wizard" + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_empowered-evocation/", + "anchor": "Wizard" + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_evocation-savant/", + "anchor": "Wizard" + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_overchannel/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/", + "/v2/classes/srd-2024_warlock_pact-magic/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "/v2/species/srd-2024_elf_elven-lineage/", + "/v2/species/srd-2024_gnome_gnomish-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Prestidigitation" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_adult-brass-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-brass-dragon_multiattack/", + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_dust-mephit_sleep-1-day/", + "/v2/creatures/srd-2024_oni_spellcasting/", + "/v2/creatures/srd-2024_young-brass-dragon_multiattack/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_multiattack/", + "anchor": "Sleep" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_multiattack/", + "anchor": "Sleep" + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Sleep" + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_sleep-1-day/", + "anchor": "Sleep" + }, + { + "url": "/v2/creatures/srd-2024_oni_spellcasting/", + "anchor": "Sleep" + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_multiattack/", + "anchor": "Sleep" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Sleep" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_instinctive-pounce/", + "/v2/classes/srd-2024_barbarian_persistent-rage/", + "/v2/classes/srd-2024_barbarian_primal-knowledge/", + "/v2/classes/srd-2024_barbarian_relentless-rage/", + "/v2/classes/srd-2024_path-of-the-berserker/", + "/v2/classes/srd-2024_path-of-the-berserker_frenzy/", + "/v2/classes/srd-2024_path-of-the-berserker_intimidating-presence/", + "/v2/classes/srd-2024_path-of-the-berserker_mindless-rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_instinctive-pounce/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_persistent-rage/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_primal-knowledge/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_relentless-rage/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_frenzy/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_intimidating-presence/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_mindless-rage/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/items/srd-2024_backpack/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_leatherworkers-tools/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_scholars-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Backpack" + } + ] + }, + { + "url": "/v2/spells/srd-2024_etherealness/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ghost_etherealness/", + "/v2/creatures/srd-2024_incubus_spellcasting/", + "/v2/creatures/srd-2024_night-hag_spellcasting/", + "/v2/items/srd-2024_half-plate-armor-of-etherealness/", + "/v2/items/srd-2024_oil-of-etherealness/", + "/v2/items/srd-2024_plate-armor-of-etherealness/", + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_half-plate-armor-of-etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/items/srd-2024_oil-of-etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/items/srd-2024_plate-armor-of-etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Etherealness" + }, + { + "url": "/v2/creatures/srd-2024_ghost_etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/creatures/srd-2024_incubus_spellcasting/", + "anchor": "Etherealness" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "anchor": "Etherealness" + } + ] + }, + { + "url": "/v2/items/srd-2024_spear/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_soldier_equipment/", + "/v2/classes/srd-2024_monk_core-traits/", + "/v2/classes/srd-2024_sorcerer_core-traits/", + "/v2/creatures/srd-2024_gladiator_multiattack/", + "/v2/creatures/srd-2024_ice-devil_multiattack/", + "/v2/creatures/srd-2024_salamander_multiattack/", + "/v2/items/srd-2024_rod-of-lordly-might/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "anchor": "Spear" + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_equipment/", + "anchor": "Spear" + }, + { + "url": "/v2/creatures/srd-2024_gladiator_multiattack/", + "anchor": "Spear" + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_multiattack/", + "anchor": "Spear" + }, + { + "url": "/v2/creatures/srd-2024_salamander_multiattack/", + "anchor": "Spear" + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "anchor": "Spear" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_core-traits/", + "anchor": "Spear" + } + ] + }, + { + "url": "/v2/spells/srd-2024_control-weather/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/creatures/srd-2024_planetar_spellcasting/", + "/v2/creatures/srd-2024_solar_spellcasting/", + "/v2/creatures/srd-2024_storm-giant_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "anchor": "Control Weather" + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "anchor": "Control Weather" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_archdruid/", + "/v2/classes/srd-2024_druid_beast-spells/", + "/v2/classes/srd-2024_druid_circle-of-the-land_lands-aid/", + "/v2/classes/srd-2024_druid_circle-of-the-land_natures-ward/", + "/v2/classes/srd-2024_druid_elemental-fury/", + "/v2/classes/srd-2024_druid_wild-companion/", + "/v2/classes/srd-2024_druid_wild-resurgence/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_archdruid/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_beast-spells/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_lands-aid/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natures-ward/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_elemental-fury/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_wild-companion/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid_wild-resurgence/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_combat/", + "crossreference_from": [ + "/v2/classes/srd-2024_champion/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_warrior-of-the-open-hand/", + "/v2/rules/srd-2024_combat_the-order-of-combat/", + "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "/v2/rules/srd-2024_exploration_interacting-with-objects/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Combat" + }, + { + "url": "/v2/classes/srd-2024_champion/", + "anchor": "Combat" + }, + { + "url": "/v2/classes/srd-2024_warrior-of-the-open-hand/", + "anchor": "Combat" + }, + { + "url": "/v2/rules/srd-2024_combat_the-order-of-combat/", + "anchor": "Combat" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "anchor": "Combat" + }, + { + "url": "/v2/rules/srd-2024_exploration_interacting-with-objects/", + "anchor": "Combat" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-wings/", + "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcerous-restoration/", + "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-wings/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerous-restoration/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/", + "anchor": "Sorcery Points" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "crossreference_from": [ + "/v2/items/srd-2024_arrows-20/", + "/v2/items/srd-2024_bolts-20/", + "/v2/items/srd-2024_bullets-firearm-10/", + "/v2/items/srd-2024_bullets-sling-20/", + "/v2/items/srd-2024_needles-50/", + "/v2/items/srd-2024_oil-of-sharpness/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_arrows-20/", + "anchor": "Ammunition" + }, + { + "url": "/v2/items/srd-2024_bolts-20/", + "anchor": "Ammunition" + }, + { + "url": "/v2/items/srd-2024_bullets-firearm-10/", + "anchor": "Ammunition" + }, + { + "url": "/v2/items/srd-2024_bullets-sling-20/", + "anchor": "Ammunition" + }, + { + "url": "/v2/items/srd-2024_needles-50/", + "anchor": "Ammunition" + }, + { + "url": "/v2/items/srd-2024_oil-of-sharpness/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_rations/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_cooks-utensils/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_priests-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_cooks-utensils/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Rations" + } + ] + }, + { + "url": "/v2/items/srd-2024_club/", + "crossreference_from": [ + "/v2/creatures/srd-2024_hill-giant_multiattack/", + "/v2/creatures/srd-2024_stone-giant_multiattack/", + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/items/srd-2024_woodcarvers-tools/", + "/v2/spells/srd-2024_shillelagh/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Club" + }, + { + "url": "/v2/creatures/srd-2024_hill-giant_multiattack/", + "anchor": "Club" + }, + { + "url": "/v2/creatures/srd-2024_stone-giant_multiattack/", + "anchor": "Club" + }, + { + "url": "/v2/spells/srd-2024_shillelagh/", + "anchor": "Club" + } + ] + }, + { + "url": "/v2/items/srd-2024_lamp/", + "crossreference_from": [ + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_potters-tools/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_potters-tools/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Lamp" + } + ] + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_core-traits/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Leather Armor" + } + ] + }, + { + "url": "/v2/items/srd-2024_thieves-tools/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_criminal_equipment/", + "/v2/backgrounds/srd-2024_criminal_tool-proficiencies/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_rogue_thief_fast-hands/", + "/v2/items/srd-2024_lock/", + "/v2/items/srd-2024_manacles/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_lock/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/items/srd-2024_manacles/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_equipment/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_tool-proficiencies/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_fast-hands/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/items/srd-2024_mace/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/creatures/srd-2024_cloud-giant_multiattack/", + "/v2/creatures/srd-2024_deva_multiattack/", + "/v2/creatures/srd-2024_pit-fiend_multiattack/", + "/v2/creatures/srd-2024_priest_multiattack/", + "/v2/items/srd-2024_rod-of-lordly-might/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "anchor": "Mace" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_multiattack/", + "anchor": "Mace" + }, + { + "url": "/v2/creatures/srd-2024_deva_multiattack/", + "anchor": "Mace" + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_multiattack/", + "anchor": "Mace" + }, + { + "url": "/v2/creatures/srd-2024_priest_multiattack/", + "anchor": "Mace" + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Mace" + } + ] + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/creatures/srd-2024_assassin_multiattack/", + "/v2/creatures/srd-2024_scout_multiattack/", + "/v2/items/srd-2024_rod-of-lordly-might/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "anchor": "Shortsword" + }, + { + "url": "/v2/creatures/srd-2024_assassin_multiattack/", + "anchor": "Shortsword" + }, + { + "url": "/v2/creatures/srd-2024_scout_multiattack/", + "anchor": "Shortsword" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Shortsword" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Shortsword" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Shortsword" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mending/", + "crossreference_from": [ + "/v2/creatures/srd-2024_black-pudding_corrosive-form/", + "/v2/creatures/srd-2024_black-pudding_dissolving-pseudopod/", + "/v2/creatures/srd-2024_gray-ooze_corrosive-form/", + "/v2/creatures/srd-2024_gray-ooze_pseudopod/", + "/v2/creatures/srd-2024_rust-monster_antennae/", + "/v2/species/srd-2024_gnome_gnomish-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "anchor": "Mending" + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_dissolving-pseudopod/", + "anchor": "Mending" + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_pseudopod/", + "anchor": "Mending" + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_antennae/", + "anchor": "Mending" + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_corrosive-form/", + "anchor": "Mending" + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_corrosive-form/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shatter/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-blue-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-blue-dragon_sonic-boom/", + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-blue-dragon_sonic-boom/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_multiattack/", + "anchor": "Shatter" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_sonic-boom/", + "anchor": "Shatter" + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Shatter" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_multiattack/", + "anchor": "Shatter" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_sonic-boom/", + "anchor": "Shatter" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_lamia_spellcasting/", + "/v2/creatures/srd-2024_rakshasa_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "anchor": "Major Image" + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Major Image" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Major Image" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Major Image" + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "anchor": "Major Image" + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "anchor": "Major Image" + } + ] + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "anchor": "Zone of Truth" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Zone of Truth" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Zone of Truth" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Zone of Truth" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Zone of Truth" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/spells/srd-2024_creation/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_words-of-creation/", + "/v2/classes/srd-2024_ranger_deft-explorer/", + "/v2/classes/srd-2024_rogue_thieves-cant/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Creation" + }, + { + "url": "/v2/classes/srd-2024_bard_words-of-creation/", + "anchor": "Creation" + }, + { + "url": "/v2/classes/srd-2024_ranger_deft-explorer/", + "anchor": "Creation" + }, + { + "url": "/v2/classes/srd-2024_rogue_thieves-cant/", + "anchor": "Creation" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Creation" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "anchor": "Creation" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "/v2/classes/srd-2024_paladin_abjure-foes/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "/v2/classes/srd-2024_paladin_abjure-foes/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_favored-enemy/", + "/v2/classes/srd-2024_ranger_foe-slayer/", + "/v2/classes/srd-2024_ranger_hunter_hunters-lore/", + "/v2/classes/srd-2024_ranger_hunter_superior-hunters-prey/", + "/v2/classes/srd-2024_ranger_precise-hunter/", + "/v2/classes/srd-2024_ranger_relentless-hunter/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy/", + "anchor": "Hunter's Mark" + }, + { + "url": "/v2/classes/srd-2024_ranger_foe-slayer/", + "anchor": "Hunter's Mark" + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_hunters-lore/", + "anchor": "Hunter's Mark" + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_superior-hunters-prey/", + "anchor": "Hunter's Mark" + }, + { + "url": "/v2/classes/srd-2024_ranger_precise-hunter/", + "anchor": "Hunter's Mark" + }, + { + "url": "/v2/classes/srd-2024_ranger_relentless-hunter/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/spells/srd-2024_divination/", + "crossreference_from": [ + "/v2/items/srd-2024_amulet-of-proof-against-detection-and-location/", + "/v2/spells/srd-2024_imprisonment/", + "/v2/spells/srd-2024_nondetection/", + "/v2/spells/srd-2024_private-sanctum/", + "/v2/spells/srd-2024_sequester/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_amulet-of-proof-against-detection-and-location/", + "anchor": "Divination" + }, + { + "url": "/v2/spells/srd-2024_imprisonment/", + "anchor": "Divination" + }, + { + "url": "/v2/spells/srd-2024_nondetection/", + "anchor": "Divination" + }, + { + "url": "/v2/spells/srd-2024_private-sanctum/", + "anchor": "Divination" + }, + { + "url": "/v2/spells/srd-2024_sequester/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Waterskin" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Waterskin" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Waterskin" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Waterskin" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Waterskin" + } + ] + }, + { + "url": "/v2/items/srd-2024_ink/", + "crossreference_from": [ + "/v2/items/srd-2024_calligraphers-supplies/", + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_ink-pen/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_calligraphers-supplies/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_ink-pen/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Ink" + } + ] + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "crossreference_from": [ + "/v2/items/srd-2024_cloak-of-the-bat/", + "/v2/items/srd-2024_wand-of-polymorph/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/spells/srd-2024_locate-creature/", + "/v2/spells/srd-2024_moonbeam/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cloak-of-the-bat/", + "anchor": "Polymorph" + }, + { + "url": "/v2/items/srd-2024_wand-of-polymorph/", + "anchor": "Polymorph" + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Polymorph" + }, + { + "url": "/v2/spells/srd-2024_locate-creature/", + "anchor": "Polymorph" + }, + { + "url": "/v2/spells/srd-2024_moonbeam/", + "anchor": "Polymorph" + } + ] + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/items/srd-2024_crystal-ball-of-telepathy/", + "/v2/items/srd-2024_dragon-orb/", + "/v2/items/srd-2024_helm-of-telepathy/", + "/v2/spells/srd-2024_guards-and-wards/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_crystal-ball-of-telepathy/", + "anchor": "Suggestion" + }, + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Suggestion" + }, + { + "url": "/v2/items/srd-2024_helm-of-telepathy/", + "anchor": "Suggestion" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Suggestion" + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Suggestion" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/items/srd-2024_cube-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Mage Armor" + } + ] + }, + { + "url": "/v2/items/srd-2024_parchment/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_equipment/", + "/v2/backgrounds/srd-2024_sage_equipment/", + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_leatherworkers-tools/", + "/v2/items/srd-2024_scholars-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Parchment" + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_equipment/", + "anchor": "Parchment" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_equipment/", + "anchor": "Parchment" + } + ] + }, + { + "url": "/v2/spells/srd-2024_charm-person/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/", + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/classes/srd-2024_warlock_pact-magic/", + "/v2/creatures/srd-2024_oni_spellcasting/", + "/v2/items/srd-2024_eyes-of-charming/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_eyes-of-charming/", + "anchor": "Charm Person" + }, + { + "url": "/v2/creatures/srd-2024_oni_spellcasting/", + "anchor": "Charm Person" + }, + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Charm Person" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Charm Person" + }, + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Charm Person" + } + ] + }, + { + "url": "/v2/items/srd-2024_longsword/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_core-traits/", + "/v2/creatures/srd-2024_guard-captain_multiattack/", + "/v2/items/srd-2024_figurine-of-wondrous-power-ivory-goats/", + "/v2/items/srd-2024_rod-of-lordly-might/", + "/v2/items/srd-2024_sun-blade/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ivory-goats/", + "anchor": "Longsword" + }, + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "anchor": "Longsword" + }, + { + "url": "/v2/items/srd-2024_sun-blade/", + "anchor": "Longsword" + }, + { + "url": "/v2/creatures/srd-2024_guard-captain_multiattack/", + "anchor": "Longsword" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Longsword" + } + ] + }, + { + "url": "/v2/items/srd-2024_quiver/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_soldier_equipment/", + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Quiver" + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_equipment/", + "anchor": "Quiver" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Quiver" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Quiver" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Quiver" + } + ] + }, + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_spellcasting/", + "/v2/creatures/srd-2024_dryad_spellcasting/", + "/v2/items/srd-2024_potion-of-animal-friendship/", + "/v2/items/srd-2024_ring-of-animal-influence/", + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-animal-friendship/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/items/srd-2024_ring-of-animal-influence/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Animal Friendship" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "crossreference_from": [ + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_oni_spellcasting/", + "/v2/items/srd-2024_potion-of-gaseous-form/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-gaseous-form/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/creatures/srd-2024_oni_spellcasting/", + "anchor": "Gaseous Form" + } + ] + }, + { + "url": "/v2/items/srd-2024_robe/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_equipment/", + "/v2/backgrounds/srd-2024_sage_equipment/", + "/v2/classes/srd-2024_wizard_core-traits/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Robe" + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Robe" + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_equipment/", + "anchor": "Robe" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_equipment/", + "anchor": "Robe" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Robe" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-frost/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/items/srd-2024_staff-of-frost/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Ice Storm" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/", + "/v2/creatures/srd-2024_green-hag_spellcasting/", + "/v2/items/srd-2024_ring-of-shooting-stars/", + "/v2/species/srd-2024_elf_elven-lineage/", + "/v2/spells/srd-2024_guards-and-wards/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-shooting-stars/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Dancing Lights" + } + ] + }, + { + "url": "/v2/items/srd-2024_book/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_equipment/", + "/v2/backgrounds/srd-2024_sage_equipment/", + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/items/srd-2024_scholars-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Book" + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_equipment/", + "anchor": "Book" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_equipment/", + "anchor": "Book" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Book" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Book" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "crossreference_from": [ + "/v2/creatures/srd-2024_cloud-giant_multiattack/", + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/creatures/srd-2024_ice-mephit_fog-cloud-1-day/", + "/v2/creatures/srd-2024_ice-mephit_fog-cloud/", + "/v2/items/srd-2024_staff-of-frost/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-frost/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_multiattack/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_fog-cloud-1-day/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_fog-cloud/", + "anchor": "Fog Cloud" + } + ] + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/spells/srd-2024_magic-jar/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_magic-jar/", + "anchor": "Protection from Evil and Good" + } + ] + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_spellcasting/", + "/v2/creatures/srd-2024_druid_spellcasting/", + "/v2/creatures/srd-2024_dryad_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Druidcraft" + } + ] + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/spells/srd-2024_contingency/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "anchor": "Water Breathing" + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Water Breathing" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Water Breathing" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Water Breathing" + }, + { + "url": "/v2/spells/srd-2024_contingency/", + "anchor": "Water Breathing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_geas/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "/v2/creatures/srd-2024_lamia_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "anchor": "Geas" + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "anchor": "Geas" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "Geas" + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "anchor": "Geas" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Geas" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "/v2/classes/srd-2024_paladin_abjure-foes/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "/v2/classes/srd-2024_paladin_abjure-foes/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_deflect-attacks/", + "/v2/classes/srd-2024_monk_heightened-focus/", + "/v2/classes/srd-2024_monk_martial-arts/", + "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_deflect-attacks/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_heightened-focus/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_monks-focus/", + "/v2/classes/srd-2024_monk_perfect-focus/", + "/v2/classes/srd-2024_monk_superior-defense/", + "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_quivering-palm/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_monks-focus/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_perfect-focus/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_superior-defense/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_quivering-palm/", + "anchor": "Focus Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_aura-expansion/", + "/v2/classes/srd-2024_paladin_aura-of-courage/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_aura-of-devotion/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_holy-nimbus/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_smite-of-protection/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-expansion/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-of-courage/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_aura-of-devotion/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_holy-nimbus/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_smite-of-protection/", + "anchor": "Aura of Protection" + } + ] + }, + { + "url": "/v2/classes/srd-2024_hunter/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_favored-enemy/", + "/v2/classes/srd-2024_ranger_foe-slayer/", + "/v2/classes/srd-2024_ranger_precise-hunter/", + "/v2/classes/srd-2024_ranger_ranger-subclass/", + "/v2/classes/srd-2024_ranger_relentless-hunter/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy/", + "anchor": "Hunter" + }, + { + "url": "/v2/classes/srd-2024_ranger_foe-slayer/", + "anchor": "Hunter" + }, + { + "url": "/v2/classes/srd-2024_ranger_precise-hunter/", + "anchor": "Hunter" + }, + { + "url": "/v2/classes/srd-2024_ranger_ranger-subclass/", + "anchor": "Hunter" + }, + { + "url": "/v2/classes/srd-2024_ranger_relentless-hunter/", + "anchor": "Hunter" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_cunning-strike/", + "/v2/classes/srd-2024_rogue_devious-strikes/", + "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "/v2/classes/srd-2024_rogue_sneak-attack/", + "/v2/rules/srd-2024_damage-and-healing_critical-hits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_devious-strikes/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Sneak Attack" + } + ] + }, + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "crossreference_from": [ + "/v2/items/srd-2024_bag-of-devouring/", + "/v2/items/srd-2024_handy-haversack/", + "/v2/items/srd-2024_mirror-of-life-trapping/", + "/v2/items/srd-2024_portable-hole/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-devouring/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_handy-haversack/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_mirror-of-life-trapping/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Bag of Holding" + } + ] + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "crossreference_from": [ + "/v2/items/srd-2024_bag-of-holding/", + "/v2/items/srd-2024_handy-haversack/", + "/v2/items/srd-2024_mirror-of-life-trapping/", + "/v2/items/srd-2024_sphere-of-annihilation/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Portable Hole" + }, + { + "url": "/v2/items/srd-2024_handy-haversack/", + "anchor": "Portable Hole" + }, + { + "url": "/v2/items/srd-2024_mirror-of-life-trapping/", + "anchor": "Portable Hole" + }, + { + "url": "/v2/items/srd-2024_sphere-of-annihilation/", + "anchor": "Portable Hole" + } + ] + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_soldier_equipment/", + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/creatures/srd-2024_goblin-boss_multiattack/", + "/v2/items/srd-2024_bracers-of-archery/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bracers-of-archery/", + "anchor": "Shortbow" + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_equipment/", + "anchor": "Shortbow" + }, + { + "url": "/v2/creatures/srd-2024_goblin-boss_multiattack/", + "anchor": "Shortbow" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Shortbow" + } + ] + }, + { + "url": "/v2/items/srd-2024_crowbar/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_criminal_equipment/", + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Crowbar" + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_equipment/", + "anchor": "Crowbar" + } + ] + }, + { + "url": "/v2/items/srd-2024_spell-scroll/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_thief_use-magic-device/", + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/items/srd-2024_calligraphers-supplies/", + "/v2/items/srd-2024_robe-of-useful-items/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_calligraphers-supplies/", + "anchor": "Spell Scroll" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Spell Scroll" + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_use-magic-device/", + "anchor": "Spell Scroll" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Spell Scroll" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gate/", + "crossreference_from": [ + "/v2/items/srd-2024_candle-of-invocation/", + "/v2/items/srd-2024_cubic-gate/", + "/v2/items/srd-2024_sphere-of-annihilation/", + "/v2/spells/srd-2024_forbiddance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_candle-of-invocation/", + "anchor": "Gate" + }, + { + "url": "/v2/items/srd-2024_cubic-gate/", + "anchor": "Gate" + }, + { + "url": "/v2/items/srd-2024_sphere-of-annihilation/", + "anchor": "Gate" + }, + { + "url": "/v2/spells/srd-2024_forbiddance/", + "anchor": "Gate" + } + ] + }, + { + "url": "/v2/items/srd-2024_map/", + "crossreference_from": [ + "/v2/items/srd-2024_cartographers-tools/", + "/v2/items/srd-2024_case-map-or-scroll/", + "/v2/items/srd-2024_diplomats-pack/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cartographers-tools/", + "anchor": "Map" + }, + { + "url": "/v2/items/srd-2024_case-map-or-scroll/", + "anchor": "Map" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Map" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Map" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "crossreference_from": [ + "/v2/items/srd-2024_dwarven-thrower/", + "/v2/items/srd-2024_gloves-of-missile-snaring/", + "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dwarven-thrower/", + "anchor": "Thrown" + }, + { + "url": "/v2/items/srd-2024_gloves-of-missile-snaring/", + "anchor": "Thrown" + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "anchor": "Thrown" + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/", + "anchor": "Thrown" + } + ] + }, + { + "url": "/v2/spells/srd-2024_teleport/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/items/srd-2024_helm-of-teleportation/", + "/v2/rules/srd-2024_combat_melee-attacks/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-teleportation/", + "anchor": "Teleport" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Teleport" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Teleport" + }, + { + "url": "/v2/rules/srd-2024_combat_melee-attacks/", + "anchor": "Teleport" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "crossreference_from": [ + "/v2/items/srd-2024_herbalism-kit/", + "/v2/items/srd-2024_potion-of-poison/", + "/v2/items/srd-2024_potions-of-healing/", + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/items/srd-2024_potion-of-poison/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/items/srd-2024_potions-of-healing/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Potion of Healing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_bless/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/creatures/srd-2024_lemure_hellish-restoration/", + "/v2/items/srd-2024_necklace-of-prayer-beads/", + "/v2/items/srd-2024_potion-of-heroism/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Bless" + }, + { + "url": "/v2/items/srd-2024_potion-of-heroism/", + "anchor": "Bless" + }, + { + "url": "/v2/creatures/srd-2024_lemure_hellish-restoration/", + "anchor": "Bless" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Bless" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-water/", + "crossreference_from": [ + "/v2/creatures/srd-2024_lemure_hellish-restoration/", + "/v2/creatures/srd-2024_vrock_spores-recharge-6/", + "/v2/creatures/srd-2024_vrock_spores/", + "/v2/items/srd-2024_priests-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Holy Water" + }, + { + "url": "/v2/creatures/srd-2024_vrock_spores-recharge-6/", + "anchor": "Holy Water" + }, + { + "url": "/v2/creatures/srd-2024_vrock_spores/", + "anchor": "Holy Water" + }, + { + "url": "/v2/creatures/srd-2024_lemure_hellish-restoration/", + "anchor": "Holy Water" + } + ] + }, + { + "url": "/v2/spells/srd-2024_burning-hands/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/", + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-fire/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/items/srd-2024_staff-of-fire/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Burning Hands" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ice-devil_ice-wall-recharge-6/", + "/v2/creatures/srd-2024_ice-devil_ice-wall/", + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_staff-of-frost/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Wall of Ice" + }, + { + "url": "/v2/items/srd-2024_staff-of-frost/", + "anchor": "Wall of Ice" + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_ice-wall-recharge-6/", + "anchor": "Wall of Ice" + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_ice-wall/", + "anchor": "Wall of Ice" + } + ] + }, + { + "url": "/v2/items/srd-2024_dagger/", + "crossreference_from": [ + "/v2/creatures/srd-2024_pirate_multiattack/", + "/v2/creatures/srd-2024_vampire-familiar_multiattack/", + "/v2/items/srd-2024_robe-of-useful-items/", + "/v2/rules/srd-2024_damage-and-healing_critical-hits/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Dagger" + }, + { + "url": "/v2/creatures/srd-2024_pirate_multiattack/", + "anchor": "Dagger" + }, + { + "url": "/v2/creatures/srd-2024_vampire-familiar_multiattack/", + "anchor": "Dagger" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Dagger" + } + ] + }, + { + "url": "/v2/feats/srd-2024_defense/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_monk_heightened-focus/", + "/v2/classes/srd-2024_monk_monks-focus/", + "/v2/items/srd-2024_scarab-of-protection/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_scarab-of-protection/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_monk_heightened-focus/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_monk_monks-focus/", + "anchor": "Defense" + } + ] + }, + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "crossreference_from": [ + "/v2/creatures/srd-2024_archmage_spellcasting/", + "/v2/creatures/srd-2024_mage_spellcasting/", + "/v2/items/srd-2024_staff-of-frost/", + "/v2/items/srd-2024_staff-of-power/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-frost/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "anchor": "Cone of Cold" + } + ] + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "crossreference_from": [ + "/v2/creatures/srd-2024_dryad_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/", + "/v2/items/srd-2024_staff-of-the-woodlands/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Pass without Trace" + } + ] + }, + { + "url": "/v2/items/srd-2024_pistol/", + "crossreference_from": [ + "/v2/creatures/srd-2024_bandit-captain_multiattack/", + "/v2/creatures/srd-2024_pirate-captain_multiattack/", + "/v2/items/srd-2024_tinkers-tools/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Pistol" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Pistol" + }, + { + "url": "/v2/creatures/srd-2024_bandit-captain_multiattack/", + "anchor": "Pistol" + }, + { + "url": "/v2/creatures/srd-2024_pirate-captain_multiattack/", + "anchor": "Pistol" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "crossreference_from": [ + "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/items/srd-2024_wand-of-binding/", + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_wand-of-binding/", + "anchor": "Hold Person" + }, + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Hold Person" + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "anchor": "Hold Person" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Hold Person" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/feats/srd-2024_magic-initiate_1/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_1/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Wizard Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-black-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-black-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_multiattack/", + "anchor": "Acid Arrow" + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Acid Arrow" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_multiattack/", + "anchor": "Acid Arrow" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Acid Arrow" + } + ] + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_guardian-naga_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Flame Strike" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ice-knife/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-silver-dragon_multiattack/", + "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-silver-dragon_multiattack/", + "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_multiattack/", + "anchor": "Ice Knife" + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "anchor": "Ice Knife" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_multiattack/", + "anchor": "Ice Knife" + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "anchor": "Ice Knife" + } + ] + }, + { + "url": "/v2/items/srd-2024_scimitar/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/creatures/srd-2024_bandit-captain_multiattack/", + "/v2/creatures/srd-2024_goblin-boss_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_bandit-captain_multiattack/", + "anchor": "Scimitar" + }, + { + "url": "/v2/creatures/srd-2024_goblin-boss_multiattack/", + "anchor": "Scimitar" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Scimitar" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Scimitar" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dream/", + "crossreference_from": [ + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_incubus_spellcasting/", + "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "/v2/creatures/srd-2024_night-hag_nightmare-haunting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Dream" + }, + { + "url": "/v2/creatures/srd-2024_incubus_spellcasting/", + "anchor": "Dream" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "anchor": "Dream" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "anchor": "Dream" + } + ] + }, + { + "url": "/v2/spells/srd-2024_commune/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/creatures/srd-2024_deva_spellcasting/", + "/v2/creatures/srd-2024_planetar_spellcasting/", + "/v2/creatures/srd-2024_solar_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_deva_spellcasting/", + "anchor": "Commune" + }, + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "anchor": "Commune" + }, + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "anchor": "Commune" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Commune" + } + ] + }, + { + "url": "/v2/spells/srd-2024_raise-dead/", + "crossreference_from": [ + "/v2/creatures/srd-2024_deva_spellcasting/", + "/v2/creatures/srd-2024_planetar_spellcasting/", + "/v2/rules/srd-2024_damage-and-healing_dropping-to-zero-hit-points/", + "/v2/spells/srd-2024_gentle-repose/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_deva_spellcasting/", + "anchor": "Raise Dead" + }, + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "anchor": "Raise Dead" + }, + { + "url": "/v2/spells/srd-2024_gentle-repose/", + "anchor": "Raise Dead" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_dropping-to-zero-hit-points/", + "anchor": "Raise Dead" + } + ] + }, + { + "url": "/v2/items/srd-2024_greatsword/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/creatures/srd-2024_hobgoblin-captain_multiattack/", + "/v2/creatures/srd-2024_knight_multiattack/", + "/v2/creatures/srd-2024_warrior-veteran_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_multiattack/", + "anchor": "Greatsword" + }, + { + "url": "/v2/creatures/srd-2024_knight_multiattack/", + "anchor": "Greatsword" + }, + { + "url": "/v2/creatures/srd-2024_warrior-veteran_multiattack/", + "anchor": "Greatsword" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Greatsword" + } + ] + }, + { + "url": "/v2/spells/srd-2024_magic-circle/", + "crossreference_from": [ + "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "/v2/spells/srd-2024_magic-jar/", + "/v2/spells/srd-2024_planar-binding/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/spells/srd-2024_magic-jar/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/spells/srd-2024_planar-binding/", + "anchor": "Magic Circle" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "crossreference_from": [ + "/v2/creatures/srd-2024_guardian-naga_celestial-restoration/", + "/v2/creatures/srd-2024_planetar_spellcasting/", + "/v2/creatures/srd-2024_solar_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_celestial-restoration/", + "anchor": "Dispel Evil and Good" + } + ] + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_core-traits/", + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_monk_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Explorer's Pack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_font-of-inspiration/", + "/v2/classes/srd-2024_bard_superior-inspiration/", + "/v2/classes/srd-2024_college-of-lore_cutting-words/", + "/v2/classes/srd-2024_college-of-lore_peerless-skill/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_font-of-inspiration/", + "anchor": "Bardic Inspiration" + }, + { + "url": "/v2/classes/srd-2024_bard_superior-inspiration/", + "anchor": "Bardic Inspiration" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_cutting-words/", + "anchor": "Bardic Inspiration" + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_peerless-skill/", + "anchor": "Bardic Inspiration" + } + ] + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/spells/srd-2024_gate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Travel" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Travel" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Travel" + }, + { + "url": "/v2/spells/srd-2024_gate/", + "anchor": "Travel" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_deflect-attacks/", + "/v2/classes/srd-2024_monk_heightened-focus/", + "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_deflect-attacks/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_heightened-focus/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_cunning-strike/", + "/v2/classes/srd-2024_rogue_devious-strikes/", + "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "/v2/rules/srd-2024_damage-and-healing_critical-hits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_devious-strikes/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Sneak Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/", + "anchor": "Metamagic" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/classes/srd-2024_warlock_eldritch-master/", + "/v2/classes/srd-2024_warlock_fiend-patron_hurl-through-hell/", + "/v2/classes/srd-2024_warlock_magical-cunning/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Pact Magic" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-master/", + "anchor": "Pact Magic" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_hurl-through-hell/", + "anchor": "Pact Magic" + }, + { + "url": "/v2/classes/srd-2024_warlock_magical-cunning/", + "anchor": "Pact Magic" + } + ] + }, + { + "url": "/v2/items/srd-2024_pouch/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_component-pouch/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Pouch" + }, + { + "url": "/v2/items/srd-2024_component-pouch/", + "anchor": "Pouch" + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Pouch" + } + ] + }, + { + "url": "/v2/spells/srd-2024_levitate/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/items/srd-2024_boots-of-levitation/", + "/v2/items/srd-2024_staff-of-power/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_boots-of-levitation/", + "anchor": "Levitate" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Levitate" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Levitate" + } + ] + }, + { + "url": "/v2/items/srd-2024_bell/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Bell" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Bell" + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Bell" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dimension-door/", + "crossreference_from": [ + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "/v2/items/srd-2024_cape-of-the-mountebank/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cape-of-the-mountebank/", + "anchor": "Dimension Door" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Dimension Door" + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "anchor": "Dimension Door" + } + ] + }, + { + "url": "/v2/items/srd-2024_greatclub/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Greatclub" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Greatclub" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Greatclub" + } + ] + }, + { + "url": "/v2/items/srd-2024_torch/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_tinderbox/", + "/v2/rules/srd-2024_exploration_adventuring-equipment/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Torch" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Torch" + }, + { + "url": "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "anchor": "Torch" + } + ] + }, + { + "url": "/v2/spells/srd-2024_knock/", + "crossreference_from": [ + "/v2/items/srd-2024_chime-of-opening/", + "/v2/items/srd-2024_instant-fortress/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_chime-of-opening/", + "anchor": "Knock" + }, + { + "url": "/v2/items/srd-2024_instant-fortress/", + "anchor": "Knock" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Knock" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "crossreference_from": [ + "/v2/items/srd-2024_cube-of-force/", + "/v2/items/srd-2024_staff-of-power/", + "/v2/spells/srd-2024_disintegrate/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Wall of Force" + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Wall of Force" + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Wall of Force" + } + ] + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "crossreference_from": [ + "/v2/items/srd-2024_dragon-orb/", + "/v2/items/srd-2024_helm-of-brilliance/", + "/v2/items/srd-2024_robe-of-eyes/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Daylight" + }, + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Daylight" + }, + { + "url": "/v2/items/srd-2024_robe-of-eyes/", + "anchor": "Daylight" + } + ] + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "crossreference_from": [ + "/v2/items/srd-2024_dragon-orb/", + "/v2/spells/srd-2024_resilient-sphere/", + "/v2/spells/srd-2024_wall-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Disintegrate" + }, + { + "url": "/v2/spells/srd-2024_resilient-sphere/", + "anchor": "Disintegrate" + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "anchor": "Disintegrate" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger/", + "crossreference_from": [ + "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "/v2/items/srd-2024_druidic-focus-yew-wand/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "anchor": "Ranger" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "anchor": "Ranger" + }, + { + "url": "/v2/items/srd-2024_druidic-focus-yew-wand/", + "anchor": "Ranger" + } + ] + }, + { + "url": "/v2/items/srd-2024_caltrops/", + "crossreference_from": [ + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/rules/srd-2024_exploration_adventuring-equipment/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Caltrops" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Caltrops" + }, + { + "url": "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "anchor": "Caltrops" + } + ] + }, + { + "url": "/v2/items/srd-2024_bedroll/", + "crossreference_from": [ + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Bedroll" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Bedroll" + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Bedroll" + } + ] + }, + { + "url": "/v2/items/srd-2024_mirror/", + "crossreference_from": [ + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_robe-of-useful-items/", + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Mirror" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Mirror" + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Mirror" + } + ] + }, + { + "url": "/v2/items/srd-2024_sling/", + "crossreference_from": [ + "/v2/items/srd-2024_leatherworkers-tools/", + "/v2/items/srd-2024_smiths-tools/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Sling" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Sling" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Sling" + } + ] + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_ranger_core-traits/", + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Studded Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Studded Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "anchor": "Studded Leather Armor" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue/", + "crossreference_from": [ + "/v2/items/srd-2024_mysterious-deck/", + "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "/v2/rules/srd-2024_social-interaction_ability-checks/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Rogue" + }, + { + "url": "/v2/rules/srd-2024_social-interaction_ability-checks/", + "anchor": "Rogue" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Rogue" + } + ] + }, + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "crossreference_from": [ + "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "/v2/items/srd-2024_potion-of-clairvoyance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-clairvoyance/", + "anchor": "Clairvoyance" + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "anchor": "Clairvoyance" + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "Clairvoyance" + } + ] + }, + { + "url": "/v2/spells/srd-2024_enlargereduce/", + "crossreference_from": [ + "/v2/items/srd-2024_potion-of-diminution/", + "/v2/items/srd-2024_potion-of-growth/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-diminution/", + "anchor": "Enlarge/Reduce" + }, + { + "url": "/v2/items/srd-2024_potion-of-growth/", + "anchor": "Enlarge/Reduce" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Enlarge/Reduce" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_scholar/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/classes/srd-2024_wizard_core-traits/", + "/v2/items/srd-2024_scholars-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Scholar" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Scholar" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Scholar" + } + ] + }, + { + "url": "/v2/spells/srd-2024_insect-plague/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "/v2/items/srd-2024_staff-of-swarming-insects/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-swarming-insects/", + "anchor": "Insect Plague" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "anchor": "Insect Plague" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Insect Plague" + } + ] + }, + { + "url": "/v2/items/srd-2024_lock/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/items/srd-2024_tinkers-tools/", + "/v2/spells/srd-2024_knock/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Lock" + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Lock" + }, + { + "url": "/v2/spells/srd-2024_knock/", + "anchor": "Lock" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_finesse-wp/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_core-traits/", + "/v2/classes/srd-2024_rogue_sneak-attack/", + "/v2/items/srd-2024_sun-blade/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sun-blade/", + "anchor": "Finesse" + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Finesse" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Finesse" + } + ] + }, + { + "url": "/v2/spells/srd-2024_faerie-fire/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_spellcasting/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Faerie Fire" + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Faerie Fire" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Faerie Fire" + } + ] + }, + { + "url": "/v2/spells/srd-2024_slow/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_tactical-master/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Slow" + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-master/", + "anchor": "Slow" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Slow" + } + ] + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "/v2/items/srd-2024_wand-of-wonder/", + "/v2/spells/srd-2024_guards-and-wards/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "anchor": "Stinking Cloud" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Stinking Cloud" + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Stinking Cloud" + } + ] + }, + { + "url": "/v2/spells/srd-2024_speak-with-dead/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Speak with Dead" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Speak with Dead" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Speak with Dead" + } + ] + }, + { + "url": "/v2/items/srd-2024_javelin/", + "crossreference_from": [ + "/v2/creatures/srd-2024_bugbear-stalker_multiattack/", + "/v2/creatures/srd-2024_guard-captain_multiattack/", + "/v2/creatures/srd-2024_wereboar_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_multiattack/", + "anchor": "Javelin" + }, + { + "url": "/v2/creatures/srd-2024_guard-captain_multiattack/", + "anchor": "Javelin" + }, + { + "url": "/v2/creatures/srd-2024_wereboar_multiattack/", + "anchor": "Javelin" + } + ] + }, + { + "url": "/v2/spells/srd-2024_tongues/", + "crossreference_from": [ + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/creatures/srd-2024_efreeti_spellcasting/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Tongues" + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Tongues" + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Tongues" + } + ] + }, + { + "url": "/v2/spells/srd-2024_entangle/", + "crossreference_from": [ + "/v2/creatures/srd-2024_druid_spellcasting/", + "/v2/creatures/srd-2024_dryad_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Entangle" + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "anchor": "Entangle" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Entangle" + } + ] + }, + { + "url": "/v2/spells/srd-2024_charm-monster/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/creatures/srd-2024_dryad_multiattack/", + "/v2/creatures/srd-2024_dryad_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_dryad_multiattack/", + "anchor": "Charm Monster" + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "anchor": "Charm Monster" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Charm Monster" + } + ] + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow/", + "crossreference_from": [ + "/v2/creatures/srd-2024_knight_multiattack/", + "/v2/creatures/srd-2024_tough-boss_multiattack/", + "/v2/creatures/srd-2024_warrior-veteran_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_knight_multiattack/", + "anchor": "Heavy Crossbow" + }, + { + "url": "/v2/creatures/srd-2024_tough-boss_multiattack/", + "anchor": "Heavy Crossbow" + }, + { + "url": "/v2/creatures/srd-2024_warrior-veteran_multiattack/", + "anchor": "Heavy Crossbow" + } + ] + }, + { + "url": "/v2/spells/srd-2024_guidance/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Guidance" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Guidance" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Guidance" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Boon of Dimensional Travel" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Boon of Dimensional Travel" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Boon of Dimensional Travel" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Fighting Style" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Fighting Style" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_paladin_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Fighting Style" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind-uses/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_second-wind/", + "/v2/classes/srd-2024_fighter_tactical-mind/", + "/v2/classes/srd-2024_fighter_tactical-shift/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_second-wind/", + "anchor": "Second Wind" + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-mind/", + "anchor": "Second Wind" + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-shift/", + "anchor": "Second Wind" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_devious-strikes/", + "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "/v2/classes/srd-2024_rogue_thief_supreme-sneak/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_devious-strikes/", + "anchor": "Cunning Strike" + }, + { + "url": "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "anchor": "Cunning Strike" + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_supreme-sneak/", + "anchor": "Cunning Strike" + } + ] + }, + { + "url": "/v2/items/srd-2024_paper/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_diplomats-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Paper" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Paper" + } + ] + }, + { + "url": "/v2/items/srd-2024_perfume/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/", + "/v2/items/srd-2024_diplomats-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Perfume" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Perfume" + } + ] + }, + { + "url": "/v2/items/srd-2024_handy-haversack/", + "crossreference_from": [ + "/v2/items/srd-2024_bag-of-holding/", + "/v2/items/srd-2024_portable-hole/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Handy Haversack" + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Handy Haversack" + } + ] + }, + { + "url": "/v2/items/srd-2024_antitoxin/", + "crossreference_from": [ + "/v2/items/srd-2024_brewers-supplies/", + "/v2/items/srd-2024_herbalism-kit/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_brewers-supplies/", + "anchor": "Antitoxin" + }, + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "anchor": "Antitoxin" + } + ] + }, + { + "url": "/v2/items/srd-2024_ball-bearings/", + "crossreference_from": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Ball Bearings" + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Ball Bearings" + } + ] + }, + { + "url": "/v2/items/srd-2024_chest/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_diplomats-pack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Chest" + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "anchor": "Chest" + } + ] + }, + { + "url": "/v2/items/srd-2024_ladder/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/", + "/v2/rules/srd-2024_exploration_adventuring-equipment/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Ladder" + }, + { + "url": "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "anchor": "Ladder" + } + ] + }, + { + "url": "/v2/items/srd-2024_pole/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/", + "/v2/items/srd-2024_robe-of-useful-items/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Pole" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Pole" + } + ] + }, + { + "url": "/v2/spells/srd-2024_web/", + "crossreference_from": [ + "/v2/items/srd-2024_cloak-of-arachnida/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cloak-of-arachnida/", + "anchor": "Web" + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Web" + } + ] + }, + { + "url": "/v2/spells/srd-2024_lesser-restoration/", + "crossreference_from": [ + "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "/v2/items/srd-2024_staff-of-healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "anchor": "Lesser Restoration" + }, + { + "url": "/v2/items/srd-2024_staff-of-healing/", + "anchor": "Lesser Restoration" + } + ] + }, + { + "url": "/v2/spells/srd-2024_animal-messenger/", + "crossreference_from": [ + "/v2/creatures/srd-2024_druid_spellcasting/", + "/v2/items/srd-2024_figurine-of-wondrous-power-silver-raven/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-silver-raven/", + "anchor": "Animal Messenger" + }, + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Animal Messenger" + } + ] + }, + { + "url": "/v2/items/srd-2024_rowboat/", + "crossreference_from": [ + "/v2/items/srd-2024_folding-boat/", + "/v2/items/srd-2024_robe-of-useful-items/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_folding-boat/", + "anchor": "Rowboat" + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Rowboat" + } + ] + }, + { + "url": "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "crossreference_from": [ + "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "anchor": "Gauntlets of Ogre Power" + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/", + "anchor": "Gauntlets of Ogre Power" + } + ] + }, + { + "url": "/v2/spells/srd-2024_bane/", + "crossreference_from": [ + "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "anchor": "Bane" + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/", + "anchor": "Bane" + } + ] + }, + { + "url": "/v2/items/srd-2024_flask/", + "crossreference_from": [ + "/v2/items/srd-2024_iron-flask/", + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_iron-flask/", + "anchor": "Flask" + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Flask" + } + ] + }, + { + "url": "/v2/spells/srd-2024_guardian-of-faith/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/items/srd-2024_necklace-of-prayer-beads/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Guardian of Faith" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Guardian of Faith" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "crossreference_from": [ + "/v2/creatures/srd-2024_djinni_spellcasting/", + "/v2/items/srd-2024_necklace-of-prayer-beads/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Wind Walk" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Wind Walk" + } + ] + }, + { + "url": "/v2/spells/srd-2024_freedom-of-movement/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "/v2/items/srd-2024_oil-of-slipperiness/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil-of-slipperiness/", + "anchor": "Freedom of Movement" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Freedom of Movement" + } + ] + }, + { + "url": "/v2/items/srd-2024_blanket/", + "crossreference_from": [ + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Blanket" + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Blanket" + } + ] + }, + { + "url": "/v2/spells/srd-2024_chain-lightning/", + "crossreference_from": [ + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Chain Lightning" + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Chain Lightning" + } + ] + }, + { + "url": "/v2/spells/srd-2024_feather-fall/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/", + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Feather Fall" + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Feather Fall" + } + ] + }, + { + "url": "/v2/spells/srd-2024_water-walk/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/", + "/v2/items/srd-2024_ring-of-water-walking/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Water Walk" + }, + { + "url": "/v2/items/srd-2024_ring-of-water-walking/", + "anchor": "Water Walk" + } + ] + }, + { + "url": "/v2/items/srd-2024_sack/", + "crossreference_from": [ + "/v2/items/srd-2024_robe-of-useful-items/", + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Sack" + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Sack" + } + ] + }, + { + "url": "/v2/spells/srd-2024_see-invisibility/", + "crossreference_from": [ + "/v2/items/srd-2024_rod-of-alertness/", + "/v2/spells/srd-2024_clairvoyance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "anchor": "See Invisibility" + }, + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "anchor": "See Invisibility" + } + ] + }, + { + "url": "/v2/items/srd-2024_battleaxe/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ettin_multiattack/", + "/v2/items/srd-2024_rod-of-lordly-might/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "anchor": "Battleaxe" + }, + { + "url": "/v2/creatures/srd-2024_ettin_multiattack/", + "anchor": "Battleaxe" + } + ] + }, + { + "url": "/v2/items/srd-2024_ink-pen/", + "crossreference_from": [ + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Ink Pen" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Ink Pen" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ray-of-enfeeblement/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-power/", + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Ray of Enfeeblement" + }, + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Ray of Enfeeblement" + } + ] + }, + { + "url": "/v2/spells/srd-2024_arcane-lock/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-magi/", + "/v2/spells/srd-2024_knock/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Arcane Lock" + }, + { + "url": "/v2/spells/srd-2024_knock/", + "anchor": "Arcane Lock" + } + ] + }, + { + "url": "/v2/spells/srd-2024_telekinesis/", + "crossreference_from": [ + "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Telekinesis" + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "anchor": "Telekinesis" + } + ] + }, + { + "url": "/v2/items/srd-2024_musket/", + "crossreference_from": [ + "/v2/items/srd-2024_tinkers-tools/", + "/v2/items/srd-2024_woodcarvers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Musket" + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "anchor": "Musket" + } + ] + }, + { + "url": "/v2/spells/srd-2024_longstrider/", + "crossreference_from": [ + "/v2/creatures/srd-2024_druid_spellcasting/", + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Longstrider" + }, + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Longstrider" + } + ] + }, + { + "url": "/v2/spells/srd-2024_false-life/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "False Life" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "False Life" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ray-of-sickness/", + "crossreference_from": [ + "/v2/creatures/srd-2024_green-hag_spellcasting/", + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Ray of Sickness" + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "anchor": "Ray of Sickness" + } + ] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_acolyte_feat/", + "/v2/backgrounds/srd-2024_sage_feat/" + ], + "matches": [ + { + "url": "/v2/backgrounds/srd-2024_acolyte_feat/", + "anchor": "Magic Initiate" + }, + { + "url": "/v2/backgrounds/srd-2024_sage_feat/", + "anchor": "Magic Initiate" + } + ] + }, + { + "url": "/v2/spells/srd-2024_harm/", + "crossreference_from": [ + "/v2/conditions/srd-2024_charmed/", + "/v2/creatures/srd-2024_mummy-lord_spellcasting/" + ], + "matches": [ + { + "url": "/v2/conditions/srd-2024_charmed/", + "anchor": "Harm" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "anchor": "Harm" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "crossreference_from": [ + "/v2/conditions/srd-2024_paralyzed/", + "/v2/conditions/srd-2024_unconscious/" + ], + "matches": [ + { + "url": "/v2/conditions/srd-2024_paralyzed/", + "anchor": "Critical Hits" + }, + { + "url": "/v2/conditions/srd-2024_unconscious/", + "anchor": "Critical Hits" + } + ] + }, + { + "url": "/v2/spells/srd-2024_vitriolic-sphere/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "anchor": "Vitriolic Sphere" + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Vitriolic Sphere" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sending/", + "crossreference_from": [ + "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "anchor": "Sending" + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "anchor": "Sending" + } + ] + }, + { + "url": "/v2/spells/srd-2024_word-of-recall/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "/v2/creatures/srd-2024_unicorn_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "anchor": "Word of Recall" + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Word of Recall" + } + ] + }, + { + "url": "/v2/items/srd-2024_morningstar/", + "crossreference_from": [ + "/v2/creatures/srd-2024_bugbear-stalker_multiattack/", + "/v2/creatures/srd-2024_ettin_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_multiattack/", + "anchor": "Morningstar" + }, + { + "url": "/v2/creatures/srd-2024_ettin_multiattack/", + "anchor": "Morningstar" + } + ] + }, + { + "url": "/v2/spells/srd-2024_create-food-and-water/", + "crossreference_from": [ + "/v2/creatures/srd-2024_couatl_spellcasting/", + "/v2/creatures/srd-2024_djinni_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "anchor": "Create Food and Water" + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "anchor": "Create Food and Water" + } + ] + }, + { + "url": "/v2/spells/srd-2024_animate-dead/", + "crossreference_from": [ + "/v2/creatures/srd-2024_lich_spellcasting/", + "/v2/creatures/srd-2024_mummy-lord_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Animate Dead" + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "anchor": "Animate Dead" + } + ] + }, + { + "url": "/v2/spells/srd-2024_power-word-kill/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_words-of-creation/", + "/v2/creatures/srd-2024_lich_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Power Word Kill" + }, + { + "url": "/v2/classes/srd-2024_bard_words-of-creation/", + "anchor": "Power Word Kill" + } + ] + }, + { + "url": "/v2/spells/srd-2024_resurrection/", + "crossreference_from": [ + "/v2/creatures/srd-2024_solar_spellcasting/", + "/v2/spells/srd-2024_disintegrate/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "anchor": "Resurrection" + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Resurrection" + } + ] + }, + { + "url": "/v2/spells/srd-2024_legend-lore/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Legend Lore" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Legend Lore" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_reckless-attack/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_brutal-strike/", + "/v2/classes/srd-2024_path-of-the-berserker_frenzy/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_brutal-strike/", + "anchor": "Reckless Attack" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_frenzy/", + "anchor": "Reckless Attack" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Boon of Irresistible Offense" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Boon of Irresistible Offense" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_brutal-strike/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_improved-brutal-strike-enhanced/", + "/v2/classes/srd-2024_barbarian_improved-brutal-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_improved-brutal-strike/", + "anchor": "Brutal Strike" + }, + { + "url": "/v2/classes/srd-2024_barbarian_improved-brutal-strike-enhanced/", + "anchor": "Brutal Strike" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rage-damage/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_rage/", + "/v2/classes/srd-2024_path-of-the-berserker_frenzy/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage Damage" + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_frenzy/", + "anchor": "Rage Damage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_weapon-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_weapon-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_weapon-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Boon of Spell Recall" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Boon of Spell Recall" + } + ] + }, + { + "url": "/v2/spells/srd-2024_heal/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_words-of-creation/", + "/v2/spells/srd-2024_befuddlement/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_words-of-creation/", + "anchor": "Heal" + }, + { + "url": "/v2/spells/srd-2024_befuddlement/", + "anchor": "Heal" + } + ] + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_core-traits/", + "/v2/classes/srd-2024_paladin_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Priest's Pack" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Priest's Pack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_cleric-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_divine-order/", + "/v2/classes/srd-2024_cleric_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_divine-order/", + "anchor": "Cleric Spell List" + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Cleric Spell List" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-fate/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Boon of Fate" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Boon of Fate" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sacred-flame/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_paladin_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Sacred Flame" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Sacred Flame" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shield-of-faith/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_spellcasting/", + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "anchor": "Shield of Faith" + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Shield of Faith" + } + ] + }, + { + "url": "/v2/items/srd-2024_sickle/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_core-traits/", + "/v2/classes/srd-2024_warlock_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Sickle" + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Sickle" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_druid-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_primal-order/", + "/v2/classes/srd-2024_druid_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_primal-order/", + "anchor": "Druid Spell List" + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Druid Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_find-familiar/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_wild-companion/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-companion/", + "anchor": "Find Familiar" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Find Familiar" + } + ] + }, + { + "url": "/v2/items/srd-2024_chain-mail/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_paladin_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Chain Mail" + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "anchor": "Chain Mail" + } + ] + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/", + "/v2/classes/srd-2024_sorcerer_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Dungeoneer's Pack" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_core-traits/", + "anchor": "Dungeoneer's Pack" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_push-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_tactical-master/", + "/v2/rules/srd-2024_d20-tests_ability-checks/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_tactical-master/", + "anchor": "Push" + }, + { + "url": "/v2/rules/srd-2024_d20-tests_ability-checks/", + "anchor": "Push" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_slow-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_tactical-master/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_tactical-master/", + "anchor": "Slow" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Slow" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_tactical-mind/", + "/v2/classes/srd-2024_fighter_tactical-shift/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_tactical-mind/", + "anchor": "Second Wind" + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-shift/", + "anchor": "Second Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hallow/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/spells/srd-2024_detect-evil-and-good/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Hallow" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Hallow" + } + ] + }, + { + "url": "/v2/spells/srd-2024_divine-smite/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_smite-of-protection/", + "/v2/classes/srd-2024_paladin_paladins-smite/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_smite-of-protection/", + "anchor": "Divine Smite" + }, + { + "url": "/v2/classes/srd-2024_paladin_paladins-smite/", + "anchor": "Divine Smite" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "anchor": "Innate Sorcery" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/", + "anchor": "Innate Sorcery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-resilience/", + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-resilience/", + "anchor": "Sorcerer" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Sorcerer" + } + ] + }, + { + "url": "/v2/spells/srd-2024_alter-self/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Alter Self" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Alter Self" + } + ] + }, + { + "url": "/v2/spells/srd-2024_arcane-eye/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Arcane Eye" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Arcane Eye" + } + ] + }, + { + "url": "/v2/spells/srd-2024_summon-dragon/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-companion/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Summon Dragon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-companion/", + "anchor": "Summon Dragon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Metamagic Options" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/", + "anchor": "Metamagic Options" + } + ] + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_core-traits/", + "/v2/classes/srd-2024_wizard_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "anchor": "Scholar's Pack" + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "anchor": "Scholar's Pack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-blessing/", + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-blessing/", + "anchor": "Warlock" + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Warlock" + } + ] + }, + { + "url": "/v2/items/srd-2024_alchemists-fire/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Alchemist's Fire" + } + ] + }, + { + "url": "/v2/items/srd-2024_component-pouch/", + "crossreference_from": [ + "/v2/items/srd-2024_alchemists-supplies/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "anchor": "Component Pouch" + } + ] + }, + { + "url": "/v2/items/srd-2024_mastiff/", + "crossreference_from": [ + "/v2/items/srd-2024_bag-of-tricks/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-tricks/", + "anchor": "Mastiff" + } + ] + }, + { + "url": "/v2/items/srd-2024_barrel/", + "crossreference_from": [ + "/v2/items/srd-2024_carpenters-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "anchor": "Barrel" + } + ] + }, + { + "url": "/v2/spells/srd-2024_spider-climb/", + "crossreference_from": [ + "/v2/items/srd-2024_cloak-of-arachnida/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cloak-of-arachnida/", + "anchor": "Spider Climb" + } + ] + }, + { + "url": "/v2/items/srd-2024_climbers-kit/", + "crossreference_from": [ + "/v2/items/srd-2024_cobblers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cobblers-tools/", + "anchor": "Climber's Kit" + } + ] + }, + { + "url": "/v2/spells/srd-2024_private-sanctum/", + "crossreference_from": [ + "/v2/items/srd-2024_cube-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Private Sanctum" + } + ] + }, + { + "url": "/v2/spells/srd-2024_resilient-sphere/", + "crossreference_from": [ + "/v2/items/srd-2024_cube-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Resilient Sphere" + } + ] + }, + { + "url": "/v2/spells/srd-2024_tiny-hut/", + "crossreference_from": [ + "/v2/items/srd-2024_cube-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_cube-of-force/", + "anchor": "Tiny Hut" + } + ] + }, + { + "url": "/v2/items/srd-2024_costume/", + "crossreference_from": [ + "/v2/items/srd-2024_disguise-kit/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_disguise-kit/", + "anchor": "Costume" + } + ] + }, + { + "url": "/v2/spells/srd-2024_death-ward/", + "crossreference_from": [ + "/v2/items/srd-2024_dragon-orb/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-orb/", + "anchor": "Death Ward" + } + ] + }, + { + "url": "/v2/items/srd-2024_scale-mail/", + "crossreference_from": [ + "/v2/items/srd-2024_dragon-scale-mail/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dragon-scale-mail/", + "anchor": "Scale Mail" + } + ] + }, + { + "url": "/v2/items/srd-2024_dust-of-disappearance/", + "crossreference_from": [ + "/v2/items/srd-2024_dust-of-sneezing-and-choking/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "anchor": "Dust of Disappearance" + } + ] + }, + { + "url": "/v2/items/srd-2024_lance/", + "crossreference_from": [ + "/v2/items/srd-2024_figurine-of-wondrous-power-ivory-goats/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ivory-goats/", + "anchor": "Lance" + } + ] + }, + { + "url": "/v2/items/srd-2024_keelboat/", + "crossreference_from": [ + "/v2/items/srd-2024_folding-boat/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_folding-boat/", + "anchor": "Keelboat" + } + ] + }, + { + "url": "/v2/items/srd-2024_magnifying-glass/", + "crossreference_from": [ + "/v2/items/srd-2024_glassblowers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_glassblowers-tools/", + "anchor": "Magnifying Glass" + } + ] + }, + { + "url": "/v2/items/srd-2024_spyglass/", + "crossreference_from": [ + "/v2/items/srd-2024_glassblowers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_glassblowers-tools/", + "anchor": "Spyglass" + } + ] + }, + { + "url": "/v2/items/srd-2024_vial/", + "crossreference_from": [ + "/v2/items/srd-2024_glassblowers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_glassblowers-tools/", + "anchor": "Vial" + } + ] + }, + { + "url": "/v2/spells/srd-2024_prismatic-spray/", + "crossreference_from": [ + "/v2/items/srd-2024_helm-of-brilliance/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "anchor": "Prismatic Spray" + } + ] + }, + { + "url": "/v2/spells/srd-2024_comprehend-languages/", + "crossreference_from": [ + "/v2/items/srd-2024_helm-of-comprehending-languages/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_helm-of-comprehending-languages/", + "anchor": "Comprehend Languages" + } + ] + }, + { + "url": "/v2/items/srd-2024_case-map-or-scroll/", + "crossreference_from": [ + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Case, Map or Scroll" + } + ] + }, + { + "url": "/v2/items/srd-2024_hide-armor/", + "crossreference_from": [ + "/v2/items/srd-2024_leatherworkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "anchor": "Hide Armor" + } + ] + }, + { + "url": "/v2/items/srd-2024_block-and-tackle/", + "crossreference_from": [ + "/v2/items/srd-2024_masons-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_masons-tools/", + "anchor": "Block and Tackle" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_sage/", + "crossreference_from": [ + "/v2/items/srd-2024_mysterious-deck/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "anchor": "Sage" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shining-smite/", + "crossreference_from": [ + "/v2/items/srd-2024_necklace-of-prayer-beads/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "anchor": "Shining Smite" + } + ] + }, + { + "url": "/v2/spells/srd-2024_grease/", + "crossreference_from": [ + "/v2/items/srd-2024_oil-of-slipperiness/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil-of-slipperiness/", + "anchor": "Grease" + } + ] + }, + { + "url": "/v2/spells/srd-2024_haste/", + "crossreference_from": [ + "/v2/items/srd-2024_potion-of-speed/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-speed/", + "anchor": "Haste" + } + ] + }, + { + "url": "/v2/items/srd-2024_jug/", + "crossreference_from": [ + "/v2/items/srd-2024_potters-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potters-tools/", + "anchor": "Jug" + } + ] + }, + { + "url": "/v2/spells/srd-2024_create-or-destroy-water/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Create or Destroy Water" + } + ] + }, + { + "url": "/v2/spells/srd-2024_earthquake/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Earthquake" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fire-storm/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Fire Storm" + } + ] + }, + { + "url": "/v2/spells/srd-2024_stone-shape/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Stone Shape" + } + ] + }, + { + "url": "/v2/spells/srd-2024_stoneskin/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Stoneskin" + } + ] + }, + { + "url": "/v2/spells/srd-2024_tsunami/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Tsunami" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-stone/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Wall of Stone" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wind-wall/", + "crossreference_from": [ + "/v2/items/srd-2024_ring-of-elemental-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "anchor": "Wind Wall" + } + ] + }, + { + "url": "/v2/items/srd-2024_potions-of-healing/", + "crossreference_from": [ + "/v2/items/srd-2024_robe-of-useful-items/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "anchor": "Potions of Healing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_detect-poison-and-disease/", + "crossreference_from": [ + "/v2/items/srd-2024_rod-of-alertness/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "anchor": "Detect Poison and Disease" + } + ] + }, + { + "url": "/v2/items/srd-2024_bucket/", + "crossreference_from": [ + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Bucket" + } + ] + }, + { + "url": "/v2/items/srd-2024_grappling-hook/", + "crossreference_from": [ + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Grappling Hook" + } + ] + }, + { + "url": "/v2/items/srd-2024_pot-iron/", + "crossreference_from": [ + "/v2/items/srd-2024_smiths-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_smiths-tools/", + "anchor": "Pot, Iron" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil-of-etherealness/", + "crossreference_from": [ + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Oil of Etherealness" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil-of-slipperiness/", + "crossreference_from": [ + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Oil of Slipperiness" + } + ] + }, + { + "url": "/v2/items/srd-2024_universal-solvent/", + "crossreference_from": [ + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Universal Solvent" + } + ] + }, + { + "url": "/v2/items/srd-2024_light-hammer/", + "crossreference_from": [ + "/v2/items/srd-2024_spikes-iron/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_spikes-iron/", + "anchor": "Light Hammer" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mass-cure-wounds/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-healing/", + "anchor": "Mass Cure Wounds" + } + ] + }, + { + "url": "/v2/spells/srd-2024_globe-of-invulnerability/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-power/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-power/", + "anchor": "Globe of Invulnerability" + } + ] + }, + { + "url": "/v2/spells/srd-2024_giant-insect/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-swarming-insects/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-swarming-insects/", + "anchor": "Giant Insect" + } + ] + }, + { + "url": "/v2/spells/srd-2024_conjure-elemental/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Conjure Elemental" + } + ] + }, + { + "url": "/v2/spells/srd-2024_flaming-sphere/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Flaming Sphere" + } + ] + }, + { + "url": "/v2/spells/srd-2024_passwall/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-magi/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "anchor": "Passwall" + } + ] + }, + { + "url": "/v2/spells/srd-2024_awaken/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Awaken" + } + ] + }, + { + "url": "/v2/spells/srd-2024_barkskin/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Barkskin" + } + ] + }, + { + "url": "/v2/spells/srd-2024_locate-animals-or-plants/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Locate Animals or Plants" + } + ] + }, + { + "url": "/v2/spells/srd-2024_speak-with-plants/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Speak with Plants" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-thorns/", + "crossreference_from": [ + "/v2/items/srd-2024_staff-of-the-woodlands/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "anchor": "Wall of Thorns" + } + ] + }, + { + "url": "/v2/items/srd-2024_sphere-of-annihilation/", + "crossreference_from": [ + "/v2/items/srd-2024_talisman-of-the-sphere/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_talisman-of-the-sphere/", + "anchor": "Sphere of Annihilation" + } + ] + }, + { + "url": "/v2/items/srd-2024_candle/", + "crossreference_from": [ + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Candle" + } + ] + }, + { + "url": "/v2/items/srd-2024_hunting-trap/", + "crossreference_from": [ + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Hunting Trap" + } + ] + }, + { + "url": "/v2/items/srd-2024_manacles/", + "crossreference_from": [ + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Manacles" + } + ] + }, + { + "url": "/v2/items/srd-2024_shovel/", + "crossreference_from": [ + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Shovel" + } + ] + }, + { + "url": "/v2/items/srd-2024_signal-whistle/", + "crossreference_from": [ + "/v2/items/srd-2024_tinkers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "anchor": "Signal Whistle" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dominate-beast/", + "crossreference_from": [ + "/v2/items/srd-2024_trident-of-fish-command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_trident-of-fish-command/", + "anchor": "Dominate Beast" + } + ] + }, + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "crossreference_from": [ + "/v2/items/srd-2024_universal-solvent/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_universal-solvent/", + "anchor": "Sovereign Glue" + } + ] + }, + { + "url": "/v2/items/srd-2024_basket/", + "crossreference_from": [ + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Basket" + } + ] + }, + { + "url": "/v2/items/srd-2024_net/", + "crossreference_from": [ + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Net" + } + ] + }, + { + "url": "/v2/items/srd-2024_padded-armor/", + "crossreference_from": [ + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Padded Armor" + } + ] + }, + { + "url": "/v2/items/srd-2024_string/", + "crossreference_from": [ + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "String" + } + ] + }, + { + "url": "/v2/items/srd-2024_tent/", + "crossreference_from": [ + "/v2/items/srd-2024_weavers-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_weavers-tools/", + "anchor": "Tent" + } + ] + }, + { + "url": "/v2/spells/srd-2024_misty-step/", + "crossreference_from": [ + "/v2/species/srd-2024_elf_elven-lineage/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "anchor": "Misty Step" + } + ] + }, + { + "url": "/v2/feats/srd-2024_skilled/", + "crossreference_from": [ + "/v2/species/srd-2024_human_versatile/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_human_versatile/", + "anchor": "Skilled" + } + ] + }, + { + "url": "/v2/spells/srd-2024_chill-touch/", + "crossreference_from": [ + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Chill Touch" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fire-bolt/", + "crossreference_from": [ + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Fire Bolt" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hellish-rebuke/", + "crossreference_from": [ + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Hellish Rebuke" + } + ] + }, + { + "url": "/v2/spells/srd-2024_poison-spray/", + "crossreference_from": [ + "/v2/species/srd-2024_tiefling_fiendish-legacy/" + ], + "matches": [ + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "anchor": "Poison Spray" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_two-handed-wp/", + "crossreference_from": [ + "/v2/feats/srd-2024_great-weapon-fighting_1/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_great-weapon-fighting_1/", + "anchor": "Two-Handed" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_versatile-wp/", + "crossreference_from": [ + "/v2/feats/srd-2024_great-weapon-fighting_1/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_great-weapon-fighting_1/", + "anchor": "Versatile" + } + ] + }, + { + "url": "/v2/feats/srd-2024_alert/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_criminal_feat/" + ], + "matches": [ + { + "url": "/v2/backgrounds/srd-2024_criminal_feat/", + "anchor": "Alert" + } + ] + }, + { + "url": "/v2/items/srd-2024_healers-kit/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_soldier_equipment/" + ], + "matches": [ + { + "url": "/v2/backgrounds/srd-2024_soldier_equipment/", + "anchor": "Healer's Kit" + } + ] + }, + { + "url": "/v2/feats/srd-2024_savage-attacker/", + "crossreference_from": [ + "/v2/backgrounds/srd-2024_soldier_feat/" + ], + "matches": [ + { + "url": "/v2/backgrounds/srd-2024_soldier_feat/", + "anchor": "Savage Attacker" + } + ] + }, + { + "url": "/v2/spells/srd-2024_create-undead/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "anchor": "Create Undead" + } + ] + }, + { + "url": "/v2/spells/srd-2024_control-water/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "anchor": "Control Water" + } + ] + }, + { + "url": "/v2/spells/srd-2024_project-image/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "anchor": "Project Image" + } + ] + }, + { + "url": "/v2/spells/srd-2024_modify-memory/", + "crossreference_from": [ + "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "anchor": "Modify Memory" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mind-blank/", + "crossreference_from": [ + "/v2/creatures/srd-2024_archmage_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "anchor": "Mind Blank" + } + ] + }, + { + "url": "/v2/items/srd-2024_light-crossbow/", + "crossreference_from": [ + "/v2/creatures/srd-2024_assassin_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_assassin_multiattack/", + "anchor": "Light Crossbow" + } + ] + }, + { + "url": "/v2/items/srd-2024_glaive/", + "crossreference_from": [ + "/v2/creatures/srd-2024_bearded-devil_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_bearded-devil_multiattack/", + "anchor": "Glaive" + } + ] + }, + { + "url": "/v2/items/srd-2024_pike/", + "crossreference_from": [ + "/v2/creatures/srd-2024_centaur-trooper_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_centaur-trooper_multiattack/", + "anchor": "Pike" + } + ] + }, + { + "url": "/v2/spells/srd-2024_moonbeam/", + "crossreference_from": [ + "/v2/creatures/srd-2024_druid_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "anchor": "Moonbeam" + } + ] + }, + { + "url": "/v2/spells/srd-2024_elementalism/", + "crossreference_from": [ + "/v2/creatures/srd-2024_efreeti_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "anchor": "Elementalism" + } + ] + }, + { + "url": "/v2/spells/srd-2024_confusion/", + "crossreference_from": [ + "/v2/creatures/srd-2024_glabrezu_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Confusion" + } + ] + }, + { + "url": "/v2/spells/srd-2024_power-word-stun/", + "crossreference_from": [ + "/v2/creatures/srd-2024_glabrezu_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "anchor": "Power Word Stun" + } + ] + }, + { + "url": "/v2/spells/srd-2024_true-seeing/", + "crossreference_from": [ + "/v2/creatures/srd-2024_guardian-naga_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "anchor": "True Seeing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hypnotic-pattern/", + "crossreference_from": [ + "/v2/creatures/srd-2024_incubus_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_incubus_spellcasting/", + "anchor": "Hypnotic Pattern" + } + ] + }, + { + "url": "/v2/spells/srd-2024_finger-of-death/", + "crossreference_from": [ + "/v2/creatures/srd-2024_lich_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "anchor": "Finger of Death" + } + ] + }, + { + "url": "/v2/spells/srd-2024_phantasmal-killer/", + "crossreference_from": [ + "/v2/creatures/srd-2024_night-hag_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "anchor": "Phantasmal Killer" + } + ] + }, + { + "url": "/v2/items/srd-2024_rapier/", + "crossreference_from": [ + "/v2/creatures/srd-2024_pirate-captain_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_pirate-captain_multiattack/", + "anchor": "Rapier" + } + ] + }, + { + "url": "/v2/spells/srd-2024_spirit-guardians/", + "crossreference_from": [ + "/v2/creatures/srd-2024_priest_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_priest_spellcasting/", + "anchor": "Spirit Guardians" + } + ] + }, + { + "url": "/v2/spells/srd-2024_locate-object/", + "crossreference_from": [ + "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "anchor": "Locate Object" + } + ] + }, + { + "url": "/v2/spells/srd-2024_heroes-feast/", + "crossreference_from": [ + "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "anchor": "Heroes' Feast" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dominate-person/", + "crossreference_from": [ + "/v2/creatures/srd-2024_succubus_charm/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_succubus_charm/", + "anchor": "Dominate Person" + } + ] + }, + { + "url": "/v2/items/srd-2024_warhammer/", + "crossreference_from": [ + "/v2/creatures/srd-2024_tough-boss_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_tough-boss_multiattack/", + "anchor": "Warhammer" + } + ] + }, + { + "url": "/v2/spells/srd-2024_calm-emotions/", + "crossreference_from": [ + "/v2/creatures/srd-2024_unicorn_spellcasting/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "anchor": "Calm Emotions" + } + ] + }, + { + "url": "/v2/items/srd-2024_handaxe/", + "crossreference_from": [ + "/v2/creatures/srd-2024_werebear_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_werebear_multiattack/", + "anchor": "Handaxe" + } + ] + }, + { + "url": "/v2/items/srd-2024_hand-crossbow/", + "crossreference_from": [ + "/v2/creatures/srd-2024_wererat_multiattack/" + ], + "matches": [ + { + "url": "/v2/creatures/srd-2024_wererat_multiattack/", + "anchor": "Hand Crossbow" + } + ] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_barbarian-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_barbarian-subclass/", + "anchor": "Path of the Berserker" + } + ] + }, + { + "url": "/v2/items/srd-2024_greataxe/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "anchor": "Greataxe" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rages/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rages" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_bard-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bard-subclass/", + "anchor": "College of Lore" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_bardic-die/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_bardic-inspiration/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "anchor": "Bardic Die" + } + ] + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "anchor": "Entertainer's Pack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_bard-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Bard Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_color-spray/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Color Spray" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dissonant-whispers/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Dissonant Whispers" + } + ] + }, + { + "url": "/v2/spells/srd-2024_healing-word/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Healing Word" + } + ] + }, + { + "url": "/v2/spells/srd-2024_vicious-mockery/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "anchor": "Vicious Mockery" + } + ] + }, + { + "url": "/v2/spells/srd-2024_power-word-heal/", + "crossreference_from": [ + "/v2/classes/srd-2024_bard_words-of-creation/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_words-of-creation/", + "anchor": "Power Word Heal" + } + ] + }, + { + "url": "/v2/classes/srd-2024_life-domain/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_cleric-subclasses/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_cleric-subclasses/", + "anchor": "Life Domain" + } + ] + }, + { + "url": "/v2/items/srd-2024_chain-shirt/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "anchor": "Chain Shirt" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_divine-intervention/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_greater-divine-intervention/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_greater-divine-intervention/", + "anchor": "Divine Intervention" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_blessed-strikes/", + "crossreference_from": [ + "/v2/classes/srd-2024_cleric_improved-blessed-strikes/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_improved-blessed-strikes/", + "anchor": "Blessed Strikes" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard/", + "crossreference_from": [ + "/v2/classes/srd-2024_college-of-lore_magical-discoveries/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "anchor": "Bard" + } + ] + }, + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "anchor": "Herbalism Kit" + } + ] + }, + { + "url": "/v2/classes/srd-2024_circle-of-the-land/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_druid-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druid-subclass/", + "anchor": "Circle of the Land" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_elemental-fury/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_improved-elemental-fury/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_improved-elemental-fury/", + "anchor": "Elemental Fury" + } + ] + }, + { + "url": "/v2/spells/srd-2024_produce-flame/", + "crossreference_from": [ + "/v2/classes/srd-2024_druid_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "anchor": "Produce Flame" + } + ] + }, + { + "url": "/v2/items/srd-2024_flail/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "anchor": "Flail" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-combat-prowess/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Boon of Combat Prowess" + } + ] + }, + { + "url": "/v2/classes/srd-2024_champion/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_fighter-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_fighter-subclass/", + "anchor": "Champion" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_sap-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_tactical-master/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_tactical-master/", + "anchor": "Sap" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "crossreference_from": [ + "/v2/classes/srd-2024_fighter_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_deflect-attacks/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_deflect-energy/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_deflect-energy/", + "anchor": "Deflect Attacks" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warrior-of-the-open-hand/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_monk-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_monk-subclass/", + "anchor": "Warrior of the Open Hand" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_perfect-focus/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_perfect-focus/", + "anchor": "Uncanny Metabolism" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk/", + "crossreference_from": [ + "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_quivering-palm/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_quivering-palm/", + "anchor": "Monk" + } + ] + }, + { + "url": "/v2/spells/srd-2024_find-steed/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_faithful-steed/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_faithful-steed/", + "anchor": "Find Steed" + } + ] + }, + { + "url": "/v2/spells/srd-2024_aid/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Aid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_beacon-of-hope/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "anchor": "Beacon of Hope" + } + ] + }, + { + "url": "/v2/classes/srd-2024_oath-of-devotion/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_paladin-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_paladin-subclass/", + "anchor": "Oath of Devotion" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_lay-on-hands/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_restoring-touch/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_restoring-touch/", + "anchor": "Lay On Hands" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_spellcasting/", + "anchor": "Paladin Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_heroism/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_spellcasting/", + "anchor": "Heroism" + } + ] + }, + { + "url": "/v2/spells/srd-2024_searing-smite/", + "crossreference_from": [ + "/v2/classes/srd-2024_paladin_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_spellcasting/", + "anchor": "Searing Smite" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy-uses/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_favored-enemy/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy/", + "anchor": "Favored Enemy" + } + ] + }, + { + "url": "/v2/spells/srd-2024_starry-wisp/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Starry Wisp" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_spellcasting/", + "anchor": "Ranger Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ensnaring-strike/", + "crossreference_from": [ + "/v2/classes/srd-2024_ranger_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_spellcasting/", + "anchor": "Ensnaring Strike" + } + ] + }, + { + "url": "/v2/items/srd-2024_burglars-pack/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_core-traits/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "anchor": "Burglar's Pack" + } + ] + }, + { + "url": "/v2/items/srd-2024_poisoners-kit/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_cunning-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Poisoner's Kit" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Boon of the Night Spirit" + } + ] + }, + { + "url": "/v2/classes/srd-2024_thief/", + "crossreference_from": [ + "/v2/classes/srd-2024_rogue_rogue-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_rogue-subclass/", + "anchor": "Thief" + } + ] + }, + { + "url": "/v2/spells/srd-2024_chromatic-orb/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Chromatic Orb" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dragons-breath/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "anchor": "Dragon's Breath" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_spell-slots/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_font-of-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "anchor": "Spell Slots" + } + ] + }, + { + "url": "/v2/classes/srd-2024_draconic-sorcery/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_sorcerer-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerer-subclass/", + "anchor": "Draconic Sorcery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerer-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Sorcerer Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shocking-grasp/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Shocking Grasp" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sorcerous-burst/", + "crossreference_from": [ + "/v2/classes/srd-2024_sorcerer_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "anchor": "Sorcerous Burst" + } + ] + }, + { + "url": "/v2/spells/srd-2024_contact-other-plane/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_contact-patron/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_contact-patron/", + "anchor": "Contact Other Plane" + } + ] + }, + { + "url": "/v2/spells/srd-2024_silent-image/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Silent Image" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-count/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocations/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocations/", + "anchor": "Eldritch Invocations" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_eldritch-invocations/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocations/", + "anchor": "Eldritch Invocation Options" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fire-shield/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "anchor": "Fire Shield" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_slot-level/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Slot Level" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_warlock-spell-list/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Warlock Spell List" + } + ] + }, + { + "url": "/v2/spells/srd-2024_eldritch-blast/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Eldritch Blast" + } + ] + }, + { + "url": "/v2/spells/srd-2024_hex/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Hex" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fiend-patron/", + "crossreference_from": [ + "/v2/classes/srd-2024_warlock_warlock-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_warlock-subclass/", + "anchor": "Fiend Patron" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ray-of-frost/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_spellcasting/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "anchor": "Ray of Frost" + } + ] + }, + { + "url": "/v2/classes/srd-2024_evoker/", + "crossreference_from": [ + "/v2/classes/srd-2024_wizard_wizard-subclass/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard_wizard-subclass/", + "anchor": "Evoker" + } + ] + }, + { + "url": "/v2/spells/srd-2024_true-resurrection/", + "crossreference_from": [ + "/v2/spells/srd-2024_disintegrate/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "True Resurrection" + } + ] + }, + { + "url": "/v2/spells/srd-2024_alarm/", + "crossreference_from": [ + "/v2/spells/srd-2024_find-traps/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_find-traps/", + "anchor": "Alarm" + } + ] + }, + { + "url": "/v2/spells/srd-2024_glyph-of-warding/", + "crossreference_from": [ + "/v2/spells/srd-2024_find-traps/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_find-traps/", + "anchor": "Glyph of Warding" + } + ] + }, + { + "url": "/v2/spells/srd-2024_magic-mouth/", + "crossreference_from": [ + "/v2/spells/srd-2024_guards-and-wards/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "anchor": "Magic Mouth" + } + ] + }, + { + "url": "/v2/spells/srd-2024_flesh-to-stone/", + "crossreference_from": [ + "/v2/spells/srd-2024_locate-creature/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_locate-creature/", + "anchor": "Flesh to Stone" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_movement-and-position/", + "crossreference_from": [ + "/v2/rules/srd-2024_combat_the-order-of-combat/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_combat_the-order-of-combat/", + "anchor": "Movement and Position" + } + ] + }, + { + "url": "/v2/items/srd-2024_blowgun/", + "crossreference_from": [ + "/v2/rules/srd-2024_damage-and-healing_damage-rolls/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_damage-rolls/", + "anchor": "Blowgun" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_damage-and-healing/", + "crossreference_from": [ + "/v2/rules/srd-2024_combat_underwater-combat/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_combat_underwater-combat/", + "anchor": "Damage and Healing" + } + ] + } +] \ No newline at end of file diff --git a/scripts/crossreference/README.md b/scripts/crossreference/README.md new file mode 100644 index 00000000..152b8ffb --- /dev/null +++ b/scripts/crossreference/README.md @@ -0,0 +1,30 @@ +# Crossreference scripts + +Cross-reference candidate finding, report generation, deletion by document, and applying suggested links to the database. + +## Modules + +- **core.py** – Matching logic, blacklists, document scoping, `identify_crossreferences_from_text`, report building, URL helpers. Used by all other scripts. + +- **find_candidates.py** – List source candidates and optionally write JSON reports (sources + references) and print top 10. + +- **delete_crossreferences.py** – Delete `CrossReference` rows whose source is in a given document (optional model + blacklists, `--dry-run`). + +- **apply_crossreferences.py** – Create `CrossReference` rows from the same text-matching logic; supports `--dry-run` and `--replace`. + +## How to run + +Invoke via Django management commands. Blacklist paths are typically at project root (e.g. `crossref_source_blacklist.txt`, `crossref_reference_blacklist.txt`). + +```bash +manage.py find_crossref_candidates --document srd-2024 [--sources-report ...] [--references-report ...] +manage.py delete_crossreferences --document srd-2024 [--dry-run] +manage.py apply_crossreferences --document srd-2024 [--dry-run] [--replace] +``` + +## Typical workflow + +1. Run `find_crossref_candidates` with report paths; inspect the generated JSON reports. +2. Tune blacklists as needed. +3. Run `apply_crossreferences --dry-run` to see how many rows would be created (and replaced if using `--replace`). +4. Run `apply_crossreferences` to write to the database. Use `--replace` to clear existing crossrefs for that document before creating new ones. diff --git a/scripts/crossreference/__init__.py b/scripts/crossreference/__init__.py new file mode 100644 index 00000000..3566a3ce --- /dev/null +++ b/scripts/crossreference/__init__.py @@ -0,0 +1,9 @@ +""" +Cross-reference candidate finding, deletion, and apply logic. + +Entry points: +- scripts.crossreference.find_candidates.run() — find candidates / write reports +- scripts.crossreference.delete_crossreferences.run() — delete by document +- scripts.crossreference.apply_crossreferences.run() — apply suggested cross-references + to the database (dry-run and optional replace) +""" diff --git a/scripts/crossreference/apply_crossreferences.py b/scripts/crossreference/apply_crossreferences.py new file mode 100644 index 00000000..d3ca2d1f --- /dev/null +++ b/scripts/crossreference/apply_crossreferences.py @@ -0,0 +1,105 @@ +""" +Apply suggested cross-references to the database from text-matching results. + +Supports --dry-run and --replace (delete existing for document first). +Called by management command apply_crossreferences. +""" + +from api_v2.models import CrossReference + +from scripts.crossreference.core import ( + build_object_url, + get_crossreferences_by_source_document, + get_document, + get_reference_candidates_for_document, + identify_crossreferences_from_text, + load_blacklist, +) + + +def run( + doc_key: str, + *, + source_blacklist_path: str | None = None, + reference_blacklist_path: str | None = None, + dry_run: bool = False, + replace_existing: bool = False, + stdout=None, + style_success=None, +): + """ + Run text-matching for the document, then create CrossReference rows (or report counts if dry_run). + + If replace_existing, delete existing crossrefs whose source is in the document first. + stdout: object with .write(str). If None, print() is used. + style_success: callable(str) -> str for success message. If None, identity. + """ + doc = get_document(doc_key) + source_blacklist = load_blacklist(source_blacklist_path) + reference_blacklist = load_blacklist(reference_blacklist_path) + + def write(line: str) -> None: + if stdout is not None: + stdout.write(line) + else: + print(line) + + success = style_success if style_success is not None else lambda x: x + + by_source, _by_reference = identify_crossreferences_from_text( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + + ref_url_to_ct_key = {} + for ref_ct, ref_key, _ref_name in get_reference_candidates_for_document(doc): + url = build_object_url(ref_ct, ref_key) + ref_url_to_ct_key[url] = (ref_ct, ref_key) + + to_create = [] + for key_src, (src_url, ref_list) in by_source.items(): + src_ct_id, source_object_key = key_src + for ref_url, anchor in ref_list: + if ref_url not in ref_url_to_ct_key: + continue + ref_ct, ref_key = ref_url_to_ct_key[ref_url] + to_create.append( + CrossReference( + source_content_type_id=src_ct_id, + source_object_key=source_object_key, + reference_content_type=ref_ct, + reference_object_key=ref_key, + anchor=anchor, + ) + ) + + if dry_run: + replace_count = 0 + if replace_existing: + qs = get_crossreferences_by_source_document( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + replace_count = qs.count() + write( + f"Would create {len(to_create)} crossreferences (source document {doc_key})." + ) + if replace_existing: + write(f"Would delete {replace_count} existing crossreferences first.") + write("Run without --dry-run to apply.") + return + + if replace_existing: + qs = get_crossreferences_by_source_document( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + replace_count = qs.count() + qs.delete() + write(f"Deleted {replace_count} existing crossreferences.") + + CrossReference.objects.bulk_create(to_create) + write(success(f"Created {len(to_create)} crossreferences (source document {doc_key}).")) diff --git a/scripts/crossreference/core.py b/scripts/crossreference/core.py new file mode 100644 index 00000000..fb74b798 --- /dev/null +++ b/scripts/crossreference/core.py @@ -0,0 +1,686 @@ +""" +Core cross-reference logic: matching, reports, blacklists, document scoping. + +Used by find_candidates and delete_crossreferences scripts. Requires Django. +""" + +import json +import re +from pathlib import Path + +from django.apps import apps +from django.contrib.contenttypes.models import ContentType +from django.db.models.fields.related import ForeignKey + +from api_v2.models import CrossReference, Document + +# FK field names that point to a "parent" entity; sources with these will not link to that parent. +PARENT_FIELD_NAMES = ("parent", "subclass_of") + +# Object keys containing any of these substrings are excluded as both sources and references. +EXCLUDED_KEY_SUBSTRINGS = ("spellcasting-levels",) + +# Reference names that are never suggested as links (e.g. ordinal table headers like "1st", "6th"). +EXCLUDED_REFERENCE_NAMES = frozenset({"1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th"}) + + +# Map api_v2 model name to URL path segment (router basename) for building /v2/{basename}/{pk}/. +MODEL_TO_URL_BASENAME = { + "Item": "items", + "ItemSet": "itemsets", + "ItemCategory": "itemcategories", + "ItemRarity": "itemrarities", + "Ability": "abilities", + "AbilityDescription": "abilities", + "Skill": "skills", + "SkillDescription": "skills", + "Armor": "armor", + "Weapon": "weapons", + "WeaponProperty": "weaponproperties", + "Species": "species", + "SpeciesTrait": "species", + "Feat": "feats", + "FeatBenefit": "feats", + "Background": "backgrounds", + "BackgroundBenefit": "backgrounds", + "Creature": "creatures", + "CreatureTrait": "creatures", + "CreatureAction": "creatures", + "CreatureType": "creaturetypes", + "CreatureTypeDescription": "creaturetypes", + "CreatureSet": "creaturesets", + "Document": "documents", + "DamageType": "damagetypes", + "DamageTypeDescription": "damagetypes", + "Language": "languages", + "Alignment": "alignments", + "AlignmentDescription": "alignments", + "Condition": "conditions", + "ConditionDescription": "conditions", + "Spell": "spells", + "SpellSchool": "spellschools", + "SpellCastingOption": "spells", + "ClassFeature": "classes", + "ClassFeatureItem": "classes", + "CharacterClass": "classes", + "Size": "sizes", + "Environment": "environments", + "Rule": "rules", + "RuleSet": "rulesets", + "Image": "images", + "Service": "services", +} + + +def build_object_url(content_type: ContentType, object_key: str) -> str: + """Return the API v2 path for an object, e.g. /v2/spells/srd_fireball/.""" + model = content_type.model_class() + if model is None: + return f"/v2/unknown/{object_key}/" + basename = MODEL_TO_URL_BASENAME.get(model.__name__) + if basename is None: + basename = (model._meta.verbose_name_plural or model.__name__.lower() + "s").replace(" ", "") + return f"/v2/{basename}/{object_key}/" + + +# Model classification for document scoping (aligned with export command). +SKIPPED_MODEL_NAMES = [ + "Document", + "GameSystem", + "License", + "Publisher", + "SearchResult", +] +CHILD_MODEL_NAMES = [ + "SpeciesTrait", + "FeatBenefit", + "BackgroundBenefit", + "ClassFeatureItem", + "SpellCastingOption", + "CreatureAction", + "CreatureTrait", +] +CHILD_CHILD_MODEL_NAMES = ["CreatureActionAttack"] + +# Models that can be mentioned in descriptions (reference targets for text-matching). +REFERENCE_MODEL_NAMES = [ + "Spell", + "Item", + "Condition", + "ConditionDescription", + "Feat", + "Rule", + "RuleSet", + "WeaponProperty", + "DamageTypeDescription", + "AbilityDescription", + "SkillDescription", + "AlignmentDescription", + "CreatureTypeDescription", + "Language", + "Environment", + "Background", + "Species", + "CharacterClass", + "ClassFeature", +] + + +def _model_has_name(model) -> bool: + """Return True if the model has a name field.""" + return any(f.name == "name" for f in model._meta.get_fields()) + + +def get_reference_models_and_filters_for_document(doc): + """ + Return (model, filter_kwargs) for all api_v2 models that are in REFERENCE_MODEL_NAMES, + have a name field, and belong to the given document. + """ + result = [] + for model in apps.get_models(): + if model._meta.app_label != "api_v2": + continue + if model.__name__ not in REFERENCE_MODEL_NAMES: + continue + if not _model_has_name(model): + continue + + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + filter_kwargs = {"parent__parent__document": doc} + elif model.__name__ in CHILD_MODEL_NAMES: + filter_kwargs = {"parent__document": doc} + else: + filter_kwargs = {"document": doc} + + result.append((model, filter_kwargs)) + return result + + +def get_reference_candidates_for_document(doc): + """ + Yield (content_type, object_key, name) for every reference candidate in the document. + Name is stripped; used for case-insensitive substring match in descriptions. + """ + for model, filter_kwargs in get_reference_models_and_filters_for_document(doc): + ct = ContentType.objects.get_for_model(model) + qs = model.objects.filter(**filter_kwargs) + for obj in qs: + name = getattr(obj, "name", None) + if name is None or not str(name).strip(): + continue + yield ct, str(obj.pk), str(name).strip() + + +def get_document(doc_key: str) -> Document: + """Resolve document by key. Raises Document.DoesNotExist if not found.""" + return Document.objects.get(key=doc_key) + + +def load_blacklist(file_path: str | None) -> set[str]: + """ + Load a blacklist from a file: one object key per line (stripped, empty lines skipped). + If file_path is None or file is missing, return empty set. + """ + if not file_path: + return set() + path = Path(file_path) + if not path.exists(): + return set() + keys = set() + with open(path, encoding="utf-8") as f: + for line in f: + key = line.strip() + if key: + keys.add(key) + return keys + + +def _model_has_description(model) -> bool: + """Return True if the model has a desc field (i.e. can be a crossref source).""" + return any(f.name == "desc" for f in model._meta.get_fields()) + + +def get_source_models_and_filters_for_document(doc, model_name: str | None = None): + """ + Return a list of (model, filter_kwargs) for all api_v2 models that have + HasDescription (desc field) and belong to the given document. + + doc: Document instance. + model_name: If set, only include this model (e.g. 'Spell', 'Item'). + + Each filter_kwargs is suitable for model.objects.filter(**filter_kwargs). + """ + result = [] + for model in apps.get_models(): + if model._meta.app_label != "api_v2": + continue + if model.__name__ in SKIPPED_MODEL_NAMES: + continue + if not _model_has_description(model): + continue + if model_name is not None and model.__name__ != model_name: + continue + + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + filter_kwargs = {"parent__parent__document": doc} + elif model.__name__ in CHILD_MODEL_NAMES: + filter_kwargs = {"parent__document": doc} + else: + filter_kwargs = {"document": doc} + + result.append((model, filter_kwargs)) + return result + + +def get_crossreferences_by_source_document( + doc, + *, + source_model_name: str | None = None, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """ + Return a queryset of CrossReference rows whose source object is in the given + document, optionally restricted by source model. Excludes rows whose + source_object_key is in source_blacklist or reference_object_key is in + reference_blacklist. + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + + pairs = get_source_models_and_filters_for_document(doc, model_name=source_model_name) + crossref_ids = [] + + for model, filter_kwargs in pairs: + ct = ContentType.objects.get_for_model(model) + keys_in_scope = set( + model.objects.filter(**filter_kwargs).values_list("pk", flat=True) + ) + if not keys_in_scope: + continue + qs = CrossReference.objects.filter( + source_content_type=ct, + source_object_key__in=keys_in_scope, + ) + if source_blacklist: + qs = qs.exclude(source_object_key__in=source_blacklist) + if reference_blacklist: + qs = qs.exclude(reference_object_key__in=reference_blacklist) + crossref_ids.extend(qs.values_list("pk", flat=True)) + + if not crossref_ids: + return CrossReference.objects.none() + return CrossReference.objects.filter(pk__in=crossref_ids) + + +def get_all_crossreferences_for_document(doc): + """Return queryset of all CrossReference rows whose source is in the given document.""" + return get_crossreferences_by_source_document( + doc, + source_model_name=None, + source_blacklist=set(), + reference_blacklist=set(), + ) + + +def _get_parent_keys_to_skip(obj) -> set[tuple[int, str]]: + """ + For an object that may have a parent-like FK (e.g. parent, subclass_of), + return a set of (content_type_id, parent_key) that should not be suggested as references. + """ + result = set() + model = type(obj) + for field_name in PARENT_FIELD_NAMES: + try: + field = model._meta.get_field(field_name) + except Exception: + continue + if not isinstance(field, ForeignKey): + continue + parent_id = getattr(obj, field.attname, None) + if parent_id is None: + continue + parent_model = field.remote_field.model + if isinstance(parent_model, str): + if "." in parent_model: + parent_model = apps.get_model(parent_model) + else: + parent_model = apps.get_model(model._meta.app_label, parent_model) + parent_ct = ContentType.objects.get_for_model(parent_model) + result.add((parent_ct.id, str(parent_id))) + return result + + +def _match_likely_common_word(ref_name: str, matched_text: str) -> bool: + """ + Return True if this match is likely the common word rather than the named entity. + When the reference name is capitalized (e.g. "Fly", "Sleep") but the occurrence + in the source is all lowercase ("fly", "sleep"), treat it as the common word + and exclude it to reduce false positives. + """ + if not ref_name or not matched_text: + return False + if not any(c.isupper() for c in ref_name): + return False + return matched_text.islower() + + +# Lighting-condition phrases: "Light" here is not the spell or weapon property. +_LIGHTING_PHRASES = ("bright light", "dim light") + + +def _match_is_lighting_condition( + desc: str, match_start: int, match_end: int, ref_name: str +) -> bool: + """ + Return True when the match is "Light" as part of "Bright Light" or "Dim Light" + (lighting conditions), not the Light spell or Light weapon property. + """ + if not ref_name or ref_name.lower() != "light": + return False + # Need enough context before "Light" to see "Bright " or "Dim " + start = max(0, match_start - 7) + window = desc[start:match_end].lower() + return any(phrase in window for phrase in _LIGHTING_PHRASES) + + +# Context window (chars before/after match) for spell vs weapon-property disambiguation. +_CONTEXT_WINDOW = 120 +# Phrases/words that suggest the mention is the spell, not the weapon property. +_CONTEXT_SUGGESTS_SPELL = frozenset({ + "cast", "spell", "cantrip", "concentration", "prepared", "slot", "slots", + "evocation", "spellcasting", "cast this spell", "spell's", "the spell ", +}) +# Phrases/words that suggest the mention is the weapon property, not the spell. +_CONTEXT_SUGGESTS_WEAPON_PROPERTY = frozenset({ + "light weapon", "weapon property", "weapon has", "weapons with", + "property.", "properties", "melee weapon", "ranged weapon", + "has the light", "the light property", "light property", +}) +# Phrases/words that suggest "Light" is armor/equipment (e.g. "Light and Medium armor"), not the spell. +_CONTEXT_SUGGESTS_ARMOR_OR_EQUIPMENT = frozenset({ + "light and medium", " and medium armor", "armor training", + "light armor", "medium armor", "heavy armor", +}) +# Phrases/words that suggest "Shield" is the physical item, not the spell. +_CONTEXT_SUGGESTS_SHIELD_ITEM = frozenset({ + "wield a shield", "wielding a shield", "don shield", "donning a shield", + "armor and shield", "shield's ac", "shield ac", "shield (armor)", + "carry a shield", "holding a shield", "equip a shield", "shield and armor", + "shields and", "or shield", "and shields", "proficiency with shields", +}) +# Phrases that suggest "Light" or "Heavy" refer to the crossbow items, not the spell or weapon property. +_CONTEXT_SUGGESTS_CROSSBOW_ITEM = frozenset({ + "light crossbow", "heavy crossbow", "hand crossbow", +}) + + +def _match_context_mismatch( + desc: str, + match_start: int, + match_end: int, + ref_ct: ContentType, + ref_name: str = "", +) -> bool: + """ + Return True when the surrounding context suggests a different meaning than + this reference type (e.g. "Light" spell vs Light weapon property, or Shield + spell vs Shield item). When True, the match should be skipped for this reference. + """ + model_cls = ref_ct.model_class() + if model_cls is None: + return False + model_name = model_cls.__name__ + start = max(0, match_start - _CONTEXT_WINDOW) + end = min(len(desc), match_end + _CONTEXT_WINDOW) + context = desc[start:end].lower() + ref_lower = (ref_name or "").lower() + if model_name == "Spell": + if ( + any(phrase in context for phrase in _CONTEXT_SUGGESTS_WEAPON_PROPERTY) + or any(phrase in context for phrase in _CONTEXT_SUGGESTS_ARMOR_OR_EQUIPMENT) + ): + return True + if ref_lower == "shield" and any( + phrase in context for phrase in _CONTEXT_SUGGESTS_SHIELD_ITEM + ): + return True + if ref_lower == "light" and any( + phrase in context for phrase in _CONTEXT_SUGGESTS_CROSSBOW_ITEM + ): + return True + if model_name == "WeaponProperty": + if ref_lower == "light" and any( + phrase in context for phrase in _CONTEXT_SUGGESTS_CROSSBOW_ITEM + ): + return True + if ref_lower == "heavy" and any( + phrase in context for phrase in _CONTEXT_SUGGESTS_CROSSBOW_ITEM + ): + return True + return any(phrase in context for phrase in _CONTEXT_SUGGESTS_SPELL) + if model_name == "Item" and ref_lower == "shield": + return any(phrase in context for phrase in _CONTEXT_SUGGESTS_SPELL) + return False + + +def _match_in_forbidden_context(desc: str, match_start: int, match_end: int) -> bool: + """ + Return True if the match at (match_start, match_end) is inside bold, a header line, + or a table header line. Such matches are excluded (don't link). + """ + # Bold: **...** or __...__ + for bold_pattern in (r"\*\*(.*?)\*\*", r"__(.*?)__"): + for m in re.finditer(bold_pattern, desc): + if m.start() <= match_start and match_end <= m.end(): + return True + + # Which line contains the match? + lines = desc.split("\n") + char_pos = 0 + line_idx = 0 + for idx, line in enumerate(lines): + if char_pos <= match_start < char_pos + len(line): + line_idx = idx + break + char_pos += len(line) + 1 + + line = lines[line_idx] + + # Header: line starts with # (optional leading whitespace) + if line.lstrip().startswith("#"): + return True + + # Table header: this line has | and is the first line of a run of table lines + if "|" in line: + block_start = line_idx + while block_start > 0 and "|" in lines[block_start - 1]: + block_start -= 1 + if block_start == line_idx: + return True + + return False + + +def identify_crossreferences_from_text( + doc, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """ + Find suggested (source, reference) links by matching reference names in source descriptions. + Returns (by_source, by_reference): + - by_source: dict key_src -> (src_url, list of (ref_url, anchor)) + - by_reference: dict key_ref -> (ref_url, list of (src_url, anchor)) + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + # Precompile word-boundary regex per ref (avoids recompiling for every source). + ref_candidates = [] + for ref_ct, ref_key, ref_name in get_reference_candidates_for_document(doc): + if ref_key in reference_blacklist or not ref_name or len(ref_name) < 2: + continue + if ref_name in EXCLUDED_REFERENCE_NAMES: + continue + if any(sub in ref_key for sub in EXCLUDED_KEY_SUBSTRINGS): + continue + pattern = re.compile( + r"\b" + re.escape(ref_name) + r"\b", + re.IGNORECASE, + ) + ref_candidates.append((ref_ct, ref_key, ref_name, pattern)) + + by_source = {} + by_reference = {} + + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + if any(sub in pk_str for sub in EXCLUDED_KEY_SUBSTRINGS): + continue + desc = obj.desc or "" + desc_len = len(desc) + src_ct = ContentType.objects.get_for_model(model) + src_url = build_object_url(src_ct, pk_str) + key_src = (src_ct.id, pk_str) + seen_refs = set() + parents_to_skip = _get_parent_keys_to_skip(obj) + + for ref_ct, ref_key, ref_name, pattern in ref_candidates: + # Don't allow an object to reference itself + if (ref_ct.id, ref_key) == (src_ct.id, pk_str): + continue + # Don't allow an object to reference its parent (e.g. class feature -> class, trait -> species) + if (ref_ct.id, ref_key) in parents_to_skip: + continue + if len(ref_name) > desc_len: + continue + # Require at least one match that is not in bold/header/table-header, + # not likely the common word (e.g. "fly" vs "Fly" the spell), and + # not context-mismatched (e.g. "Light" weapon property vs Light spell) + found_allowed = False + for m in pattern.finditer(desc): + if _match_in_forbidden_context(desc, m.start(), m.end()): + continue + if _match_likely_common_word(ref_name, desc[m.start() : m.end()]): + continue + if _match_is_lighting_condition(desc, m.start(), m.end(), ref_name): + continue + if _match_context_mismatch(desc, m.start(), m.end(), ref_ct, ref_name): + continue + found_allowed = True + break + if not found_allowed: + continue + key_ref = (ref_ct.id, ref_key) + if (key_src, key_ref) in seen_refs: + continue + seen_refs.add((key_src, key_ref)) + ref_url = build_object_url(ref_ct, ref_key) + + if key_src not in by_source: + by_source[key_src] = (src_url, []) + by_source[key_src][1].append((ref_url, ref_name)) + + if key_ref not in by_reference: + by_reference[key_ref] = (ref_url, []) + by_reference[key_ref][1].append((src_url, ref_name)) + + return by_source, by_reference + + +def build_crossreference_reports( + doc, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, + use_text_matching: bool = True, +): + """ + Build two report structures for the document. + + When use_text_matching=True (default for report files): uses text-match identification + (reference names in source descriptions). Each entry includes "matches" with anchor. + When use_text_matching=False: uses existing CrossReference rows from the DB. + + Returns (sources_report, references_report). + """ + source_blacklist = source_blacklist or set() + reference_blacklist = reference_blacklist or set() + + if use_text_matching: + by_source, by_reference = identify_crossreferences_from_text( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + # Build sources report: every source candidate with suggested links and matches + candidate_entries = [] + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + ct = ContentType.objects.get_for_model(model) + url = build_object_url(ct, pk_str) + key_src = (ct.id, pk_str) + refs_with_anchor = by_source.get(key_src, (url, []))[1] + ref_urls = sorted({r[0] for r in refs_with_anchor}) + matches = [{"url": r[0], "anchor": r[1]} for r in refs_with_anchor] + candidate_entries.append((url, ref_urls, matches)) + + sources_report = [ + {"url": url, "crossreference_to": ref_urls, "matches": matches} + for url, ref_urls, matches in candidate_entries + ] + sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) + + references_report = [ + { + "url": url, + "crossreference_from": sorted({m[0] for m in src_list}), + "matches": [{"url": m[0], "anchor": m[1]} for m in src_list], + } + for _key, (url, src_list) in by_reference.items() + ] + references_report.sort( + key=lambda x: len(x["crossreference_from"]), reverse=True + ) + return sources_report, references_report + + # DB-based: existing CrossReference rows only + qs = get_all_crossreferences_for_document(doc) + by_source = {} + by_reference = {} + + for cr in qs.select_related("source_content_type", "reference_content_type"): + src_url = build_object_url(cr.source_content_type, cr.source_object_key) + ref_url = build_object_url(cr.reference_content_type, cr.reference_object_key) + key_src = (cr.source_content_type_id, cr.source_object_key) + key_ref = (cr.reference_content_type_id, cr.reference_object_key) + if key_src not in by_source: + by_source[key_src] = (src_url, set()) + by_source[key_src][1].add(ref_url) + if key_ref not in by_reference: + by_reference[key_ref] = (ref_url, set()) + by_reference[key_ref][1].add(src_url) + + candidate_entries = [] + for model, filter_kwargs in get_source_models_and_filters_for_document(doc): + for obj in ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ): + pk_str = str(obj.pk) + if pk_str in source_blacklist: + continue + ct = ContentType.objects.get_for_model(model) + url = build_object_url(ct, pk_str) + key_src = (ct.id, pk_str) + ref_urls = by_source[key_src][1] if key_src in by_source else set() + candidate_entries.append((url, ref_urls)) + + sources_report = [ + {"url": url, "crossreference_to": sorted(ref_urls)} + for url, ref_urls in candidate_entries + ] + sources_report.sort(key=lambda x: len(x["crossreference_to"]), reverse=True) + + references_report = [ + {"url": url, "crossreference_from": sorted(src_urls)} + for _key, (url, src_urls) in by_reference.items() + ] + references_report.sort( + key=lambda x: len(x["crossreference_from"]), reverse=True + ) + return sources_report, references_report + + +def write_crossreference_report_files( + doc, + sources_path: str, + references_path: str, + source_blacklist: set[str] | None = None, + reference_blacklist: set[str] | None = None, +): + """Build both reports, write them as JSON to the given paths, and return (sources_report, references_report).""" + sources_report, references_report = build_crossreference_reports( + doc, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + with open(sources_path, "w", encoding="utf-8") as f: + json.dump(sources_report, f, indent=2) + with open(references_path, "w", encoding="utf-8") as f: + json.dump(references_report, f, indent=2) + return sources_report, references_report diff --git a/crossref_reference_blacklist.txt b/scripts/crossreference/crossref_reference_blacklist.txt similarity index 95% rename from crossref_reference_blacklist.txt rename to scripts/crossreference/crossref_reference_blacklist.txt index fd1bee3f..97b5b47a 100644 --- a/crossref_reference_blacklist.txt +++ b/scripts/crossreference/crossref_reference_blacklist.txt @@ -40,20 +40,15 @@ srd-2024_ranger_prepared-spells srd-2024_sorcerer_prepared-spells srd-2024_warlock_prepared-spells srd-2024_wizard_prepared-spells -srd-2024_light-wp -srd-2024_magic-weapon srd-2024_d20-tests_attack-rolls srd-2024_d20-tests_saving-throw srd-2024_damage-and-healing_damage-rolls srd-2024_damage-and-healing_hit-points -srd-2024_light srd-2014_reach-wp srd-2024_reach-wp srd-2024_elf srd-2024_orc -srd-2024_sleep srd-2024_resistance -srd-2024_fly srd-2024_musical-instrument-bagpipes srd-2024_musical-instrument-drum srd-2024_musical-instrument-dulcimer diff --git a/crossref_source_blacklist.txt b/scripts/crossreference/crossref_source_blacklist.txt similarity index 100% rename from crossref_source_blacklist.txt rename to scripts/crossreference/crossref_source_blacklist.txt diff --git a/scripts/crossreference/delete_crossreferences.py b/scripts/crossreference/delete_crossreferences.py new file mode 100644 index 00000000..7261e70b --- /dev/null +++ b/scripts/crossreference/delete_crossreferences.py @@ -0,0 +1,58 @@ +""" +Delete cross-references by source document with optional model and blacklists. + +Called by management command delete_crossreferences. +""" + +from scripts.crossreference.core import ( + get_crossreferences_by_source_document, + get_document, + load_blacklist, +) + + +def run( + doc_key: str, + *, + model_name: str | None = None, + source_blacklist_path: str | None = None, + reference_blacklist_path: str | None = None, + dry_run: bool = False, + stdout=None, + style_success=None, +): + """ + Resolve document, load blacklists, get crossref queryset, then delete (or dry-run). + + stdout: object with .write(str). If None, print() is used. + style_success: callable(str) -> str for success message. If None, identity. + """ + doc = get_document(doc_key) + source_blacklist = load_blacklist(source_blacklist_path) + reference_blacklist = load_blacklist(reference_blacklist_path) + + def write(line: str) -> None: + if stdout is not None: + stdout.write(line) + else: + print(line) + + success = (style_success if style_success is not None else lambda x: x) + + qs = get_crossreferences_by_source_document( + doc, + source_model_name=model_name, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + count = qs.count() + + if dry_run: + write( + f"Would delete {count} crossreferences (source document {doc_key}). " + "Run without --dry-run to delete." + ) + return + + qs.delete() + write(success(f"Deleted {count} crossreferences (source document {doc_key}).")) diff --git a/scripts/crossreference/find_candidates.py b/scripts/crossreference/find_candidates.py new file mode 100644 index 00000000..be53c3a3 --- /dev/null +++ b/scripts/crossreference/find_candidates.py @@ -0,0 +1,110 @@ +""" +Find cross-reference candidates for a document; optionally write report files and print top 10. + +Called by management command find_crossref_candidates. +""" + +from scripts.crossreference.core import ( + get_document, + get_source_models_and_filters_for_document, + load_blacklist, + write_crossreference_report_files, +) + + +def run( + doc_key: str, + *, + source_blacklist_path: str | None = None, + reference_blacklist_path: str | None = None, + sources_report_path: str | None = None, + references_report_path: str | None = None, + stdout=None, + style_success=None, +): + """ + Run find-candidates logic: resolve document, load blacklists, then either + write reports + print top 10 (if both report paths given) or print candidate list. + + stdout: object with .write(str). If None, print() is used. + style_success: callable(str) -> str for success message. If None, identity. + """ + doc = get_document(doc_key) + source_blacklist = load_blacklist(source_blacklist_path) + reference_blacklist = load_blacklist(reference_blacklist_path) + + def write(line: str) -> None: + if stdout is not None: + stdout.write(line) + else: + print(line) + + success = (style_success if style_success is not None else lambda x: x) + + pairs = get_source_models_and_filters_for_document(doc) + candidates = [] + + for model, filter_kwargs in pairs: + qs = ( + model.objects.filter(**filter_kwargs) + .exclude(desc__isnull=True) + .exclude(desc="") + ) + for obj in qs: + pk = getattr(obj, "pk", None) + if pk is None: + continue + pk_str = str(pk) + if pk_str in source_blacklist: + continue + name = getattr(obj, "name", "") or "" + desc_len = len(obj.desc) if obj.desc else 0 + try: + crossref_count = obj.crossreferences.count() + except Exception: + crossref_count = 0 + candidates.append( + (model.__name__, pk_str, name, desc_len, crossref_count) + ) + + if sources_report_path and references_report_path: + sources_report, references_report = write_crossreference_report_files( + doc, + sources_report_path, + references_report_path, + source_blacklist=source_blacklist, + reference_blacklist=reference_blacklist, + ) + write(success( + f"Wrote sources report to {sources_report_path} and references report to {references_report_path}." + )) + write("") + write("Top 10 sources (most references):") + for i, entry in enumerate(sources_report[:10], 1): + count = len(entry["crossreference_to"]) + anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) + words = f" — {', '.join(anchors)}" if anchors else "" + write(f" {i}. {entry['url']} ({count}){words}") + write("") + write("Top 10 references (most sources):") + for i, entry in enumerate(references_report[:10], 1): + count = len(entry["crossreference_from"]) + anchors = sorted({m["anchor"] for m in entry.get("matches", [])}) + words = f" — {', '.join(anchors)}" if anchors else "" + write(f" {i}. {entry['url']} ({count}){words}") + return + + if sources_report_path or references_report_path: + raise ValueError( + "Provide both --sources-report and --references-report, or neither." + ) + + write(f"Document: {doc_key}") + write( + "Candidates (objects with description; source-blacklist applied):" + ) + for model_name, key, name, desc_len, crossref_count in candidates: + write( + f" {model_name}\t{key}\t{name}\t{desc_len}\t{crossref_count}" + ) + write(f"Total: {len(candidates)} candidates.") diff --git a/sources_report.json b/sources_report.json new file mode 100644 index 00000000..89f36768 --- /dev/null +++ b/sources_report.json @@ -0,0 +1,28702 @@ +[ + { + "url": "/v2/items/srd-2024_ring-of-elemental-command/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/items/srd-2024_chain/", + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_burning-hands/", + "/v2/spells/srd-2024_chain-lightning/", + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_create-or-destroy-water/", + "/v2/spells/srd-2024_earthquake/", + "/v2/spells/srd-2024_feather-fall/", + "/v2/spells/srd-2024_fire-storm/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_gust-of-wind/", + "/v2/spells/srd-2024_ice-storm/", + "/v2/spells/srd-2024_stone-shape/", + "/v2/spells/srd-2024_stoneskin/", + "/v2/spells/srd-2024_tsunami/", + "/v2/spells/srd-2024_wall-of-fire/", + "/v2/spells/srd-2024_wall-of-ice/", + "/v2/spells/srd-2024_wall-of-stone/", + "/v2/spells/srd-2024_water-walk/", + "/v2/spells/srd-2024_wind-wall/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/spells/srd-2024_burning-hands/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/spells/srd-2024_chain-lightning/", + "anchor": "Chain Lightning" + }, + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_create-or-destroy-water/", + "anchor": "Create or Destroy Water" + }, + { + "url": "/v2/spells/srd-2024_earthquake/", + "anchor": "Earthquake" + }, + { + "url": "/v2/spells/srd-2024_feather-fall/", + "anchor": "Feather Fall" + }, + { + "url": "/v2/spells/srd-2024_fire-storm/", + "anchor": "Fire Storm" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/spells/srd-2024_stone-shape/", + "anchor": "Stone Shape" + }, + { + "url": "/v2/spells/srd-2024_stoneskin/", + "anchor": "Stoneskin" + }, + { + "url": "/v2/spells/srd-2024_tsunami/", + "anchor": "Tsunami" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "anchor": "Wall of Ice" + }, + { + "url": "/v2/spells/srd-2024_wall-of-stone/", + "anchor": "Wall of Stone" + }, + { + "url": "/v2/spells/srd-2024_water-walk/", + "anchor": "Water Walk" + }, + { + "url": "/v2/spells/srd-2024_wind-wall/", + "anchor": "Wind Wall" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-the-magi/", + "crossreference_to": [ + "/v2/items/srd-2024_lock/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/spells/srd-2024_arcane-lock/", + "/v2/spells/srd-2024_conjure-elemental/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_enlargereduce/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_flaming-sphere/", + "/v2/spells/srd-2024_ice-storm/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_knock/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_passwall/", + "/v2/spells/srd-2024_plane-shift/", + "/v2/spells/srd-2024_protection-from-evil-and-good/", + "/v2/spells/srd-2024_telekinesis/", + "/v2/spells/srd-2024_wall-of-fire/", + "/v2/spells/srd-2024_web/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_lock/", + "anchor": "Lock" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/spells/srd-2024_arcane-lock/", + "anchor": "Arcane Lock" + }, + { + "url": "/v2/spells/srd-2024_conjure-elemental/", + "anchor": "Conjure Elemental" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_enlargereduce/", + "anchor": "Enlarge/Reduce" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_flaming-sphere/", + "anchor": "Flaming Sphere" + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_knock/", + "anchor": "Knock" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_passwall/", + "anchor": "Passwall" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_telekinesis/", + "anchor": "Telekinesis" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + }, + { + "url": "/v2/spells/srd-2024_web/", + "anchor": "Web" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_pact-magic/", + "/v2/items/srd-2024_book/", + "/v2/items/srd-2024_chain/", + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "/v2/spells/srd-2024_alter-self/", + "/v2/spells/srd-2024_arcane-eye/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_false-life/", + "/v2/spells/srd-2024_find-familiar/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_jump/", + "/v2/spells/srd-2024_levitate/", + "/v2/spells/srd-2024_mage-armor/", + "/v2/spells/srd-2024_silent-image/", + "/v2/spells/srd-2024_speak-with-dead/", + "/v2/spells/srd-2024_water-breathing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_book/", + "anchor": "Book" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Pact Magic" + }, + { + "url": "/v2/spells/srd-2024_alter-self/", + "anchor": "Alter Self" + }, + { + "url": "/v2/spells/srd-2024_arcane-eye/", + "anchor": "Arcane Eye" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_false-life/", + "anchor": "False Life" + }, + { + "url": "/v2/spells/srd-2024_find-familiar/", + "anchor": "Find Familiar" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + }, + { + "url": "/v2/spells/srd-2024_levitate/", + "anchor": "Levitate" + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/spells/srd-2024_silent-image/", + "anchor": "Silent Image" + }, + { + "url": "/v2/spells/srd-2024_speak-with-dead/", + "anchor": "Speak with Dead" + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "anchor": "Water Breathing" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_lich_spellcasting/", + "crossreference_to": [ + "/v2/items/srd-2024_chain/", + "/v2/spells/srd-2024_animate-dead/", + "/v2/spells/srd-2024_chain-lightning/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_dimension-door/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_finger-of-death/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_plane-shift/", + "/v2/spells/srd-2024_power-word-kill/", + "/v2/spells/srd-2024_prestidigitation/", + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/spells/srd-2024_animate-dead/", + "anchor": "Animate Dead" + }, + { + "url": "/v2/spells/srd-2024_chain-lightning/", + "anchor": "Chain Lightning" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_dimension-door/", + "anchor": "Dimension Door" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_finger-of-death/", + "anchor": "Finger of Death" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_power-word-kill/", + "anchor": "Power Word Kill" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_archmage_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_cone-of-cold/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_mage-armor/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_mind-blank/", + "/v2/spells/srd-2024_prestidigitation/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_teleport/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_mind-blank/", + "anchor": "Mind Blank" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_teleport/", + "anchor": "Teleport" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_chain-mail/", + "/v2/items/srd-2024_chain/", + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_flail/", + "/v2/items/srd-2024_greatsword/", + "/v2/items/srd-2024_leather-armor/", + "/v2/items/srd-2024_longbow/", + "/v2/items/srd-2024_quiver/", + "/v2/items/srd-2024_scimitar/", + "/v2/items/srd-2024_shortsword/", + "/v2/items/srd-2024_studded-leather-armor/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_chain-mail/", + "anchor": "Chain Mail" + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Dungeoneer's Pack" + }, + { + "url": "/v2/items/srd-2024_flail/", + "anchor": "Flail" + }, + { + "url": "/v2/items/srd-2024_greatsword/", + "anchor": "Greatsword" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + }, + { + "url": "/v2/items/srd-2024_quiver/", + "anchor": "Quiver" + }, + { + "url": "/v2/items/srd-2024_scimitar/", + "anchor": "Scimitar" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor/", + "anchor": "Studded Leather Armor" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "anchor": "Boon of Dimensional Travel" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Travel" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-combat-prowess/", + "/v2/rulesets/srd-2024_combat/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-combat-prowess/", + "anchor": "Boon of Combat Prowess" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "anchor": "Boon of Dimensional Travel" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Travel" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "anchor": "Boon of Dimensional Travel" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Travel" + } + ] + }, + { + "url": "/v2/items/srd-2024_leatherworkers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_case-map-or-scroll/", + "/v2/items/srd-2024_hide-armor/", + "/v2/items/srd-2024_leather-armor/", + "/v2/items/srd-2024_map/", + "/v2/items/srd-2024_parchment/", + "/v2/items/srd-2024_pouch/", + "/v2/items/srd-2024_quiver/", + "/v2/items/srd-2024_sling/", + "/v2/items/srd-2024_studded-leather-armor/", + "/v2/items/srd-2024_waterskin/", + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_case-map-or-scroll/", + "anchor": "Case, Map or Scroll" + }, + { + "url": "/v2/items/srd-2024_hide-armor/", + "anchor": "Hide Armor" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/items/srd-2024_map/", + "anchor": "Map" + }, + { + "url": "/v2/items/srd-2024_parchment/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_pouch/", + "anchor": "Pouch" + }, + { + "url": "/v2/items/srd-2024_quiver/", + "anchor": "Quiver" + }, + { + "url": "/v2/items/srd-2024_sling/", + "anchor": "Sling" + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor/", + "anchor": "Studded Leather Armor" + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "anchor": "Waterskin" + }, + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_smiths-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_ball-bearings/", + "/v2/items/srd-2024_bucket/", + "/v2/items/srd-2024_caltrops/", + "/v2/items/srd-2024_chain/", + "/v2/items/srd-2024_club/", + "/v2/items/srd-2024_crowbar/", + "/v2/items/srd-2024_grappling-hook/", + "/v2/items/srd-2024_greatclub/", + "/v2/items/srd-2024_pot-iron/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_sling/", + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ball-bearings/", + "anchor": "Ball Bearings" + }, + { + "url": "/v2/items/srd-2024_bucket/", + "anchor": "Bucket" + }, + { + "url": "/v2/items/srd-2024_caltrops/", + "anchor": "Caltrops" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_crowbar/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_grappling-hook/", + "anchor": "Grappling Hook" + }, + { + "url": "/v2/items/srd-2024_greatclub/", + "anchor": "Greatclub" + }, + { + "url": "/v2/items/srd-2024_pot-iron/", + "anchor": "Pot, Iron" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_sling/", + "anchor": "Sling" + }, + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/species/srd-2024_elf_elven-lineage/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard/", + "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "/v2/spells/srd-2024_dancing-lights/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_darkvision/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_druidcraft/", + "/v2/spells/srd-2024_faerie-fire/", + "/v2/spells/srd-2024_longstrider/", + "/v2/spells/srd-2024_misty-step/", + "/v2/spells/srd-2024_pass-without-trace/", + "/v2/spells/srd-2024_prestidigitation/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + }, + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/spells/srd-2024_faerie-fire/", + "anchor": "Faerie Fire" + }, + { + "url": "/v2/spells/srd-2024_longstrider/", + "anchor": "Longstrider" + }, + { + "url": "/v2/spells/srd-2024_misty-step/", + "anchor": "Misty Step" + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-irresistible-offense/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense/", + "anchor": "Boon of Irresistible Offense" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-spell-recall/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall/", + "anchor": "Boon of Spell Recall" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-fate/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-fate/", + "anchor": "Boon of Fate" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-irresistible-offense/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense/", + "anchor": "Boon of Irresistible Offense" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_spells/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/", + "/v2/spells/srd-2024_aid/", + "/v2/spells/srd-2024_beacon-of-hope/", + "/v2/spells/srd-2024_commune/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_flame-strike/", + "/v2/spells/srd-2024_freedom-of-movement/", + "/v2/spells/srd-2024_guardian-of-faith/", + "/v2/spells/srd-2024_protection-from-evil-and-good/", + "/v2/spells/srd-2024_shield-of-faith/", + "/v2/spells/srd-2024_shield/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + }, + { + "url": "/v2/spells/srd-2024_aid/", + "anchor": "Aid" + }, + { + "url": "/v2/spells/srd-2024_beacon-of-hope/", + "anchor": "Beacon of Hope" + }, + { + "url": "/v2/spells/srd-2024_commune/", + "anchor": "Commune" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/spells/srd-2024_freedom-of-movement/", + "anchor": "Freedom of Movement" + }, + { + "url": "/v2/spells/srd-2024_guardian-of-faith/", + "anchor": "Guardian of Faith" + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "anchor": "Protection from Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield-of-faith/", + "anchor": "Shield of Faith" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-the-night-spirit/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit/", + "anchor": "Boon of the Night Spirit" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/", + "/v2/feats/srd-2024_boon-of-fate/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-fate/", + "anchor": "Boon of Fate" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiend-spells/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock/", + "/v2/spells/srd-2024_burning-hands/", + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_fire-shield/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_insect-plague/", + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_shield/", + "/v2/spells/srd-2024_stinking-cloud/", + "/v2/spells/srd-2024_suggestion/", + "/v2/spells/srd-2024_wall-of-fire/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock/", + "anchor": "Warlock" + }, + { + "url": "/v2/spells/srd-2024_burning-hands/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_fire-shield/", + "anchor": "Fire Shield" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Geas" + }, + { + "url": "/v2/spells/srd-2024_insect-plague/", + "anchor": "Insect Plague" + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "anchor": "Stinking Cloud" + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "anchor": "Suggestion" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_ability-score-improvement/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "/v2/classes/srd-2024_bard_ability-score-improvement/", + "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "/v2/classes/srd-2024_druid_ability-score-improvement/", + "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "/v2/classes/srd-2024_monk_ability-score-improvement/", + "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "/v2/feats/srd-2024_ability-score-improvement/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_barbarian_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_bard_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_cleric_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_druid_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_fighter_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_monk_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_paladin_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_ranger_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_rogue_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_ability-score-improvement/", + "anchor": "Ability Score Improvement" + }, + { + "url": "/v2/classes/srd-2024_warlock_ability-score-improvement/", + "anchor": "Ability Score Improvement" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_paladin_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/feats/srd-2024_boon-of-spell-recall/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall/", + "anchor": "Boon of Spell Recall" + }, + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/items/srd-2024_tinkers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_bell/", + "/v2/items/srd-2024_flask/", + "/v2/items/srd-2024_hunting-trap/", + "/v2/items/srd-2024_lock/", + "/v2/items/srd-2024_manacles/", + "/v2/items/srd-2024_mirror/", + "/v2/items/srd-2024_musket/", + "/v2/items/srd-2024_pistol/", + "/v2/items/srd-2024_shovel/", + "/v2/items/srd-2024_signal-whistle/", + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bell/", + "anchor": "Bell" + }, + { + "url": "/v2/items/srd-2024_flask/", + "anchor": "Flask" + }, + { + "url": "/v2/items/srd-2024_hunting-trap/", + "anchor": "Hunting Trap" + }, + { + "url": "/v2/items/srd-2024_lock/", + "anchor": "Lock" + }, + { + "url": "/v2/items/srd-2024_manacles/", + "anchor": "Manacles" + }, + { + "url": "/v2/items/srd-2024_mirror/", + "anchor": "Mirror" + }, + { + "url": "/v2/items/srd-2024_musket/", + "anchor": "Musket" + }, + { + "url": "/v2/items/srd-2024_pistol/", + "anchor": "Pistol" + }, + { + "url": "/v2/items/srd-2024_shovel/", + "anchor": "Shovel" + }, + { + "url": "/v2/items/srd-2024_signal-whistle/", + "anchor": "Signal Whistle" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_legend-lore/", + "/v2/spells/srd-2024_locate-object/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_plane-shift/", + "/v2/spells/srd-2024_prestidigitation/", + "/v2/spells/srd-2024_remove-curse/", + "/v2/spells/srd-2024_tongues/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_legend-lore/", + "anchor": "Legend Lore" + }, + { + "url": "/v2/spells/srd-2024_locate-object/", + "anchor": "Locate Object" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/spells/srd-2024_tongues/", + "anchor": "Tongues" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_epic-boon/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_epic-boon/", + "/v2/classes/srd-2024_bard_epic-boon/", + "/v2/classes/srd-2024_cleric_epic-boon/", + "/v2/classes/srd-2024_druid_epic-boon/", + "/v2/classes/srd-2024_fighter_epic-boon/", + "/v2/classes/srd-2024_monk_epic-boon/", + "/v2/classes/srd-2024_ranger_epic-boon/", + "/v2/classes/srd-2024_rogue_epic-boon/", + "/v2/classes/srd-2024_sorcerer_epic-boon/", + "/v2/classes/srd-2024_warlock_epic-boon/", + "/v2/classes/srd-2024_wizard_epic-boon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_bard_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_cleric_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_druid_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_fighter_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_monk_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_ranger_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_rogue_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_warlock_epic-boon/", + "anchor": "Epic Boon" + }, + { + "url": "/v2/classes/srd-2024_wizard_epic-boon/", + "anchor": "Epic Boon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_core-traits/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_leather-armor/", + "/v2/items/srd-2024_longbow/", + "/v2/items/srd-2024_quiver/", + "/v2/items/srd-2024_scimitar/", + "/v2/items/srd-2024_shortsword/", + "/v2/items/srd-2024_studded-leather-armor/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + }, + { + "url": "/v2/items/srd-2024_quiver/", + "anchor": "Quiver" + }, + { + "url": "/v2/items/srd-2024_scimitar/", + "anchor": "Scimitar" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor/", + "anchor": "Studded Leather Armor" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-spells/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer/", + "/v2/spells/srd-2024_alter-self/", + "/v2/spells/srd-2024_arcane-eye/", + "/v2/spells/srd-2024_charm-monster/", + "/v2/spells/srd-2024_chromatic-orb/", + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_dragons-breath/", + "/v2/spells/srd-2024_fear/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_legend-lore/", + "/v2/spells/srd-2024_summon-dragon/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer/", + "anchor": "Sorcerer" + }, + { + "url": "/v2/spells/srd-2024_alter-self/", + "anchor": "Alter Self" + }, + { + "url": "/v2/spells/srd-2024_arcane-eye/", + "anchor": "Arcane Eye" + }, + { + "url": "/v2/spells/srd-2024_charm-monster/", + "anchor": "Charm Monster" + }, + { + "url": "/v2/spells/srd-2024_chromatic-orb/", + "anchor": "Chromatic Orb" + }, + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_dragons-breath/", + "anchor": "Dragon's Breath" + }, + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_legend-lore/", + "anchor": "Legend Lore" + }, + { + "url": "/v2/spells/srd-2024_summon-dragon/", + "anchor": "Summon Dragon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "/v2/items/srd-2024_spell-scroll/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_feather-fall/", + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_mage-armor/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_magic-missile/", + "/v2/spells/srd-2024_ray-of-frost/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_spell-scroll/", + "anchor": "Spell Scroll" + }, + { + "url": "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_feather-fall/", + "anchor": "Feather Fall" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/spells/srd-2024_ray-of-frost/", + "anchor": "Ray of Frost" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-power/", + "crossreference_to": [ + "/v2/items/srd-2024_quarterstaff/", + "/v2/spells/srd-2024_cone-of-cold/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_globe-of-invulnerability/", + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_levitate/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_magic-missile/", + "/v2/spells/srd-2024_ray-of-enfeeblement/", + "/v2/spells/srd-2024_wall-of-force/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_globe-of-invulnerability/", + "anchor": "Globe of Invulnerability" + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_levitate/", + "anchor": "Levitate" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/spells/srd-2024_ray-of-enfeeblement/", + "anchor": "Ray of Enfeeblement" + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "anchor": "Wall of Force" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-the-woodlands/", + "crossreference_to": [ + "/v2/items/srd-2024_quarterstaff/", + "/v2/spells/srd-2024_animal-friendship/", + "/v2/spells/srd-2024_awaken/", + "/v2/spells/srd-2024_barkskin/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_locate-animals-or-plants/", + "/v2/spells/srd-2024_pass-without-trace/", + "/v2/spells/srd-2024_speak-with-animals/", + "/v2/spells/srd-2024_speak-with-plants/", + "/v2/spells/srd-2024_wall-of-thorns/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/spells/srd-2024_awaken/", + "anchor": "Awaken" + }, + { + "url": "/v2/spells/srd-2024_barkskin/", + "anchor": "Barkskin" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_locate-animals-or-plants/", + "anchor": "Locate Animals or Plants" + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/spells/srd-2024_speak-with-plants/", + "anchor": "Speak with Plants" + }, + { + "url": "/v2/spells/srd-2024_wall-of-thorns/", + "anchor": "Wall of Thorns" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-wonder/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_faerie-fire/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_gust-of-wind/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_polymorph/", + "/v2/spells/srd-2024_slow/", + "/v2/spells/srd-2024_stinking-cloud/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_faerie-fire/", + "anchor": "Faerie Fire" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Polymorph" + }, + { + "url": "/v2/spells/srd-2024_slow/", + "anchor": "Slow" + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "anchor": "Stinking Cloud" + } + ] + }, + { + "url": "/v2/items/srd-2024_weavers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_basket/", + "/v2/items/srd-2024_bedroll/", + "/v2/items/srd-2024_blanket/", + "/v2/items/srd-2024_net/", + "/v2/items/srd-2024_padded-armor/", + "/v2/items/srd-2024_robe/", + "/v2/items/srd-2024_rope/", + "/v2/items/srd-2024_sack/", + "/v2/items/srd-2024_string/", + "/v2/items/srd-2024_tent/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_basket/", + "anchor": "Basket" + }, + { + "url": "/v2/items/srd-2024_bedroll/", + "anchor": "Bedroll" + }, + { + "url": "/v2/items/srd-2024_blanket/", + "anchor": "Blanket" + }, + { + "url": "/v2/items/srd-2024_net/", + "anchor": "Net" + }, + { + "url": "/v2/items/srd-2024_padded-armor/", + "anchor": "Padded Armor" + }, + { + "url": "/v2/items/srd-2024_robe/", + "anchor": "Robe" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_sack/", + "anchor": "Sack" + }, + { + "url": "/v2/items/srd-2024_string/", + "anchor": "String" + }, + { + "url": "/v2/items/srd-2024_tent/", + "anchor": "Tent" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_djinni_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_create-food-and-water/", + "/v2/spells/srd-2024_creation/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_plane-shift/", + "/v2/spells/srd-2024_tongues/", + "/v2/spells/srd-2024_wind-walk/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_create-food-and-water/", + "anchor": "Create Food and Water" + }, + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_tongues/", + "anchor": "Tongues" + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "anchor": "Wind Walk" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_cleric-spell-list/", + "/v2/spells/srd-2024_bless/", + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_guidance/", + "/v2/spells/srd-2024_guiding-bolt/", + "/v2/spells/srd-2024_sacred-flame/", + "/v2/spells/srd-2024_shield-of-faith/", + "/v2/spells/srd-2024_shield/", + "/v2/spells/srd-2024_symbol/", + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_cleric-spell-list/", + "anchor": "Cleric Spell List" + }, + { + "url": "/v2/spells/srd-2024_bless/", + "anchor": "Bless" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_guidance/", + "anchor": "Guidance" + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/spells/srd-2024_sacred-flame/", + "anchor": "Sacred Flame" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield-of-faith/", + "anchor": "Shield of Faith" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_burglars-pack/", + "/v2/items/srd-2024_leather-armor/", + "/v2/items/srd-2024_quiver/", + "/v2/items/srd-2024_shortbow/", + "/v2/items/srd-2024_shortsword/", + "/v2/items/srd-2024_thieves-tools/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_finesse-wp/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_finesse-wp/", + "anchor": "Finesse" + }, + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_burglars-pack/", + "anchor": "Burglar's Pack" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/items/srd-2024_quiver/", + "anchor": "Quiver" + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "anchor": "Shortbow" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + }, + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/items/srd-2024_burglars-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_ball-bearings/", + "/v2/items/srd-2024_bell/", + "/v2/items/srd-2024_crowbar/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_rations/", + "/v2/items/srd-2024_rope/", + "/v2/items/srd-2024_tinderbox/", + "/v2/items/srd-2024_waterskin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_ball-bearings/", + "anchor": "Ball Bearings" + }, + { + "url": "/v2/items/srd-2024_bell/", + "anchor": "Bell" + }, + { + "url": "/v2/items/srd-2024_crowbar/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "anchor": "Waterskin" + } + ] + }, + { + "url": "/v2/items/srd-2024_diplomats-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_chest/", + "/v2/items/srd-2024_ink/", + "/v2/items/srd-2024_lamp/", + "/v2/items/srd-2024_map/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_paper/", + "/v2/items/srd-2024_parchment/", + "/v2/items/srd-2024_perfume/", + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_chest/", + "anchor": "Chest" + }, + { + "url": "/v2/items/srd-2024_ink/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_map/", + "anchor": "Map" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_paper/", + "anchor": "Paper" + }, + { + "url": "/v2/items/srd-2024_parchment/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_perfume/", + "anchor": "Perfume" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + } + ] + }, + { + "url": "/v2/items/srd-2024_robe-of-useful-items/", + "crossreference_to": [ + "/v2/items/srd-2024_dagger/", + "/v2/items/srd-2024_mirror/", + "/v2/items/srd-2024_pole/", + "/v2/items/srd-2024_potions-of-healing/", + "/v2/items/srd-2024_rope/", + "/v2/items/srd-2024_rowboat/", + "/v2/items/srd-2024_sack/", + "/v2/items/srd-2024_spell-scroll/", + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dagger/", + "anchor": "Dagger" + }, + { + "url": "/v2/items/srd-2024_mirror/", + "anchor": "Mirror" + }, + { + "url": "/v2/items/srd-2024_pole/", + "anchor": "Pole" + }, + { + "url": "/v2/items/srd-2024_potions-of-healing/", + "anchor": "Potions of Healing" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_rowboat/", + "anchor": "Rowboat" + }, + { + "url": "/v2/items/srd-2024_sack/", + "anchor": "Sack" + }, + { + "url": "/v2/items/srd-2024_spell-scroll/", + "anchor": "Spell Scroll" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard_scholar/", + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_book/", + "/v2/items/srd-2024_ink-pen/", + "/v2/items/srd-2024_ink/", + "/v2/items/srd-2024_lamp/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_parchment/", + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_book/", + "anchor": "Book" + }, + { + "url": "/v2/items/srd-2024_ink/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_ink-pen/", + "anchor": "Ink Pen" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_parchment/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/classes/srd-2024_wizard_scholar/", + "anchor": "Scholar" + } + ] + }, + { + "url": "/v2/items/srd-2024_woodcarvers-tools/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/items/srd-2024_club/", + "/v2/items/srd-2024_greatclub/", + "/v2/items/srd-2024_ink-pen/", + "/v2/items/srd-2024_ink/", + "/v2/items/srd-2024_musket/", + "/v2/items/srd-2024_pistol/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_sling/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_greatclub/", + "anchor": "Greatclub" + }, + { + "url": "/v2/items/srd-2024_ink/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_ink-pen/", + "anchor": "Ink Pen" + }, + { + "url": "/v2/items/srd-2024_musket/", + "anchor": "Musket" + }, + { + "url": "/v2/items/srd-2024_pistol/", + "anchor": "Pistol" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_sling/", + "anchor": "Sling" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + } + ] + }, + { + "url": "/v2/species/srd-2024_tiefling_fiendish-legacy/", + "crossreference_to": [ + "/v2/spells/srd-2024_chill-touch/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_false-life/", + "/v2/spells/srd-2024_fire-bolt/", + "/v2/spells/srd-2024_hellish-rebuke/", + "/v2/spells/srd-2024_hold-person/", + "/v2/spells/srd-2024_poison-spray/", + "/v2/spells/srd-2024_ray-of-enfeeblement/", + "/v2/spells/srd-2024_ray-of-sickness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_chill-touch/", + "anchor": "Chill Touch" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_false-life/", + "anchor": "False Life" + }, + { + "url": "/v2/spells/srd-2024_fire-bolt/", + "anchor": "Fire Bolt" + }, + { + "url": "/v2/spells/srd-2024_hellish-rebuke/", + "anchor": "Hellish Rebuke" + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "anchor": "Hold Person" + }, + { + "url": "/v2/spells/srd-2024_poison-spray/", + "anchor": "Poison Spray" + }, + { + "url": "/v2/spells/srd-2024_ray-of-enfeeblement/", + "anchor": "Ray of Enfeeblement" + }, + { + "url": "/v2/spells/srd-2024_ray-of-sickness/", + "anchor": "Ray of Sickness" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-water/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_guiding-bolt/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_speak-with-animals/", + "/v2/spells/srd-2024_thaumaturgy/", + "/v2/spells/srd-2024_water-breathing/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-water/", + "anchor": "Control Water" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "anchor": "Water Breathing" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_couatl_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_create-food-and-water/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_dream/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_create-food-and-water/", + "anchor": "Create Food and Water" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_dream/", + "anchor": "Dream" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mage_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_cone-of-cold/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_mage-armor/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_prestidigitation/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_plane-shift/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_core-traits/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_herbalism-kit/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_shield/", + "/v2/items/srd-2024_sickle/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "anchor": "Herbalism Kit" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_sickle/", + "anchor": "Sickle" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/items/srd-2024_alchemists-supplies/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/items/srd-2024_alchemists-fire/", + "/v2/items/srd-2024_component-pouch/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_paper/", + "/v2/items/srd-2024_perfume/", + "/v2/items/srd-2024_pouch/", + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_alchemists-fire/", + "anchor": "Alchemist's Fire" + }, + { + "url": "/v2/items/srd-2024_component-pouch/", + "anchor": "Component Pouch" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_paper/", + "anchor": "Paper" + }, + { + "url": "/v2/items/srd-2024_perfume/", + "anchor": "Perfume" + }, + { + "url": "/v2/items/srd-2024_pouch/", + "anchor": "Pouch" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_carpenters-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_barrel/", + "/v2/items/srd-2024_chest/", + "/v2/items/srd-2024_club/", + "/v2/items/srd-2024_greatclub/", + "/v2/items/srd-2024_ladder/", + "/v2/items/srd-2024_pole/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_torch/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_barrel/", + "anchor": "Barrel" + }, + { + "url": "/v2/items/srd-2024_chest/", + "anchor": "Chest" + }, + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_greatclub/", + "anchor": "Greatclub" + }, + { + "url": "/v2/items/srd-2024_ladder/", + "anchor": "Ladder" + }, + { + "url": "/v2/items/srd-2024_pole/", + "anchor": "Pole" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_torch/", + "anchor": "Torch" + } + ] + }, + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_caltrops/", + "/v2/items/srd-2024_crowbar/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_rations/", + "/v2/items/srd-2024_rope/", + "/v2/items/srd-2024_tinderbox/", + "/v2/items/srd-2024_waterskin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_caltrops/", + "anchor": "Caltrops" + }, + { + "url": "/v2/items/srd-2024_crowbar/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "anchor": "Waterskin" + } + ] + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_bedroll/", + "/v2/items/srd-2024_bell/", + "/v2/items/srd-2024_mirror/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_rations/", + "/v2/items/srd-2024_tinderbox/", + "/v2/items/srd-2024_waterskin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_bedroll/", + "anchor": "Bedroll" + }, + { + "url": "/v2/items/srd-2024_bell/", + "anchor": "Bell" + }, + { + "url": "/v2/items/srd-2024_mirror/", + "anchor": "Mirror" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "anchor": "Waterskin" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_ice-knife/", + "/v2/spells/srd-2024_ice-storm/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_teleport/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_ice-knife/", + "anchor": "Ice Knife" + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_teleport/", + "anchor": "Teleport" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_elementalism/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_plane-shift/", + "/v2/spells/srd-2024_tongues/", + "/v2/spells/srd-2024_wall-of-fire/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_elementalism/", + "anchor": "Elementalism" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + }, + { + "url": "/v2/spells/srd-2024_tongues/", + "anchor": "Tongues" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_dimension-door/", + "/v2/spells/srd-2024_hold-person/", + "/v2/spells/srd-2024_lightning-bolt/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_water-breathing/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_dimension-door/", + "anchor": "Dimension Door" + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "anchor": "Hold Person" + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "anchor": "Water Breathing" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bard-spell-list/", + "/v2/rules/srd-2024_damage-and-healing_healing/", + "/v2/spells/srd-2024_charm-person/", + "/v2/spells/srd-2024_color-spray/", + "/v2/spells/srd-2024_dancing-lights/", + "/v2/spells/srd-2024_dissonant-whispers/", + "/v2/spells/srd-2024_healing-word/", + "/v2/spells/srd-2024_vicious-mockery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bard-spell-list/", + "anchor": "Bard Spell List" + }, + { + "url": "/v2/spells/srd-2024_charm-person/", + "anchor": "Charm Person" + }, + { + "url": "/v2/spells/srd-2024_color-spray/", + "anchor": "Color Spray" + }, + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_dissonant-whispers/", + "anchor": "Dissonant Whispers" + }, + { + "url": "/v2/spells/srd-2024_healing-word/", + "anchor": "Healing Word" + }, + { + "url": "/v2/spells/srd-2024_vicious-mockery/", + "anchor": "Vicious Mockery" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_chain-shirt/", + "/v2/items/srd-2024_chain/", + "/v2/items/srd-2024_mace/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_shield/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_chain-shirt/", + "anchor": "Chain Shirt" + }, + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Priest's Pack" + }, + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_chain-mail/", + "/v2/items/srd-2024_chain/", + "/v2/items/srd-2024_longsword/", + "/v2/items/srd-2024_priests-pack/", + "/v2/items/srd-2024_shield/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_chain-mail/", + "anchor": "Chain Mail" + }, + { + "url": "/v2/items/srd-2024_longsword/", + "anchor": "Longsword" + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "anchor": "Priest's Pack" + }, + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_core-traits/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard_scholar/", + "/v2/items/srd-2024_book/", + "/v2/items/srd-2024_leather-armor/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/items/srd-2024_sickle/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_book/", + "anchor": "Book" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Scholar's Pack" + }, + { + "url": "/v2/items/srd-2024_sickle/", + "anchor": "Sickle" + }, + { + "url": "/v2/classes/srd-2024_wizard_scholar/", + "anchor": "Scholar" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/items/srd-2024_dragon-orb/", + "crossreference_to": [ + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_daylight/", + "/v2/spells/srd-2024_death-ward/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_disintegrate/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_suggestion/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "anchor": "Daylight" + }, + { + "url": "/v2/spells/srd-2024_death-ward/", + "anchor": "Death Ward" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Disintegrate" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "anchor": "Suggestion" + } + ] + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_bedroll/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_rations/", + "/v2/items/srd-2024_rope/", + "/v2/items/srd-2024_tinderbox/", + "/v2/items/srd-2024_waterskin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_bedroll/", + "anchor": "Bedroll" + }, + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "anchor": "Waterskin" + } + ] + }, + { + "url": "/v2/items/srd-2024_mysterious-deck/", + "crossreference_to": [ + "/v2/backgrounds/srd-2024_sage/", + "/v2/classes/srd-2024_rogue/", + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "/v2/rulesets/srd-2024_d20-tests/", + "/v2/rulesets/srd-2024_proficiency/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/backgrounds/srd-2024_sage/", + "anchor": "Sage" + }, + { + "url": "/v2/classes/srd-2024_rogue/", + "anchor": "Rogue" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + }, + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_priests-pack/", + "crossreference_to": [ + "/v2/items/srd-2024_backpack/", + "/v2/items/srd-2024_blanket/", + "/v2/items/srd-2024_holy-water/", + "/v2/items/srd-2024_lamp/", + "/v2/items/srd-2024_rations/", + "/v2/items/srd-2024_robe/", + "/v2/items/srd-2024_tinderbox/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_backpack/", + "anchor": "Backpack" + }, + { + "url": "/v2/items/srd-2024_blanket/", + "anchor": "Blanket" + }, + { + "url": "/v2/items/srd-2024_holy-water/", + "anchor": "Holy Water" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + }, + { + "url": "/v2/items/srd-2024_robe/", + "anchor": "Robe" + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "anchor": "Tinderbox" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_guiding-bolt/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_speak-with-animals/", + "/v2/spells/srd-2024_thaumaturgy/", + "/v2/spells/srd-2024_water-breathing/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "anchor": "Water Breathing" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_spellcasting/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_acid-arrow/", + "/v2/spells/srd-2024_create-undead/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fear/", + "/v2/spells/srd-2024_speak-with-dead/", + "/v2/spells/srd-2024_vitriolic-sphere/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "anchor": "Acid Arrow" + }, + { + "url": "/v2/spells/srd-2024_create-undead/", + "anchor": "Create Undead" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_speak-with-dead/", + "anchor": "Speak with Dead" + }, + { + "url": "/v2/spells/srd-2024_vitriolic-sphere/", + "anchor": "Vitriolic Sphere" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_mind-spike/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_project-image/", + "/v2/spells/srd-2024_shapechange/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_project-image/", + "anchor": "Project Image" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_heroes-feast/", + "/v2/spells/srd-2024_thaumaturgy/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_heroes-feast/", + "anchor": "Heroes' Feast" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_calm-emotions/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_dispel-evil-and-good/", + "/v2/spells/srd-2024_druidcraft/", + "/v2/spells/srd-2024_entangle/", + "/v2/spells/srd-2024_pass-without-trace/", + "/v2/spells/srd-2024_word-of-recall/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_calm-emotions/", + "anchor": "Calm Emotions" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/spells/srd-2024_entangle/", + "anchor": "Entangle" + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "anchor": "Pass without Trace" + }, + { + "url": "/v2/spells/srd-2024_word-of-recall/", + "anchor": "Word of Recall" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druid-spell-list/", + "/v2/classes/srd-2024_druid_druidic/", + "/v2/spells/srd-2024_animal-friendship/", + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_druidcraft/", + "/v2/spells/srd-2024_faerie-fire/", + "/v2/spells/srd-2024_produce-flame/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druid-spell-list/", + "anchor": "Druid Spell List" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/spells/srd-2024_faerie-fire/", + "anchor": "Faerie Fire" + }, + { + "url": "/v2/spells/srd-2024_produce-flame/", + "anchor": "Produce Flame" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_sorcerer-spell-list/", + "/v2/spells/srd-2024_burning-hands/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_prestidigitation/", + "/v2/spells/srd-2024_shocking-grasp/", + "/v2/spells/srd-2024_sorcerous-burst/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerer-spell-list/", + "anchor": "Sorcerer Spell List" + }, + { + "url": "/v2/spells/srd-2024_burning-hands/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/spells/srd-2024_shocking-grasp/", + "anchor": "Shocking Grasp" + }, + { + "url": "/v2/spells/srd-2024_sorcerous-burst/", + "anchor": "Sorcerous Burst" + } + ] + }, + { + "url": "/v2/items/srd-2024_cube-of-force/", + "crossreference_to": [ + "/v2/spells/srd-2024_mage-armor/", + "/v2/spells/srd-2024_private-sanctum/", + "/v2/spells/srd-2024_resilient-sphere/", + "/v2/spells/srd-2024_shield/", + "/v2/spells/srd-2024_tiny-hut/", + "/v2/spells/srd-2024_wall-of-force/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mage-armor/", + "anchor": "Mage Armor" + }, + { + "url": "/v2/spells/srd-2024_private-sanctum/", + "anchor": "Private Sanctum" + }, + { + "url": "/v2/spells/srd-2024_resilient-sphere/", + "anchor": "Resilient Sphere" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_tiny-hut/", + "anchor": "Tiny Hut" + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "anchor": "Wall of Force" + } + ] + }, + { + "url": "/v2/items/srd-2024_helm-of-brilliance/", + "crossreference_to": [ + "/v2/spells/srd-2024_daylight/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_prismatic-spray/", + "/v2/spells/srd-2024_wall-of-fire/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "anchor": "Daylight" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_prismatic-spray/", + "anchor": "Prismatic Spray" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/items/srd-2024_necklace-of-prayer-beads/", + "crossreference_to": [ + "/v2/spells/srd-2024_bless/", + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_guardian-of-faith/", + "/v2/spells/srd-2024_shining-smite/", + "/v2/spells/srd-2024_wind-walk/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_bless/", + "anchor": "Bless" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_guardian-of-faith/", + "anchor": "Guardian of Faith" + }, + { + "url": "/v2/spells/srd-2024_shining-smite/", + "anchor": "Shining Smite" + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "anchor": "Wind Walk" + } + ] + }, + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "crossreference_to": [ + "/v2/items/srd-2024_oil-of-etherealness/", + "/v2/items/srd-2024_oil-of-slipperiness/", + "/v2/items/srd-2024_oil/", + "/v2/items/srd-2024_universal-solvent/", + "/v2/spells/srd-2024_etherealness/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + }, + { + "url": "/v2/items/srd-2024_oil-of-etherealness/", + "anchor": "Oil of Etherealness" + }, + { + "url": "/v2/items/srd-2024_oil-of-slipperiness/", + "anchor": "Oil of Slipperiness" + }, + { + "url": "/v2/items/srd-2024_universal-solvent/", + "anchor": "Universal Solvent" + }, + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_spellcasting/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_acid-arrow/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fear/", + "/v2/spells/srd-2024_speak-with-dead/", + "/v2/spells/srd-2024_vitriolic-sphere/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "anchor": "Acid Arrow" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_speak-with-dead/", + "anchor": "Speak with Dead" + }, + { + "url": "/v2/spells/srd-2024_vitriolic-sphere/", + "anchor": "Vitriolic Sphere" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_sending/", + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_sending/", + "anchor": "Sending" + }, + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_mind-spike/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_shapechange/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_ice-knife/", + "/v2/spells/srd-2024_ice-storm/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_ice-knife/", + "anchor": "Ice Knife" + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_mage-hand/", + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_sending/", + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "anchor": "Mage Hand" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_sending/", + "anchor": "Sending" + }, + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_flame-strike/", + "/v2/spells/srd-2024_guiding-bolt/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_word-of-recall/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_word-of-recall/", + "anchor": "Word of Recall" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fog-cloud/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_telekinesis/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_telekinesis/", + "anchor": "Telekinesis" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_druid_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_animal-messenger/", + "/v2/spells/srd-2024_druidcraft/", + "/v2/spells/srd-2024_entangle/", + "/v2/spells/srd-2024_longstrider/", + "/v2/spells/srd-2024_moonbeam/", + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animal-messenger/", + "anchor": "Animal Messenger" + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/spells/srd-2024_entangle/", + "anchor": "Entangle" + }, + { + "url": "/v2/spells/srd-2024_longstrider/", + "anchor": "Longstrider" + }, + { + "url": "/v2/spells/srd-2024_moonbeam/", + "anchor": "Moonbeam" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_confusion/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_power-word-stun/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_confusion/", + "anchor": "Confusion" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_power-word-stun/", + "anchor": "Power Word Stun" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_clairvoyance/", + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_flame-strike/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_thaumaturgy/", + "/v2/spells/srd-2024_true-seeing/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "anchor": "Clairvoyance" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Geas" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + }, + { + "url": "/v2/spells/srd-2024_true-seeing/", + "anchor": "True Seeing" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "/v2/classes/srd-2024_fighter_weapon-mastery/", + "/v2/classes/srd-2024_paladin_weapon-mastery/", + "/v2/classes/srd-2024_ranger_weapon-mastery/", + "/v2/classes/srd-2024_rogue_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_paladin_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_ranger_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_rogue_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_preserve-life/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "/v2/classes/srd-2024_paladin_weapon-mastery/", + "/v2/classes/srd-2024_ranger_weapon-mastery/", + "/v2/classes/srd-2024_rogue_weapon-mastery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_paladin_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_ranger_weapon-mastery/", + "anchor": "Weapon Mastery" + }, + { + "url": "/v2/classes/srd-2024_rogue_weapon-mastery/", + "anchor": "Weapon Mastery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_slot-level/", + "/v2/classes/srd-2024_warlock_warlock-spell-list/", + "/v2/spells/srd-2024_charm-person/", + "/v2/spells/srd-2024_eldritch-blast/", + "/v2/spells/srd-2024_hex/", + "/v2/spells/srd-2024_prestidigitation/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_slot-level/", + "anchor": "Slot Level" + }, + { + "url": "/v2/classes/srd-2024_warlock_warlock-spell-list/", + "anchor": "Warlock Spell List" + }, + { + "url": "/v2/spells/srd-2024_charm-person/", + "anchor": "Charm Person" + }, + { + "url": "/v2/spells/srd-2024_eldritch-blast/", + "anchor": "Eldritch Blast" + }, + { + "url": "/v2/spells/srd-2024_hex/", + "anchor": "Hex" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_core-traits/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard_scholar/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_robe/", + "/v2/items/srd-2024_scholars-pack/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_robe/", + "anchor": "Robe" + }, + { + "url": "/v2/items/srd-2024_scholars-pack/", + "anchor": "Scholar's Pack" + }, + { + "url": "/v2/classes/srd-2024_wizard_scholar/", + "anchor": "Scholar" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/spells/srd-2024_guards-and-wards/", + "crossreference_to": [ + "/v2/spells/srd-2024_dancing-lights/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_gust-of-wind/", + "/v2/spells/srd-2024_magic-mouth/", + "/v2/spells/srd-2024_stinking-cloud/", + "/v2/spells/srd-2024_suggestion/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_magic-mouth/", + "anchor": "Magic Mouth" + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "anchor": "Stinking Cloud" + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "anchor": "Suggestion" + } + ] + }, + { + "url": "/v2/items/srd-2024_rod-of-alertness/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_detect-poison-and-disease/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_see-invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_detect-poison-and-disease/", + "anchor": "Detect Poison and Disease" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_see-invisibility/", + "anchor": "See Invisibility" + } + ] + }, + { + "url": "/v2/items/srd-2024_rod-of-lordly-might/", + "crossreference_to": [ + "/v2/items/srd-2024_battleaxe/", + "/v2/items/srd-2024_longsword/", + "/v2/items/srd-2024_mace/", + "/v2/items/srd-2024_shortsword/", + "/v2/items/srd-2024_spear/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_battleaxe/", + "anchor": "Battleaxe" + }, + { + "url": "/v2/items/srd-2024_longsword/", + "anchor": "Longsword" + }, + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + }, + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + } + ] + }, + { + "url": "/v2/items/srd-2024_spikes-iron/", + "crossreference_to": [ + "/v2/items/srd-2024_chain/", + "/v2/items/srd-2024_light-hammer/", + "/v2/items/srd-2024_rope/", + "/v2/spells/srd-2024_light/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + }, + { + "url": "/v2/items/srd-2024_light-hammer/", + "anchor": "Light Hammer" + }, + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/species/srd-2024_gnome_gnomish-lineage/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/", + "/v2/spells/srd-2024_mending/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_prestidigitation/", + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "anchor": "Prestidigitation" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_flame-strike/", + "/v2/spells/srd-2024_guiding-bolt/", + "/v2/spells/srd-2024_shapechange/", + "/v2/spells/srd-2024_zone-of-truth/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "anchor": "Flame Strike" + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "anchor": "Zone of Truth" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_dryad_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_animal-friendship/", + "/v2/spells/srd-2024_charm-monster/", + "/v2/spells/srd-2024_druidcraft/", + "/v2/spells/srd-2024_entangle/", + "/v2/spells/srd-2024_pass-without-trace/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/spells/srd-2024_charm-monster/", + "anchor": "Charm Monster" + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "anchor": "Druidcraft" + }, + { + "url": "/v2/spells/srd-2024_entangle/", + "anchor": "Entangle" + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "anchor": "Pass without Trace" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_green-hag_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_dancing-lights/", + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_ray-of-sickness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_ray-of-sickness/", + "anchor": "Ray of Sickness" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_lamia_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_major-image/", + "/v2/spells/srd-2024_minor-illusion/", + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Geas" + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "anchor": "Major Image" + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "anchor": "Minor Illusion" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_animate-dead/", + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_harm/", + "/v2/spells/srd-2024_insect-plague/", + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animate-dead/", + "anchor": "Animate Dead" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_harm/", + "anchor": "Harm" + }, + { + "url": "/v2/spells/srd-2024_insect-plague/", + "anchor": "Insect Plague" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_etherealness/", + "/v2/spells/srd-2024_magic-missile/", + "/v2/spells/srd-2024_phantasmal-killer/", + "/v2/spells/srd-2024_plane-shift/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/spells/srd-2024_phantasmal-killer/", + "anchor": "Phantasmal Killer" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_planetar_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_commune/", + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_dispel-evil-and-good/", + "/v2/spells/srd-2024_raise-dead/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_commune/", + "anchor": "Commune" + }, + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_raise-dead/", + "anchor": "Raise Dead" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_solar_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_commune/", + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_dispel-evil-and-good/", + "/v2/spells/srd-2024_resurrection/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_commune/", + "anchor": "Commune" + }, + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "anchor": "Dispel Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_resurrection/", + "anchor": "Resurrection" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_greataxe/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/items/srd-2024_greataxe/", + "anchor": "Greataxe" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_entertainers-pack/", + "/v2/items/srd-2024_leather-armor/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_entertainers-pack/", + "anchor": "Entertainer's Pack" + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "anchor": "Leather Armor" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_magical-discoveries/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard/", + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_wizard/", + "/v2/classes/srd-2024_wizard_wizard-spell-list/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/classes/srd-2024_bard/", + "anchor": "Bard" + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_explorers-pack/", + "/v2/items/srd-2024_spear/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_explorers-pack/", + "anchor": "Explorer's Pack" + }, + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_abjure-foes/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/", + "/v2/spells/srd-2024_guidance/", + "/v2/spells/srd-2024_sacred-flame/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/spells/srd-2024_guidance/", + "anchor": "Guidance" + }, + { + "url": "/v2/spells/srd-2024_sacred-flame/", + "anchor": "Sacred Flame" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/spells/srd-2024_guidance/", + "/v2/spells/srd-2024_starry-wisp/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/spells/srd-2024_guidance/", + "anchor": "Guidance" + }, + { + "url": "/v2/spells/srd-2024_starry-wisp/", + "anchor": "Starry Wisp" + } + ] + }, + { + "url": "/v2/items/srd-2024_candle-of-invocation/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_druid/", + "/v2/rulesets/srd-2024_d20-tests/", + "/v2/spells/srd-2024_gate/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/spells/srd-2024_gate/", + "anchor": "Gate" + }, + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/items/srd-2024_druidic-focus-wooden-staff/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_druid_druidic/", + "/v2/classes/srd-2024_ranger/", + "/v2/items/srd-2024_quarterstaff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_ranger/", + "anchor": "Ranger" + } + ] + }, + { + "url": "/v2/items/srd-2024_herbalism-kit/", + "crossreference_to": [ + "/v2/items/srd-2024_antitoxin/", + "/v2/items/srd-2024_potion-of-healing/", + "/v2/rules/srd-2024_damage-and-healing_healing/", + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_antitoxin/", + "anchor": "Antitoxin" + }, + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-symbol-emblem/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_paladin/", + "/v2/spells/srd-2024_shield/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_robe-of-eyes/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/", + "/v2/spells/srd-2024_daylight/", + "/v2/spells/srd-2024_light/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "anchor": "Daylight" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-frost/", + "crossreference_to": [ + "/v2/spells/srd-2024_cone-of-cold/", + "/v2/spells/srd-2024_fog-cloud/", + "/v2/spells/srd-2024_ice-storm/", + "/v2/spells/srd-2024_wall-of-ice/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "anchor": "Cone of Cold" + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Fog Cloud" + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "anchor": "Ice Storm" + }, + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "anchor": "Wall of Ice" + } + ] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_1/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_wizard/", + "/v2/classes/srd-2024_wizard_wizard-spell-list/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard_wizard-spell-list/", + "anchor": "Wizard Spell List" + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_equipment/", + "crossreference_to": [ + "/v2/items/srd-2024_book/", + "/v2/items/srd-2024_parchment/", + "/v2/items/srd-2024_robe/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_book/", + "anchor": "Book" + }, + { + "url": "/v2/items/srd-2024_parchment/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_robe/", + "anchor": "Robe" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_sage_equipment/", + "crossreference_to": [ + "/v2/items/srd-2024_book/", + "/v2/items/srd-2024_parchment/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_robe/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_book/", + "anchor": "Book" + }, + { + "url": "/v2/items/srd-2024_parchment/", + "anchor": "Parchment" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_robe/", + "anchor": "Robe" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_equipment/", + "crossreference_to": [ + "/v2/items/srd-2024_healers-kit/", + "/v2/items/srd-2024_quiver/", + "/v2/items/srd-2024_shortbow/", + "/v2/items/srd-2024_spear/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_healers-kit/", + "anchor": "Healer's Kit" + }, + { + "url": "/v2/items/srd-2024_quiver/", + "anchor": "Quiver" + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "anchor": "Shortbow" + }, + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_mind-spike/", + "/v2/spells/srd-2024_modify-memory/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Geas" + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + }, + { + "url": "/v2/spells/srd-2024_modify-memory/", + "anchor": "Modify Memory" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_hold-person/", + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "anchor": "Hold Person" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_deva_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_commune/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_raise-dead/", + "/v2/spells/srd-2024_shapechange/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_commune/", + "anchor": "Commune" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_raise-dead/", + "anchor": "Raise Dead" + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "anchor": "Shapechange" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_incubus_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_disguise-self/", + "/v2/spells/srd-2024_dream/", + "/v2/spells/srd-2024_etherealness/", + "/v2/spells/srd-2024_hypnotic-pattern/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + }, + { + "url": "/v2/spells/srd-2024_dream/", + "anchor": "Dream" + }, + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + }, + { + "url": "/v2/spells/srd-2024_hypnotic-pattern/", + "anchor": "Hypnotic Pattern" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_oni_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_charm-person/", + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_gaseous-form/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_charm-person/", + "anchor": "Charm Person" + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Gaseous Form" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_words-of-creation/", + "crossreference_to": [ + "/v2/spells/srd-2024_creation/", + "/v2/spells/srd-2024_heal/", + "/v2/spells/srd-2024_power-word-heal/", + "/v2/spells/srd-2024_power-word-kill/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + }, + { + "url": "/v2/spells/srd-2024_heal/", + "anchor": "Heal" + }, + { + "url": "/v2/spells/srd-2024_power-word-heal/", + "anchor": "Power Word Heal" + }, + { + "url": "/v2/spells/srd-2024_power-word-kill/", + "anchor": "Power Word Kill" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_supreme-healing/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-master/", + "crossreference_to": [ + "/v2/spells/srd-2024_slow/", + "/v2/weaponproperties/srd-2024_push-mastery/", + "/v2/weaponproperties/srd-2024_sap-mastery/", + "/v2/weaponproperties/srd-2024_slow-mastery/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_push-mastery/", + "anchor": "Push" + }, + { + "url": "/v2/weaponproperties/srd-2024_sap-mastery/", + "anchor": "Sap" + }, + { + "url": "/v2/weaponproperties/srd-2024_slow-mastery/", + "anchor": "Slow" + }, + { + "url": "/v2/spells/srd-2024_slow/", + "anchor": "Slow" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_heightened-focus/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_martial-arts-dice/", + "/v2/classes/srd-2024_monk_martial-arts/", + "/v2/feats/srd-2024_defense/", + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_defense/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/spells/srd-2024_hallow/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/spells/srd-2024_hallow/", + "anchor": "Hallow" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_sacred-weapon/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "/v2/classes/srd-2024_cleric_channel-divinity/", + "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "/v2/classes/srd-2024_paladin_channel-divinity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity/", + "anchor": "Channel Divinity" + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "anchor": "Channel Divinity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_spell-list/", + "/v2/spells/srd-2024_heroism/", + "/v2/spells/srd-2024_searing-smite/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_spell-list/", + "anchor": "Paladin Spell List" + }, + { + "url": "/v2/spells/srd-2024_heroism/", + "anchor": "Heroism" + }, + { + "url": "/v2/spells/srd-2024_searing-smite/", + "anchor": "Searing Smite" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_spellcasting/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/classes/srd-2024_ranger_spell-list/", + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_ensnaring-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_ranger_spell-list/", + "anchor": "Ranger Spell List" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_ensnaring-strike/", + "anchor": "Ensnaring Strike" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "/v2/classes/srd-2024_rogue_sneak-attack/", + "/v2/items/srd-2024_poisoners-kit/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_poisoners-kit/", + "anchor": "Poisoner's Kit" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_core-traits/", + "crossreference_to": [ + "/v2/items/srd-2024_dungeoneers-pack/", + "/v2/items/srd-2024_spear/", + "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "/v2/rules/srd-2024_proficiency_skill-proficiencies/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dungeoneers-pack/", + "anchor": "Dungeoneer's Pack" + }, + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "anchor": "Skill Proficiencies" + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "anchor": "Saving Throw Proficiencies" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_charm-person/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/spells/srd-2024_charm-person/", + "anchor": "Charm Person" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-incarnate/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcery-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "anchor": "Innate Sorcery" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Metamagic Options" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_disintegrate/", + "crossreference_to": [ + "/v2/spells/srd-2024_resurrection/", + "/v2/spells/srd-2024_true-resurrection/", + "/v2/spells/srd-2024_wall-of-force/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_resurrection/", + "anchor": "Resurrection" + }, + { + "url": "/v2/spells/srd-2024_true-resurrection/", + "anchor": "True Resurrection" + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "anchor": "Wall of Force" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/rules/srd-2024_exploration_adventuring-equipment/", + "crossreference_to": [ + "/v2/items/srd-2024_caltrops/", + "/v2/items/srd-2024_ladder/", + "/v2/items/srd-2024_quarterstaff/", + "/v2/items/srd-2024_torch/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_caltrops/", + "anchor": "Caltrops" + }, + { + "url": "/v2/items/srd-2024_ladder/", + "anchor": "Ladder" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + }, + { + "url": "/v2/items/srd-2024_torch/", + "anchor": "Torch" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue/", + "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "/v2/classes/srd-2024_rogue_sneak-attack/", + "/v2/items/srd-2024_dagger/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dagger/", + "anchor": "Dagger" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue/", + "anchor": "Rogue" + } + ] + }, + { + "url": "/v2/items/srd-2024_cloak-of-the-bat/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_polymorph/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Polymorph" + } + ] + }, + { + "url": "/v2/items/srd-2024_druidic-focus-sprig-of-mistletoe/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_druid_druidic/", + "/v2/classes/srd-2024_ranger/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_ranger/", + "anchor": "Ranger" + } + ] + }, + { + "url": "/v2/items/srd-2024_druidic-focus-yew-wand/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_druid_druidic/", + "/v2/classes/srd-2024_ranger/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_ranger/", + "anchor": "Ranger" + } + ] + }, + { + "url": "/v2/items/srd-2024_dust-of-sneezing-and-choking/", + "crossreference_to": [ + "/v2/items/srd-2024_dust-of-disappearance/", + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_lesser-restoration/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dust-of-disappearance/", + "anchor": "Dust of Disappearance" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_lesser-restoration/", + "anchor": "Lesser Restoration" + } + ] + }, + { + "url": "/v2/items/srd-2024_folding-boat/", + "crossreference_to": [ + "/v2/items/srd-2024_keelboat/", + "/v2/items/srd-2024_rowboat/", + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_keelboat/", + "anchor": "Keelboat" + }, + { + "url": "/v2/items/srd-2024_rowboat/", + "anchor": "Rowboat" + }, + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/items/srd-2024_glassblowers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_magnifying-glass/", + "/v2/items/srd-2024_spyglass/", + "/v2/items/srd-2024_vial/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_magnifying-glass/", + "anchor": "Magnifying Glass" + }, + { + "url": "/v2/items/srd-2024_spyglass/", + "anchor": "Spyglass" + }, + { + "url": "/v2/items/srd-2024_vial/", + "anchor": "Vial" + } + ] + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-maul/", + "crossreference_to": [ + "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "/v2/spells/srd-2024_bane/", + "/v2/weaponproperties/srd-2024_thrown-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "anchor": "Thrown" + }, + { + "url": "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "anchor": "Gauntlets of Ogre Power" + }, + { + "url": "/v2/spells/srd-2024_bane/", + "anchor": "Bane" + } + ] + }, + { + "url": "/v2/items/srd-2024_hammer-of-thunderbolts-warhammer/", + "crossreference_to": [ + "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "/v2/spells/srd-2024_bane/", + "/v2/weaponproperties/srd-2024_thrown-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "anchor": "Thrown" + }, + { + "url": "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "anchor": "Gauntlets of Ogre Power" + }, + { + "url": "/v2/spells/srd-2024_bane/", + "anchor": "Bane" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-symbol-amulet/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_paladin/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-symbol-reliquary/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_paladin/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_instant-fortress/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_knock/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_knock/", + "anchor": "Knock" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_mirror-of-life-trapping/", + "crossreference_to": [ + "/v2/items/srd-2024_bag-of-holding/", + "/v2/items/srd-2024_portable-hole/", + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Portable Hole" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-poison/", + "crossreference_to": [ + "/v2/items/srd-2024_potion-of-healing/", + "/v2/rules/srd-2024_damage-and-healing_healing/", + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-animal-influence/", + "crossreference_to": [ + "/v2/spells/srd-2024_animal-friendship/", + "/v2/spells/srd-2024_fear/", + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "anchor": "Animal Friendship" + }, + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-fire/", + "crossreference_to": [ + "/v2/spells/srd-2024_burning-hands/", + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_wall-of-fire/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_burning-hands/", + "anchor": "Burning Hands" + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-healing/", + "crossreference_to": [ + "/v2/spells/srd-2024_cure-wounds/", + "/v2/spells/srd-2024_lesser-restoration/", + "/v2/spells/srd-2024_mass-cure-wounds/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + }, + { + "url": "/v2/spells/srd-2024_lesser-restoration/", + "anchor": "Lesser Restoration" + }, + { + "url": "/v2/spells/srd-2024_mass-cure-wounds/", + "anchor": "Mass Cure Wounds" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-swarming-insects/", + "crossreference_to": [ + "/v2/spells/srd-2024_giant-insect/", + "/v2/spells/srd-2024_gust-of-wind/", + "/v2/spells/srd-2024_insect-plague/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_giant-insect/", + "anchor": "Giant Insect" + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + }, + { + "url": "/v2/spells/srd-2024_insect-plague/", + "anchor": "Insect Plague" + } + ] + }, + { + "url": "/v2/items/srd-2024_tinderbox/", + "crossreference_to": [ + "/v2/items/srd-2024_candle/", + "/v2/items/srd-2024_lamp/", + "/v2/items/srd-2024_torch/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_candle/", + "anchor": "Candle" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + }, + { + "url": "/v2/items/srd-2024_torch/", + "anchor": "Torch" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_geas/", + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_geas/", + "anchor": "Geas" + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_clairvoyance/", + "/v2/spells/srd-2024_detect-evil-and-good/", + "/v2/spells/srd-2024_detect-magic/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "anchor": "Clairvoyance" + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "anchor": "Detect Evil and Good" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_gladiator_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/items/srd-2024_spear/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting-1-day;-requires-soul-bag/", + "crossreference_to": [ + "/v2/spells/srd-2024_dream/", + "/v2/spells/srd-2024_magic-circle/", + "/v2/spells/srd-2024_protection-from-evil-and-good/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dream/", + "anchor": "Dream" + }, + { + "url": "/v2/spells/srd-2024_magic-circle/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "anchor": "Protection from Evil and Good" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_nightmare-haunting/", + "crossreference_to": [ + "/v2/spells/srd-2024_dream/", + "/v2/spells/srd-2024_magic-circle/", + "/v2/spells/srd-2024_protection-from-evil-and-good/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dream/", + "anchor": "Dream" + }, + { + "url": "/v2/spells/srd-2024_magic-circle/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "anchor": "Protection from Evil and Good" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting-recharge-4-6/", + "crossreference_to": [ + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_wall-of-fire/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_hellfire-spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_fireball/", + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_wall-of-fire/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "anchor": "Wall of Fire" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_priest_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_spirit-guardians/", + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_spirit-guardians/", + "anchor": "Spirit Guardians" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_control-weather/", + "/v2/spells/srd-2024_detect-magic/", + "/v2/spells/srd-2024_light/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_control-weather/", + "anchor": "Control Weather" + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_magical-secrets/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_wizard/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "/v2/rulesets/srd-2024_proficiency/", + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_additional-fighting-style/", + "crossreference_to": [ + "/v2/classes/srd-2024_fighter_fighting-style/", + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Fighting Style" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_fighting-style/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_fighting-style/", + "/v2/classes/srd-2024_ranger_fighting-style/", + "/v2/feats/srd-2024_defense/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_defense/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_paladin_fighting-style/", + "anchor": "Fighting Style" + }, + { + "url": "/v2/classes/srd-2024_ranger_fighting-style/", + "anchor": "Fighting Style" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_martial-arts-dice/", + "/v2/items/srd-2024_shield/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_monks-focus/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_focus-points/", + "/v2/feats/srd-2024_defense/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_defense/", + "anchor": "Defense" + }, + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "anchor": "Focus Points" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_focus-points/", + "/v2/classes/srd-2024_monk_martial-arts-dice/", + "/v2/classes/srd-2024_monk_martial-arts/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_frenzy/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage-damage/", + "/v2/classes/srd-2024_barbarian_rage/", + "/v2/classes/srd-2024_barbarian_reckless-attack/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_rage-damage/", + "anchor": "Rage Damage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_reckless-attack/", + "anchor": "Reckless Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy/", + "crossreference_to": [ + "/v2/classes/srd-2024_hunter/", + "/v2/classes/srd-2024_ranger_favored-enemy-uses/", + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy-uses/", + "anchor": "Favored Enemy" + }, + { + "url": "/v2/classes/srd-2024_hunter/", + "anchor": "Hunter" + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_devious-strikes/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue_cunning-strike/", + "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "/v2/classes/srd-2024_rogue_sneak-attack/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Cunning Strike" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "anchor": "Sneak Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_improved-cunning-strike/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue_cunning-strike/", + "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "/v2/classes/srd-2024_rogue_sneak-attack/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Cunning Strike" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "anchor": "Sneak Attack" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "anchor": "Sneak Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_arcane-apotheosis/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcery-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "anchor": "Innate Sorcery" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_font-of-magic/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_metamagic/", + "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "/v2/classes/srd-2024_warlock_spell-slots/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "anchor": "Metamagic" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/classes/srd-2024_warlock_spell-slots/", + "anchor": "Spell Slots" + } + ] + }, + { + "url": "/v2/spells/srd-2024_befuddlement/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_heal/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_heal/", + "anchor": "Heal" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/spells/srd-2024_geas/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_remove-curse/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/rules/srd-2024_d20-tests_attack-rolls/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_combat/", + "/v2/rulesets/srd-2024_proficiency/", + "/v2/spells/srd-2024_creation/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + }, + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_combat/", + "/v2/spells/srd-2024_slow/", + "/v2/weaponproperties/srd-2024_slow-mastery/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_slow-mastery/", + "anchor": "Slow" + }, + { + "url": "/v2/spells/srd-2024_slow/", + "anchor": "Slow" + }, + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/items/srd-2024_animated-shield/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-breastplate/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-chain-shirt/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-half-plate-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-hide-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-leather-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-padded-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-plate-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-ring-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-scale-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-splint-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-vulnerability-studded-leather-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_arrow-catching-shield/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "crossreference_to": [ + "/v2/items/srd-2024_handy-haversack/", + "/v2/items/srd-2024_portable-hole/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_handy-haversack/", + "anchor": "Handy Haversack" + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Portable Hole" + } + ] + }, + { + "url": "/v2/items/srd-2024_bracers-of-archery/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/", + "/v2/items/srd-2024_shortbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "anchor": "Shortbow" + } + ] + }, + { + "url": "/v2/items/srd-2024_bracers-of-defense/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_brooch-of-shielding/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_magic-missile/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_calligraphers-supplies/", + "crossreference_to": [ + "/v2/items/srd-2024_ink/", + "/v2/items/srd-2024_spell-scroll/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ink/", + "anchor": "Ink" + }, + { + "url": "/v2/items/srd-2024_spell-scroll/", + "anchor": "Spell Scroll" + } + ] + }, + { + "url": "/v2/items/srd-2024_cloak-of-arachnida/", + "crossreference_to": [ + "/v2/spells/srd-2024_spider-climb/", + "/v2/spells/srd-2024_web/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_spider-climb/", + "anchor": "Spider Climb" + }, + { + "url": "/v2/spells/srd-2024_web/", + "anchor": "Web" + } + ] + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-mind-reading/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-telepathy/", + "crossreference_to": [ + "/v2/spells/srd-2024_scrying/", + "/v2/spells/srd-2024_suggestion/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "anchor": "Suggestion" + } + ] + }, + { + "url": "/v2/items/srd-2024_cubic-gate/", + "crossreference_to": [ + "/v2/spells/srd-2024_gate/", + "/v2/spells/srd-2024_plane-shift/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gate/", + "anchor": "Gate" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/items/srd-2024_deck-of-illusions/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/spells/srd-2024_dispel-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + } + ] + }, + { + "url": "/v2/items/srd-2024_dragon-scale-mail/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/items/srd-2024_scale-mail/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/items/srd-2024_scale-mail/", + "anchor": "Scale Mail" + } + ] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ebony-fly/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/", + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-ivory-goats/", + "crossreference_to": [ + "/v2/items/srd-2024_lance/", + "/v2/items/srd-2024_longsword/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_lance/", + "anchor": "Lance" + }, + { + "url": "/v2/items/srd-2024_longsword/", + "anchor": "Longsword" + } + ] + }, + { + "url": "/v2/items/srd-2024_handy-haversack/", + "crossreference_to": [ + "/v2/items/srd-2024_bag-of-holding/", + "/v2/items/srd-2024_portable-hole/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Portable Hole" + } + ] + }, + { + "url": "/v2/items/srd-2024_helm-of-telepathy/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-thoughts/", + "/v2/spells/srd-2024_suggestion/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "anchor": "Suggestion" + } + ] + }, + { + "url": "/v2/items/srd-2024_horn-of-valhalla/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_iron-flask/", + "crossreference_to": [ + "/v2/items/srd-2024_flask/", + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_flask/", + "anchor": "Flask" + }, + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_mace-of-disruption/", + "crossreference_to": [ + "/v2/spells/srd-2024_light/", + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/items/srd-2024_net/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil/", + "crossreference_to": [ + "/v2/items/srd-2024_lamp/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil-of-slipperiness/", + "crossreference_to": [ + "/v2/spells/srd-2024_freedom-of-movement/", + "/v2/spells/srd-2024_grease/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_freedom-of-movement/", + "anchor": "Freedom of Movement" + }, + { + "url": "/v2/spells/srd-2024_grease/", + "anchor": "Grease" + } + ] + }, + { + "url": "/v2/items/srd-2024_painters-supplies/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/", + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_portable-hole/", + "crossreference_to": [ + "/v2/items/srd-2024_bag-of-holding/", + "/v2/items/srd-2024_handy-haversack/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Bag of Holding" + }, + { + "url": "/v2/items/srd-2024_handy-haversack/", + "anchor": "Handy Haversack" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-heroism/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "/v2/spells/srd-2024_bless/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_bless/", + "anchor": "Bless" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_potions-of-healing/", + "crossreference_to": [ + "/v2/items/srd-2024_potion-of-healing/", + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/items/srd-2024_potters-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_jug/", + "/v2/items/srd-2024_lamp/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_jug/", + "anchor": "Jug" + }, + { + "url": "/v2/items/srd-2024_lamp/", + "anchor": "Lamp" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-shooting-stars/", + "crossreference_to": [ + "/v2/spells/srd-2024_dancing-lights/", + "/v2/spells/srd-2024_light/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "anchor": "Dancing Lights" + }, + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/items/srd-2024_shield-plus-1/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_shield-plus-2/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_shield-plus-3/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_sphere-of-annihilation/", + "crossreference_to": [ + "/v2/items/srd-2024_portable-hole/", + "/v2/spells/srd-2024_gate/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_portable-hole/", + "anchor": "Portable Hole" + }, + { + "url": "/v2/spells/srd-2024_gate/", + "anchor": "Gate" + } + ] + }, + { + "url": "/v2/items/srd-2024_sun-blade/", + "crossreference_to": [ + "/v2/items/srd-2024_longsword/", + "/v2/weaponproperties/srd-2024_finesse-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_finesse-wp/", + "anchor": "Finesse" + }, + { + "url": "/v2/items/srd-2024_longsword/", + "anchor": "Longsword" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-binding/", + "crossreference_to": [ + "/v2/spells/srd-2024_hold-monster/", + "/v2/spells/srd-2024_hold-person/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "anchor": "Hold Person" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-web/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/", + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + }, + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/species/srd-2024_orc_adrenaline-rush/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/feats/srd-2024_great-weapon-fighting_1/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_two-handed-wp/", + "/v2/weaponproperties/srd-2024_versatile-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_two-handed-wp/", + "anchor": "Two-Handed" + }, + { + "url": "/v2/weaponproperties/srd-2024_versatile-wp/", + "anchor": "Versatile" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_feat/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric/", + "/v2/feats/srd-2024_magic-initiate/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_magic-initiate/", + "anchor": "Magic Initiate" + }, + { + "url": "/v2/classes/srd-2024_cleric/", + "anchor": "Cleric" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_equipment/", + "crossreference_to": [ + "/v2/items/srd-2024_crowbar/", + "/v2/items/srd-2024_thieves-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_crowbar/", + "anchor": "Crowbar" + }, + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_sage_feat/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard/", + "/v2/feats/srd-2024_magic-initiate/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_magic-initiate/", + "anchor": "Magic Initiate" + }, + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_acid-arrow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "anchor": "Acid Arrow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_cloaked-flight/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_acid-arrow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "anchor": "Acid Arrow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_cloaked-flight/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/", + "/v2/spells/srd-2024_invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_assassin_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_light-crossbow/", + "/v2/items/srd-2024_shortsword/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_light-crossbow/", + "anchor": "Light Crossbow" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_bandit-captain_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_pistol/", + "/v2/items/srd-2024_scimitar/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_pistol/", + "anchor": "Pistol" + }, + { + "url": "/v2/items/srd-2024_scimitar/", + "anchor": "Scimitar" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_dissolving-pseudopod/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_mending/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_javelin/", + "/v2/items/srd-2024_morningstar/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_javelin/", + "anchor": "Javelin" + }, + { + "url": "/v2/items/srd-2024_morningstar/", + "anchor": "Morningstar" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_centaur-trooper_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/", + "/v2/items/srd-2024_pike/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + }, + { + "url": "/v2/items/srd-2024_pike/", + "anchor": "Pike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_mace/", + "/v2/spells/srd-2024_fog-cloud/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Fog Cloud" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ettin_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_battleaxe/", + "/v2/items/srd-2024_morningstar/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_battleaxe/", + "anchor": "Battleaxe" + }, + { + "url": "/v2/items/srd-2024_morningstar/", + "anchor": "Morningstar" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_goblin-boss_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_scimitar/", + "/v2/items/srd-2024_shortbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_scimitar/", + "anchor": "Scimitar" + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "anchor": "Shortbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_pseudopod/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_mending/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_guard-captain_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_javelin/", + "/v2/items/srd-2024_longsword/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_javelin/", + "anchor": "Javelin" + }, + { + "url": "/v2/items/srd-2024_longsword/", + "anchor": "Longsword" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_greatsword/", + "/v2/items/srd-2024_longbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_greatsword/", + "anchor": "Greatsword" + }, + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_knight_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_greatsword/", + "/v2/items/srd-2024_heavy-crossbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_greatsword/", + "anchor": "Greatsword" + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow/", + "anchor": "Heavy Crossbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_pirate-captain_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_pistol/", + "/v2/items/srd-2024_rapier/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_pistol/", + "anchor": "Pistol" + }, + { + "url": "/v2/items/srd-2024_rapier/", + "anchor": "Rapier" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_priest-acolyte_spellcasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_light/", + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_light/", + "anchor": "Light" + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_scout_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/", + "/v2/items/srd-2024_shortsword/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "anchor": "Shortsword" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_tough-boss_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_heavy-crossbow/", + "/v2/items/srd-2024_warhammer/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_heavy-crossbow/", + "anchor": "Heavy Crossbow" + }, + { + "url": "/v2/items/srd-2024_warhammer/", + "anchor": "Warhammer" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_warrior-veteran_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_greatsword/", + "/v2/items/srd-2024_heavy-crossbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_greatsword/", + "anchor": "Greatsword" + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow/", + "anchor": "Heavy Crossbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_corrosive-form/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/", + "/v2/spells/srd-2024_mending/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + }, + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_lemure_hellish-restoration/", + "crossreference_to": [ + "/v2/items/srd-2024_holy-water/", + "/v2/spells/srd-2024_bless/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_holy-water/", + "anchor": "Holy Water" + }, + { + "url": "/v2/spells/srd-2024_bless/", + "anchor": "Bless" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage-damage/", + "/v2/classes/srd-2024_barbarian_rages/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage-damage/", + "anchor": "Rage Damage" + }, + { + "url": "/v2/classes/srd-2024_barbarian_rages/", + "anchor": "Rages" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_unarmored-defense/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/", + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + }, + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_greater-divine-intervention/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_divine-intervention/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_divine-intervention/", + "anchor": "Divine Intervention" + }, + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_improved-blessed-strikes/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_blessed-strikes/", + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_blessed-strikes/", + "anchor": "Blessed Strikes" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_lands-aid/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/", + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_wild-companion/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/", + "/v2/spells/srd-2024_find-familiar/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + }, + { + "url": "/v2/spells/srd-2024_find-familiar/", + "anchor": "Find Familiar" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-mind/", + "crossreference_to": [ + "/v2/classes/srd-2024_fighter_second-wind-uses/", + "/v2/classes/srd-2024_fighter_second-wind/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_second-wind/", + "anchor": "Second Wind" + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind-uses/", + "anchor": "Second Wind" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_tactical-shift/", + "crossreference_to": [ + "/v2/classes/srd-2024_fighter_second-wind-uses/", + "/v2/classes/srd-2024_fighter_second-wind/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_second-wind/", + "anchor": "Second Wind" + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind-uses/", + "anchor": "Second Wind" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_deflect-attacks/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_martial-arts-dice/", + "/v2/classes/srd-2024_monk_martial-arts/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_perfect-focus/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_focus-points/", + "/v2/classes/srd-2024_monk_uncanny-metabolism/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk_uncanny-metabolism/", + "anchor": "Uncanny Metabolism" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_quivering-palm/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk/", + "/v2/classes/srd-2024_monk_focus-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "anchor": "Focus Points" + }, + { + "url": "/v2/classes/srd-2024_monk/", + "anchor": "Monk" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_martial-arts-dice/", + "/v2/classes/srd-2024_monk_martial-arts/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_martial-arts/", + "anchor": "Martial Arts" + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "anchor": "Martial Arts" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-of-courage/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_aura-of-protection/", + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_aura-of-devotion/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_aura-of-protection/", + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_holy-nimbus/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_aura-of-protection/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_oath-of-devotion_smite-of-protection/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_aura-of-protection/", + "/v2/spells/srd-2024_divine-smite/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "anchor": "Aura of Protection" + }, + { + "url": "/v2/spells/srd-2024_divine-smite/", + "anchor": "Divine Smite" + } + ] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_intimidating-presence/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/", + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_mindless-rage/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/", + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_foe-slayer/", + "crossreference_to": [ + "/v2/classes/srd-2024_hunter/", + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_hunter/", + "anchor": "Hunter" + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_precise-hunter/", + "crossreference_to": [ + "/v2/classes/srd-2024_hunter/", + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_hunter/", + "anchor": "Hunter" + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_relentless-hunter/", + "crossreference_to": [ + "/v2/classes/srd-2024_hunter/", + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_hunter/", + "anchor": "Hunter" + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "/v2/weaponproperties/srd-2024_finesse-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_finesse-wp/", + "anchor": "Finesse" + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "anchor": "Sneak Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-wings/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + }, + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "/v2/classes/srd-2024_sorcerer_sorcery-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_metamagic-options/", + "anchor": "Metamagic Options" + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocations/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_eldritch-invocation-count/", + "/v2/classes/srd-2024_warlock_eldritch-invocation-options/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-count/", + "anchor": "Eldritch Invocations" + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-options/", + "anchor": "Eldritch Invocation Options" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-blessing/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock/", + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock/", + "anchor": "Warlock" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_overchannel/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard/", + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "crossreference_to": [ + "/v2/spells/srd-2024_invisibility/", + "/v2/spells/srd-2024_see-invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + }, + { + "url": "/v2/spells/srd-2024_see-invisibility/", + "anchor": "See Invisibility" + } + ] + }, + { + "url": "/v2/spells/srd-2024_find-traps/", + "crossreference_to": [ + "/v2/spells/srd-2024_alarm/", + "/v2/spells/srd-2024_glyph-of-warding/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_alarm/", + "anchor": "Alarm" + }, + { + "url": "/v2/spells/srd-2024_glyph-of-warding/", + "anchor": "Glyph of Warding" + } + ] + }, + { + "url": "/v2/spells/srd-2024_forbiddance/", + "crossreference_to": [ + "/v2/spells/srd-2024_gate/", + "/v2/spells/srd-2024_plane-shift/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gate/", + "anchor": "Gate" + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_imprisonment/", + "crossreference_to": [ + "/v2/spells/srd-2024_dispel-magic/", + "/v2/spells/srd-2024_divination/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + }, + { + "url": "/v2/spells/srd-2024_divination/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/spells/srd-2024_knock/", + "crossreference_to": [ + "/v2/items/srd-2024_lock/", + "/v2/spells/srd-2024_arcane-lock/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_lock/", + "anchor": "Lock" + }, + { + "url": "/v2/spells/srd-2024_arcane-lock/", + "anchor": "Arcane Lock" + } + ] + }, + { + "url": "/v2/spells/srd-2024_locate-creature/", + "crossreference_to": [ + "/v2/spells/srd-2024_flesh-to-stone/", + "/v2/spells/srd-2024_polymorph/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_flesh-to-stone/", + "anchor": "Flesh to Stone" + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Polymorph" + } + ] + }, + { + "url": "/v2/spells/srd-2024_magic-jar/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-circle/", + "/v2/spells/srd-2024_protection-from-evil-and-good/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-circle/", + "anchor": "Magic Circle" + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "anchor": "Protection from Evil and Good" + } + ] + }, + { + "url": "/v2/spells/srd-2024_mind-blank/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_modify-memory/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/", + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/spells/srd-2024_private-sanctum/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/", + "/v2/spells/srd-2024_divination/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + }, + { + "url": "/v2/spells/srd-2024_divination/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shillelagh/", + "crossreference_to": [ + "/v2/items/srd-2024_club/", + "/v2/items/srd-2024_quarterstaff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + } + ] + }, + { + "url": "/v2/spells/srd-2024_symbol/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/", + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-force/", + "crossreference_to": [ + "/v2/spells/srd-2024_disintegrate/", + "/v2/spells/srd-2024_dispel-magic/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Disintegrate" + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "anchor": "Dispel Magic" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wind-walk/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/", + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/rules/srd-2024_d20-tests_ability-checks/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/", + "/v2/weaponproperties/srd-2024_push-mastery/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_push-mastery/", + "anchor": "Push" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_the-order-of-combat/", + "crossreference_to": [ + "/v2/rules/srd-2024_combat_movement-and-position/", + "/v2/rulesets/srd-2024_combat/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + }, + { + "url": "/v2/rules/srd-2024_combat_movement-and-position/", + "anchor": "Movement and Position" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_skill-proficiencies/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/", + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_exploration_vision-and-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/", + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + }, + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "crossreference_to": [ + "/v2/items/srd-2024_potion-of-healing/", + "/v2/spells/srd-2024_cure-wounds/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "anchor": "Potion of Healing" + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "anchor": "Cure Wounds" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_underwater-combat/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_healing/", + "/v2/rulesets/srd-2024_damage-and-healing/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_damage-and-healing/", + "anchor": "Damage and Healing" + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_nick-mastery/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_topple-mastery/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_acid/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_alchemists-fire/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_amulet-of-proof-against-detection-and-location/", + "crossreference_to": [ + "/v2/spells/srd-2024_divination/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_divination/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/items/srd-2024_amulet-of-the-planes/", + "crossreference_to": [ + "/v2/spells/srd-2024_plane-shift/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_plane-shift/", + "anchor": "Plane Shift" + } + ] + }, + { + "url": "/v2/items/srd-2024_apparatus-of-the-crab/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-invulnerability/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-breastplate/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-chain-mail/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-chain-shirt/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-half-plate/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-hide-armor/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-leather/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-padded/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-plate/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-ring-mail/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-scale-mail/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-splint/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_armor-of-resistance-studded-leather/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_arrows-20/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_bag-of-beans/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_bag-of-devouring/", + "crossreference_to": [ + "/v2/items/srd-2024_bag-of-holding/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_bag-of-holding/", + "anchor": "Bag of Holding" + } + ] + }, + { + "url": "/v2/items/srd-2024_bag-of-tricks/", + "crossreference_to": [ + "/v2/items/srd-2024_mastiff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mastiff/", + "anchor": "Mastiff" + } + ] + }, + { + "url": "/v2/items/srd-2024_bolts-20/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_boots-of-levitation/", + "crossreference_to": [ + "/v2/spells/srd-2024_levitate/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_levitate/", + "anchor": "Levitate" + } + ] + }, + { + "url": "/v2/items/srd-2024_brewers-supplies/", + "crossreference_to": [ + "/v2/items/srd-2024_antitoxin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_antitoxin/", + "anchor": "Antitoxin" + } + ] + }, + { + "url": "/v2/items/srd-2024_broom-of-flying/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/items/srd-2024_bullets-firearm-10/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_bullets-sling-20/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_cape-of-the-mountebank/", + "crossreference_to": [ + "/v2/spells/srd-2024_dimension-door/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dimension-door/", + "anchor": "Dimension Door" + } + ] + }, + { + "url": "/v2/items/srd-2024_carpet-of-flying/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/items/srd-2024_cartographers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_map/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_map/", + "anchor": "Map" + } + ] + }, + { + "url": "/v2/items/srd-2024_case-map-or-scroll/", + "crossreference_to": [ + "/v2/items/srd-2024_map/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_map/", + "anchor": "Map" + } + ] + }, + { + "url": "/v2/items/srd-2024_chime-of-opening/", + "crossreference_to": [ + "/v2/spells/srd-2024_knock/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_knock/", + "anchor": "Knock" + } + ] + }, + { + "url": "/v2/items/srd-2024_circlet-of-blasting/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/items/srd-2024_cobblers-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_climbers-kit/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_climbers-kit/", + "anchor": "Climber's Kit" + } + ] + }, + { + "url": "/v2/items/srd-2024_component-pouch/", + "crossreference_to": [ + "/v2/items/srd-2024_pouch/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_pouch/", + "anchor": "Pouch" + } + ] + }, + { + "url": "/v2/items/srd-2024_cooks-utensils/", + "crossreference_to": [ + "/v2/items/srd-2024_rations/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rations/", + "anchor": "Rations" + } + ] + }, + { + "url": "/v2/items/srd-2024_crystal-ball/", + "crossreference_to": [ + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/items/srd-2024_crystal-ball-of-true-seeing/", + "crossreference_to": [ + "/v2/spells/srd-2024_scrying/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scrying/", + "anchor": "Scrying" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-breastplate/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-chain-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-chain-shirt/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-half-plate-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-hide-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-leather-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-padded-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-plate-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-ring-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-scale-mail/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-splint-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_demon-studded-leather-armor/", + "crossreference_to": [ + "/v2/spells/srd-2024_remove-curse/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_remove-curse/", + "anchor": "Remove Curse" + } + ] + }, + { + "url": "/v2/items/srd-2024_disguise-kit/", + "crossreference_to": [ + "/v2/items/srd-2024_costume/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_costume/", + "anchor": "Costume" + } + ] + }, + { + "url": "/v2/items/srd-2024_dwarven-thrower/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_thrown-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "anchor": "Thrown" + } + ] + }, + { + "url": "/v2/items/srd-2024_efreeti-bottle/", + "crossreference_to": [ + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/items/srd-2024_eversmoking-bottle/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/items/srd-2024_eyes-of-charming/", + "crossreference_to": [ + "/v2/spells/srd-2024_charm-person/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_charm-person/", + "anchor": "Charm Person" + } + ] + }, + { + "url": "/v2/items/srd-2024_eyes-of-minute-seeing/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-anchor/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-bird/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-fan/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-swan-boat/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-tree/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_feather-token-whip/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-silver-raven/", + "crossreference_to": [ + "/v2/spells/srd-2024_animal-messenger/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animal-messenger/", + "anchor": "Animal Messenger" + } + ] + }, + { + "url": "/v2/items/srd-2024_gem-of-brightness/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/items/srd-2024_glaive-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_gloves-of-missile-snaring/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_thrown-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "anchor": "Thrown" + } + ] + }, + { + "url": "/v2/items/srd-2024_goggles-of-night/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/items/srd-2024_grappling-hook/", + "crossreference_to": [ + "/v2/items/srd-2024_rope/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + } + ] + }, + { + "url": "/v2/items/srd-2024_greatsword-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_half-plate-armor-of-etherealness/", + "crossreference_to": [ + "/v2/spells/srd-2024_etherealness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + } + ] + }, + { + "url": "/v2/items/srd-2024_hat-of-disguise/", + "crossreference_to": [ + "/v2/spells/srd-2024_disguise-self/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + } + ] + }, + { + "url": "/v2/items/srd-2024_helm-of-comprehending-languages/", + "crossreference_to": [ + "/v2/spells/srd-2024_comprehend-languages/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_comprehend-languages/", + "anchor": "Comprehend Languages" + } + ] + }, + { + "url": "/v2/items/srd-2024_helm-of-teleportation/", + "crossreference_to": [ + "/v2/spells/srd-2024_teleport/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_teleport/", + "anchor": "Teleport" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-battleaxe/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-blowgun/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-club/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-dagger/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-dart/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-flail/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-glaive/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greataxe/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greatclub/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-greatsword/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-halberd/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-hand-crossbow/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-handaxe/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-heavy-crossbow/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-javelin/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-lance/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-light-crossbow/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-light-hammer/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-longbow/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-longsword/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-mace/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-maul/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-morningstar/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-musket/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-pike/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-pistol/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-quarterstaff/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-rapier/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-scimitar/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-shortbow/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-shortsword/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-sickle/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-sling/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-spear/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-trident/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-war-pick/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-warhammer/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-avenger-whip/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin/", + "anchor": "Paladin" + } + ] + }, + { + "url": "/v2/items/srd-2024_holy-water/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_ink-pen/", + "crossreference_to": [ + "/v2/items/srd-2024_ink/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_ink/", + "anchor": "Ink" + } + ] + }, + { + "url": "/v2/items/srd-2024_ioun-stone/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_iron-bands/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/items/srd-2024_javelin-of-lightning/", + "crossreference_to": [ + "/v2/spells/srd-2024_lightning-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + } + ] + }, + { + "url": "/v2/items/srd-2024_jewelers-tools/", + "crossreference_to": [ + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_lamp/", + "crossreference_to": [ + "/v2/items/srd-2024_oil/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + } + ] + }, + { + "url": "/v2/items/srd-2024_lantern-bullseye/", + "crossreference_to": [ + "/v2/items/srd-2024_oil/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + } + ] + }, + { + "url": "/v2/items/srd-2024_lantern-hooded/", + "crossreference_to": [ + "/v2/items/srd-2024_oil/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_oil/", + "anchor": "Oil" + } + ] + }, + { + "url": "/v2/items/srd-2024_lock/", + "crossreference_to": [ + "/v2/items/srd-2024_thieves-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/items/srd-2024_longsword-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_manacles/", + "crossreference_to": [ + "/v2/items/srd-2024_thieves-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/items/srd-2024_masons-tools/", + "crossreference_to": [ + "/v2/items/srd-2024_block-and-tackle/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_block-and-tackle/", + "anchor": "Block and Tackle" + } + ] + }, + { + "url": "/v2/items/srd-2024_medallion-of-thoughts/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-thoughts/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-bagpipes/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-drum/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-dulcimer/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-flute/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-horn/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-lute/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-lyre/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-pan-flute/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-shawm/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_musical-instrument-viol/", + "crossreference_to": [ + "/v2/spells/srd-2024_identify/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_identify/", + "anchor": "Identify" + } + ] + }, + { + "url": "/v2/items/srd-2024_necklace-of-fireballs/", + "crossreference_to": [ + "/v2/spells/srd-2024_fireball/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + } + ] + }, + { + "url": "/v2/items/srd-2024_needles-50/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil-of-etherealness/", + "crossreference_to": [ + "/v2/spells/srd-2024_etherealness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + } + ] + }, + { + "url": "/v2/items/srd-2024_oil-of-sharpness/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_ammunition-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "anchor": "Ammunition" + } + ] + }, + { + "url": "/v2/items/srd-2024_periapt-of-proof-against-poison/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_periapt-of-wound-closure/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/items/srd-2024_plate-armor-of-etherealness/", + "crossreference_to": [ + "/v2/spells/srd-2024_etherealness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + } + ] + }, + { + "url": "/v2/items/srd-2024_pole/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-animal-friendship/", + "crossreference_to": [ + "/v2/spells/srd-2024_animal-friendship/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "anchor": "Animal Friendship" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-clairvoyance/", + "crossreference_to": [ + "/v2/spells/srd-2024_clairvoyance/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_clairvoyance/", + "anchor": "Clairvoyance" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-diminution/", + "crossreference_to": [ + "/v2/spells/srd-2024_enlargereduce/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_enlargereduce/", + "anchor": "Enlarge/Reduce" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-flying/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-gaseous-form/", + "crossreference_to": [ + "/v2/spells/srd-2024_gaseous-form/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gaseous-form/", + "anchor": "Gaseous Form" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-growth/", + "crossreference_to": [ + "/v2/spells/srd-2024_enlargereduce/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_enlargereduce/", + "anchor": "Enlarge/Reduce" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-mind-reading/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-thoughts/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-resistance/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_potion-of-speed/", + "crossreference_to": [ + "/v2/spells/srd-2024_haste/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_haste/", + "anchor": "Haste" + } + ] + }, + { + "url": "/v2/items/srd-2024_rapier-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-jumping/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-resistance/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-three-wishes/", + "crossreference_to": [ + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/items/srd-2024_ring-of-water-walking/", + "crossreference_to": [ + "/v2/spells/srd-2024_water-walk/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_water-walk/", + "anchor": "Water Walk" + } + ] + }, + { + "url": "/v2/items/srd-2024_robe-of-stars/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-missile/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + } + ] + }, + { + "url": "/v2/items/srd-2024_rope-of-climbing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_rope-of-entanglement/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_scarab-of-protection/", + "crossreference_to": [ + "/v2/feats/srd-2024_defense/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_defense/", + "anchor": "Defense" + } + ] + }, + { + "url": "/v2/items/srd-2024_scimitar-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_shield-of-missile-attraction/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_shortsword-of-life-stealing/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/items/srd-2024_spellguard-shield/", + "crossreference_to": [ + "/v2/spells/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-striking/", + "crossreference_to": [ + "/v2/items/srd-2024_quarterstaff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-thunder-and-lightning/", + "crossreference_to": [ + "/v2/items/srd-2024_quarterstaff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + } + ] + }, + { + "url": "/v2/items/srd-2024_staff-of-withering/", + "crossreference_to": [ + "/v2/items/srd-2024_quarterstaff/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_quarterstaff/", + "anchor": "Quarterstaff" + } + ] + }, + { + "url": "/v2/items/srd-2024_talisman-of-pure-good/", + "crossreference_to": [ + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_talisman-of-the-sphere/", + "crossreference_to": [ + "/v2/items/srd-2024_sphere-of-annihilation/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sphere-of-annihilation/", + "anchor": "Sphere of Annihilation" + } + ] + }, + { + "url": "/v2/items/srd-2024_talisman-of-ultimate-evil/", + "crossreference_to": [ + "/v2/spells/srd-2024_symbol/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_symbol/", + "anchor": "Symbol" + } + ] + }, + { + "url": "/v2/items/srd-2024_trident-of-fish-command/", + "crossreference_to": [ + "/v2/spells/srd-2024_dominate-beast/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dominate-beast/", + "anchor": "Dominate Beast" + } + ] + }, + { + "url": "/v2/items/srd-2024_universal-solvent/", + "crossreference_to": [ + "/v2/items/srd-2024_sovereign-glue/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_sovereign-glue/", + "anchor": "Sovereign Glue" + } + ] + }, + { + "url": "/v2/items/srd-2024_vorpal-glaive/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_vorpal-greatsword/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_vorpal-longsword/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_vorpal-scimitar/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-fireballs/", + "crossreference_to": [ + "/v2/spells/srd-2024_fireball/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-lightning-bolts/", + "crossreference_to": [ + "/v2/spells/srd-2024_lightning-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "anchor": "Lightning Bolt" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-magic-detection/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-magic-missiles/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-missile/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + } + ] + }, + { + "url": "/v2/items/srd-2024_wand-of-polymorph/", + "crossreference_to": [ + "/v2/spells/srd-2024_polymorph/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Polymorph" + } + ] + }, + { + "url": "/v2/items/srd-2024_wind-fan/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/items/srd-2024_winged-boots/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/items/srd-2024_wings-of-flying/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/skills/srd-2024_athletics/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/species/srd-2024_dragonborn_draconic-ancestry/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/species/srd-2024_dragonborn_breath-weapon/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/species/srd-2024_dragonborn_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_dragonborn_draconic-flight/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/species/srd-2024_dwarf_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_dwarf_stonecunning/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/species/srd-2024_elf_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_gnome_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_goliath_giant-ancestry/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/species/srd-2024_human_versatile/", + "crossreference_to": [ + "/v2/feats/srd-2024_skilled/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_skilled/", + "anchor": "Skilled" + } + ] + }, + { + "url": "/v2/species/srd-2024_orc_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_tiefling_darkvision/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/species/srd-2024_tiefling_otherworldly-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_thaumaturgy/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "anchor": "Thaumaturgy" + } + ] + }, + { + "url": "/v2/feats/srd-2024_alert_1_initative-proficiency/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit_2/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit_3/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/feats/srd-2024_defense_1/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/feats/srd-2024_two-weapon-fighting_1/", + "crossreference_to": [ + "/v2/weaponproperties/srd-2024_light-wp/" + ], + "matches": [ + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "anchor": "Light" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_feat/", + "crossreference_to": [ + "/v2/feats/srd-2024_alert/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_alert/", + "anchor": "Alert" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_tool-proficiencies/", + "crossreference_to": [ + "/v2/items/srd-2024_thieves-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_feat/", + "crossreference_to": [ + "/v2/feats/srd-2024_savage-attacker/" + ], + "matches": [ + { + "url": "/v2/feats/srd-2024_savage-attacker/", + "anchor": "Savage Attacker" + } + ] + }, + { + "url": "/v2/conditions/srd-2024_charmed/", + "crossreference_to": [ + "/v2/spells/srd-2024_harm/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_harm/", + "anchor": "Harm" + } + ] + }, + { + "url": "/v2/conditions/srd-2024_exhaustion/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/conditions/srd-2024_paralyzed/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_critical-hits/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Critical Hits" + } + ] + }, + { + "url": "/v2/conditions/srd-2024_petrified/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/conditions/srd-2024_unconscious/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_critical-hits/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_critical-hits/", + "anchor": "Critical Hits" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_frightful-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_acid-breath-recharge/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_sonic-boom/", + "crossreference_to": [ + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_blazing-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_guiding-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_mind-jolt/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_guiding-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_mind-invasion/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_commanding-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_fiery-rays/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_chill/", + "crossreference_to": [ + "/v2/spells/srd-2024_hold-monster/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_ice-knife/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_ice-knife/", + "anchor": "Ice Knife" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_frightful-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_frightful-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_sonic-boom/", + "crossreference_to": [ + "/v2/spells/srd-2024_shatter/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_shatter/", + "anchor": "Shatter" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_blazing-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_guiding-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_mind-jolt/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_guiding-light/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_guiding-bolt/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "anchor": "Guiding Bolt" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_mind-invasion/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_mind-spike/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mind-spike/", + "anchor": "Mind Spike" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_commanding-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_fiery-rays/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_scorching-ray/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "anchor": "Scorching Ray" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_chill/", + "crossreference_to": [ + "/v2/spells/srd-2024_hold-monster/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hold-monster/", + "anchor": "Hold Monster" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_ice-knife/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_ice-knife/", + "anchor": "Ice Knife" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_frightful-presence/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ankheg_acid-spray-recharge-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ankheg_bite/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ankheg_acid-spray/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_balor_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_whip/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_whip/", + "anchor": "Whip" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_bearded-devil_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_glaive/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_glaive/", + "anchor": "Glaive" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_chain/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_chain/", + "anchor": "Chain" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_slam/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_darkmantle_darkness-aura-1-day/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_darkmantle_darkness-aura/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_deva_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_mace/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_read-thoughts/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-thoughts/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "anchor": "Detect Thoughts" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_dryad_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_charm-monster/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_charm-monster/", + "anchor": "Charm Monster" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_sleep-1-day/", + "crossreference_to": [ + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_entangling-rope-requires-magic-rope/", + "crossreference_to": [ + "/v2/items/srd-2024_rope/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_rope/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_entangling-rope/", + "crossreference_to": [ + "/v2/items/srd-2024_rope/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_rope/", + "anchor": "Rope" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_web-strand-recharge-5-6/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_web-strand/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_gelatinous-cube_pseudopod/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ghost_etherealness/", + "crossreference_to": [ + "/v2/spells/srd-2024_etherealness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_etherealness/", + "anchor": "Etherealness" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_web-recharge-5-6/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_web/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_hill-giant_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_club/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_ice-wall-recharge-6/", + "crossreference_to": [ + "/v2/spells/srd-2024_wall-of-ice/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "anchor": "Wall of Ice" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_spear/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_ice-wall/", + "crossreference_to": [ + "/v2/spells/srd-2024_wall-of-ice/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "anchor": "Wall of Ice" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_fog-cloud-1-day/", + "crossreference_to": [ + "/v2/spells/srd-2024_fog-cloud/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Fog Cloud" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_fog-cloud/", + "crossreference_to": [ + "/v2/spells/srd-2024_fog-cloud/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "anchor": "Fog Cloud" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_imp_invisibility/", + "crossreference_to": [ + "/v2/spells/srd-2024_invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_imp_shape-shift/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_lich_frightening-gaze/", + "crossreference_to": [ + "/v2/spells/srd-2024_fear/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fear/", + "anchor": "Fear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mimic_bite/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mimic_pseudopod/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_dread-command/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_ochre-jelly_pseudopod/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_pirate_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_dagger/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dagger/", + "anchor": "Dagger" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_mace/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_priest_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_mace/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_mace/", + "anchor": "Mace" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_quasit_invisibility/", + "crossreference_to": [ + "/v2/spells/srd-2024_invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_quasit_shape-shift/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_roper_tentacle/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_antennae/", + "crossreference_to": [ + "/v2/spells/srd-2024_mending/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_salamander_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_spear/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_spear/", + "anchor": "Spear" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_illusory-appearance/", + "crossreference_to": [ + "/v2/spells/srd-2024_disguise-self/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disguise-self/", + "anchor": "Disguise Self" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_sprite_invisibility/", + "crossreference_to": [ + "/v2/spells/srd-2024_invisibility/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_invisibility/", + "anchor": "Invisibility" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_stone-giant_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_club/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_club/", + "anchor": "Club" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_succubus_charm/", + "crossreference_to": [ + "/v2/spells/srd-2024_dominate-person/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dominate-person/", + "anchor": "Dominate Person" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_shimmering-shield/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vampire_beguile/", + "crossreference_to": [ + "/v2/spells/srd-2024_command/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_command/", + "anchor": "Command" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vampire-familiar_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_dagger/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_dagger/", + "anchor": "Dagger" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vrock_spores-recharge-6/", + "crossreference_to": [ + "/v2/items/srd-2024_holy-water/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_holy-water/", + "anchor": "Holy Water" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vrock_spores/", + "crossreference_to": [ + "/v2/items/srd-2024_holy-water/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_holy-water/", + "anchor": "Holy Water" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_werebear_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_handaxe/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_handaxe/", + "anchor": "Handaxe" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_javelin/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_javelin/", + "anchor": "Javelin" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_wererat_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_hand-crossbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_hand-crossbow/", + "anchor": "Hand Crossbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_multiattack/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_rend/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_multiattack/", + "crossreference_to": [ + "/v2/spells/srd-2024_sleep/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_sleep/", + "anchor": "Sleep" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_acid-breath-recharge-5-6/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_acid-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_mucus-cloud/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_chuul_sense-magic/", + "crossreference_to": [ + "/v2/spells/srd-2024_detect-magic/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_detect-magic/", + "anchor": "Detect Magic" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_acid-absorption/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_djinni_wishes/", + "crossreference_to": [ + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_wishes/", + "crossreference_to": [ + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_frog_standing-leap/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_giant-frog_standing-leap/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_giant-toad_standing-leap/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_corrosive-form/", + "crossreference_to": [ + "/v2/spells/srd-2024_mending/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_mending/", + "anchor": "Mending" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_celestial-restoration/", + "crossreference_to": [ + "/v2/spells/srd-2024_dispel-evil-and-good/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "anchor": "Dispel Evil and Good" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_draconic-origin/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_lion_running-leap/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_undead-restoration/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_saber-toothed-tiger_running-leap/", + "crossreference_to": [ + "/v2/spells/srd-2024_jump/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_jump/", + "anchor": "Jump" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_fiendish-restoration/", + "crossreference_to": [ + "/v2/spells/srd-2024_wish/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_wish/", + "anchor": "Wish" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-bats_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-crawling-claws_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-insects_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-piranhas_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-rats_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-ravens_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-venomous-snakes_swarm/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_reflective-carapace/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-missile/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_troll-limb_regeneration/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_troll_regeneration/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_vampire-weakness/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/creatures/srd-2024_vampire_vampire-weakness/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_barbarian-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_path-of-the-berserker/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_path-of-the-berserker/", + "anchor": "Path of the Berserker" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_brutal-strike/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_reckless-attack/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_reckless-attack/", + "anchor": "Reckless Attack" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_improved-brutal-strike/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_brutal-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_brutal-strike/", + "anchor": "Brutal Strike" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_improved-brutal-strike-enhanced/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_brutal-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_brutal-strike/", + "anchor": "Brutal Strike" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_instinctive-pounce/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_persistent-rage/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_primal-knowledge/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_barbarian_relentless-rage/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_bard-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_college-of-lore/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_college-of-lore/", + "anchor": "College of Lore" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bardic-die/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-die/", + "anchor": "Bardic Die" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_font-of-inspiration/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bardic-inspiration/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "anchor": "Bardic Inspiration" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_jack-of-all-trades/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/classes/srd-2024_bard_superior-inspiration/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bardic-inspiration/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "anchor": "Bardic Inspiration" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_cleric-subclasses/", + "crossreference_to": [ + "/v2/classes/srd-2024_life-domain/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_life-domain/", + "anchor": "Life Domain" + } + ] + }, + { + "url": "/v2/classes/srd-2024_cleric_divine-order/", + "crossreference_to": [ + "/v2/classes/srd-2024_cleric_cleric-spell-list/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_cleric_cleric-spell-list/", + "anchor": "Cleric Spell List" + } + ] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_cutting-words/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bardic-inspiration/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "anchor": "Bardic Inspiration" + } + ] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_peerless-skill/", + "crossreference_to": [ + "/v2/classes/srd-2024_bard_bardic-inspiration/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_bard_bardic-inspiration/", + "anchor": "Bardic Inspiration" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_archdruid/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_beast-spells/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natural-recovery/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natures-sanctuary/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid/", + "anchor": "Druid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_circle-of-the-land_natures-ward/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_druid-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_circle-of-the-land/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_circle-of-the-land/", + "anchor": "Circle of the Land" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "crossreference_to": [ + "/v2/spells/srd-2024_speak-with-animals/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "anchor": "Speak with Animals" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_elemental-fury/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_improved-elemental-fury/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_elemental-fury/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_elemental-fury/", + "anchor": "Elemental Fury" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_primal-order/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druid-spell-list/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druid-spell-list/", + "anchor": "Druid Spell List" + } + ] + }, + { + "url": "/v2/classes/srd-2024_druid_wild-resurgence/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_wild-shape/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_wild-shape/", + "anchor": "Wild Shape" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_fighter-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_champion/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_champion/", + "anchor": "Champion" + } + ] + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind/", + "crossreference_to": [ + "/v2/classes/srd-2024_fighter_second-wind-uses/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fighter_second-wind-uses/", + "anchor": "Second Wind" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_acrobatic-movement/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_deflect-energy/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_deflect-attacks/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_deflect-attacks/", + "anchor": "Deflect Attacks" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_monk-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_warrior-of-the-open-hand/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warrior-of-the-open-hand/", + "anchor": "Warrior of the Open Hand" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_superior-defense/", + "crossreference_to": [ + "/v2/classes/srd-2024_monk_focus-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "anchor": "Focus Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_unarmored-defense/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/classes/srd-2024_monk_unarmored-movement/", + "crossreference_to": [ + "/v2/items/srd-2024_shield/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_shield/", + "anchor": "Shield" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-expansion/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_aura-of-protection/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "anchor": "Aura of Protection" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_faithful-steed/", + "crossreference_to": [ + "/v2/spells/srd-2024_find-steed/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_find-steed/", + "anchor": "Find Steed" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_paladin-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_oath-of-devotion/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_oath-of-devotion/", + "anchor": "Oath of Devotion" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_paladins-smite/", + "crossreference_to": [ + "/v2/spells/srd-2024_divine-smite/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_divine-smite/", + "anchor": "Divine Smite" + } + ] + }, + { + "url": "/v2/classes/srd-2024_paladin_restoring-touch/", + "crossreference_to": [ + "/v2/classes/srd-2024_paladin_lay-on-hands/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_paladin_lay-on-hands/", + "anchor": "Lay On Hands" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_deft-explorer/", + "crossreference_to": [ + "/v2/spells/srd-2024_creation/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_hunters-lore/", + "crossreference_to": [ + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_superior-hunters-prey/", + "crossreference_to": [ + "/v2/spells/srd-2024_hunters-mark/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "anchor": "Hunter's Mark" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_ranger-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_hunter/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_hunter/", + "anchor": "Hunter" + } + ] + }, + { + "url": "/v2/classes/srd-2024_ranger_tireless/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_rogue-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_thief/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_thief/", + "anchor": "Thief" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_fast-hands/", + "crossreference_to": [ + "/v2/items/srd-2024_thieves-tools/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_thieves-tools/", + "anchor": "Thieves' Tools" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_supreme-sneak/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue_cunning-strike/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue_cunning-strike/", + "anchor": "Cunning Strike" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_use-magic-device/", + "crossreference_to": [ + "/v2/items/srd-2024_spell-scroll/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_spell-scroll/", + "anchor": "Spell Scroll" + } + ] + }, + { + "url": "/v2/classes/srd-2024_rogue_thieves-cant/", + "crossreference_to": [ + "/v2/spells/srd-2024_creation/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_draconic-resilience/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer/", + "anchor": "Sorcerer" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_dragon-companion/", + "crossreference_to": [ + "/v2/spells/srd-2024_summon-dragon/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_summon-dragon/", + "anchor": "Summon Dragon" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_draconic-sorcery_elemental-affinity/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerer-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_draconic-sorcery/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_draconic-sorcery/", + "anchor": "Draconic Sorcery" + } + ] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcerous-restoration/", + "crossreference_to": [ + "/v2/classes/srd-2024_sorcerer_sorcery-points/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "anchor": "Sorcery Points" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_contact-patron/", + "crossreference_to": [ + "/v2/spells/srd-2024_contact-other-plane/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_contact-other-plane/", + "anchor": "Contact Other Plane" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-master/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Pact Magic" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_hurl-through-hell/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Pact Magic" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_magical-cunning/", + "crossreference_to": [ + "/v2/classes/srd-2024_warlock_pact-magic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_warlock_pact-magic/", + "anchor": "Pact Magic" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warlock_warlock-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_fiend-patron/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_fiend-patron/", + "anchor": "Fiend Patron" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_empowered-evocation/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_evocation-savant/", + "crossreference_to": [ + "/v2/classes/srd-2024_wizard/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_wizard/", + "anchor": "Wizard" + } + ] + }, + { + "url": "/v2/classes/srd-2024_wizard_wizard-subclass/", + "crossreference_to": [ + "/v2/classes/srd-2024_evoker/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_evoker/", + "anchor": "Evoker" + } + ] + }, + { + "url": "/v2/classes/srd-2024_circle-of-the-land/", + "crossreference_to": [ + "/v2/classes/srd-2024_druid_druidic/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_druid_druidic/", + "anchor": "Druidic" + } + ] + }, + { + "url": "/v2/classes/srd-2024_champion/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_combat/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker/", + "crossreference_to": [ + "/v2/classes/srd-2024_barbarian_rage/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_barbarian_rage/", + "anchor": "Rage" + } + ] + }, + { + "url": "/v2/classes/srd-2024_warrior-of-the-open-hand/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_combat/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/spells/srd-2024_acid-arrow/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_acid-splash/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_animal-shapes/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_arcane-eye/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/spells/srd-2024_calm-emotions/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_chromatic-orb/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_cloudkill/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_conjure-minor-elementals/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_contact-other-plane/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + } + ] + }, + { + "url": "/v2/spells/srd-2024_contingency/", + "crossreference_to": [ + "/v2/spells/srd-2024_water-breathing/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_water-breathing/", + "anchor": "Water Breathing" + } + ] + }, + { + "url": "/v2/spells/srd-2024_darkness/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkvision/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkvision/", + "anchor": "Darkvision" + } + ] + }, + { + "url": "/v2/spells/srd-2024_daylight/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/spells/srd-2024_detect-evil-and-good/", + "crossreference_to": [ + "/v2/spells/srd-2024_hallow/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_hallow/", + "anchor": "Hallow" + } + ] + }, + { + "url": "/v2/spells/srd-2024_dragons-breath/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_false-life/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_flesh-to-stone/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + } + ] + }, + { + "url": "/v2/spells/srd-2024_fog-cloud/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_foresight/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gate/", + "crossreference_to": [ + "/v2/rules/srd-2024_exploration_travel/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_exploration_travel/", + "anchor": "Travel" + } + ] + }, + { + "url": "/v2/spells/srd-2024_gentle-repose/", + "crossreference_to": [ + "/v2/spells/srd-2024_raise-dead/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_raise-dead/", + "anchor": "Raise Dead" + } + ] + }, + { + "url": "/v2/spells/srd-2024_heroes-feast/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_heroism/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_incendiary-cloud/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_moonbeam/", + "crossreference_to": [ + "/v2/spells/srd-2024_polymorph/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_polymorph/", + "anchor": "Polymorph" + } + ] + }, + { + "url": "/v2/spells/srd-2024_nondetection/", + "crossreference_to": [ + "/v2/spells/srd-2024_divination/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_divination/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/spells/srd-2024_planar-binding/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-circle/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-circle/", + "anchor": "Magic Circle" + } + ] + }, + { + "url": "/v2/spells/srd-2024_polymorph/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_protection-from-energy/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_raise-dead/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/spells/srd-2024_ray-of-enfeeblement/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/spells/srd-2024_resilient-sphere/", + "crossreference_to": [ + "/v2/spells/srd-2024_disintegrate/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_disintegrate/", + "anchor": "Disintegrate" + } + ] + }, + { + "url": "/v2/spells/srd-2024_resistance/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_resurrection/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sequester/", + "crossreference_to": [ + "/v2/spells/srd-2024_divination/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_divination/", + "anchor": "Divination" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shapechange/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_shield/", + "crossreference_to": [ + "/v2/spells/srd-2024_magic-missile/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_magic-missile/", + "anchor": "Magic Missile" + } + ] + }, + { + "url": "/v2/spells/srd-2024_silence/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sleep/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sorcerous-burst/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_stinking-cloud/", + "crossreference_to": [ + "/v2/spells/srd-2024_gust-of-wind/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "anchor": "Gust of Wind" + } + ] + }, + { + "url": "/v2/spells/srd-2024_sunburst/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/spells/srd-2024_tiny-hut/", + "crossreference_to": [ + "/v2/spells/srd-2024_darkness/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_darkness/", + "anchor": "Darkness" + } + ] + }, + { + "url": "/v2/spells/srd-2024_true-polymorph/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "anchor": "Temporary Hit Points" + } + ] + }, + { + "url": "/v2/spells/srd-2024_vitriolic-sphere/", + "crossreference_to": [ + "/v2/items/srd-2024_acid/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_acid/", + "anchor": "Acid" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-ice/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wall-of-stone/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_immunity/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "anchor": "Immunity" + } + ] + }, + { + "url": "/v2/spells/srd-2024_wish/", + "crossreference_to": [ + "/v2/spells/srd-2024_greater-restoration/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "anchor": "Greater Restoration" + } + ] + }, + { + "url": "/v2/spells/10602/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/spells/10603/", + "crossreference_to": [ + "/v2/rules/srd-2024_damage-and-healing_healing/" + ], + "matches": [ + { + "url": "/v2/rules/srd-2024_damage-and-healing_healing/", + "anchor": "Healing" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "crossreference_to": [ + "/v2/spells/srd-2024_creation/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_creation/", + "anchor": "Creation" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_bonus-dont-stack/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_the-six-abilities_ability-modifiers/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_d20-tests/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_d20-tests/", + "anchor": "D20 Tests" + } + ] + }, + { + "url": "/v2/rules/srd-2024_d20-tests_saving-throw/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_social-interaction_ability-checks/", + "crossreference_to": [ + "/v2/classes/srd-2024_rogue/" + ], + "matches": [ + { + "url": "/v2/classes/srd-2024_rogue/", + "anchor": "Rogue" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_saving-throw-proficiencies/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_exploration_interacting-with-objects/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_combat/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_combat/", + "anchor": "Combat" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_movement-and-position/", + "crossreference_to": [ + "/v2/spells/srd-2024_fly/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fly/", + "anchor": "Fly" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_damage-rolls/", + "crossreference_to": [ + "/v2/items/srd-2024_blowgun/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_blowgun/", + "anchor": "Blowgun" + } + ] + }, + { + "url": "/v2/rules/srd-2024_proficiency_equipment-proficiencies/", + "crossreference_to": [ + "/v2/rulesets/srd-2024_proficiency/" + ], + "matches": [ + { + "url": "/v2/rulesets/srd-2024_proficiency/", + "anchor": "Proficiency" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_saving-throws-and-damage/", + "crossreference_to": [ + "/v2/spells/srd-2024_fireball/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_fireball/", + "anchor": "Fireball" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_ranged-attacks/", + "crossreference_to": [ + "/v2/items/srd-2024_longbow/" + ], + "matches": [ + { + "url": "/v2/items/srd-2024_longbow/", + "anchor": "Longbow" + } + ] + }, + { + "url": "/v2/rules/srd-2024_combat_melee-attacks/", + "crossreference_to": [ + "/v2/spells/srd-2024_teleport/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_teleport/", + "anchor": "Teleport" + } + ] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_dropping-to-zero-hit-points/", + "crossreference_to": [ + "/v2/spells/srd-2024_raise-dead/" + ], + "matches": [ + { + "url": "/v2/spells/srd-2024_raise-dead/", + "anchor": "Raise Dead" + } + ] + }, + { + "url": "/v2/weaponproperties/srd-2024_ammunition-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_cleave-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_finesse-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_graze-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_heavy-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_light-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_loading-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_push-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_reach-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_sap-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_slow-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_thrown-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_two-handed-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_versatile-wp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/weaponproperties/srd-2024_vex-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_acid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_bludgeoning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_cold/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_fire/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_force/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_lightning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_necrotic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_piercing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_poison/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_psychic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_radiant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_slashing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/damagetypes/srd-2024_thunder/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-breastplate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-chain-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-chain-shirt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-half-plate-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-plate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-ring-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-scale-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_adamantine-armor-splint/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_airship/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-aberration-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-beast-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-celestial-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-construct-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-dragon-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-elemental-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-fey-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-fiend-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-giant-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-humanoid-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-monstrosity-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-ooze-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-plant-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-of-undead-slaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-plus-one/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-plus-three/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ammunition-plus-two/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_amulet-of-health/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_antitoxin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_backpack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ball-bearings/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_barrel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_basket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_battleaxe-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_battleaxe-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_battleaxe-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bead-of-force/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bedroll/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bell/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_belt-of-giant-strength-cloud/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_belt-of-giant-strength-fire/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_belt-of-giant-strength-frost-or-stone/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_belt-of-giant-strength-hill/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_belt-of-giant-strength-storm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_berserker-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_berserker-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_berserker-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_blanket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_block-and-tackle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_blowgun-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_blowgun-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_blowgun-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_book/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_boots-of-elvenkind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_boots-of-speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_boots-of-striding-and-springing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_boots-of-the-winterlands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bottle-glass/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bowl-of-commanding-water-elementals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_brazier-of-commanding-fire-elementals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_breastplate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_breastplate-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_breastplate-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_breastplate-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_bucket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_caltrops/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_camel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_candle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_carriage/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_cart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_case-crossbow-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_censer-of-controlling-air-elementals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-mail-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-mail-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-mail-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-shirt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-shirt-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-shirt-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chain-shirt-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chariot/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_chest/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_climbers-kit/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_cloak-of-displacement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_cloak-of-elvenkind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_cloak-of-protection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_cloak-of-the-manta-ray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_clothes-fine/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_clothes-travelers/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_club-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_club-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_club-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_costume/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_crowbar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dagger-of-venom/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dagger-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dagger-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dagger-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dancing-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dancing-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dancing-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dancing-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dancing-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dart-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dart-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dart-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_decanter-of-endless-water/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_defender-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dimensional-shackles/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dragon-slayer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dust-of-disappearance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dust-of-dryness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dwarven-half-plate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_dwarven-plate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_efficient-quiver/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_elemental-gem/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_elephant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_elven-chain-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_elven-chain-shirt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_eyes-of-the-eagle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_feed-per-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-bronze-griffon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-golden-lions/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-marble-elephant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-obsidian-stead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-onyx-dog/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_figurine-of-wondrous-power-serpentine-owl/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flail-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flail-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flail-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flame-tongue-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_flask/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_forgery-kit/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_frost-brand-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_galley/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gaming-set-dice/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gaming-set-dragonchess/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gaming-set-playing-cards/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gaming-set-three-dragon-ante/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gauntlets-of-ogre-power/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gem-of-seeing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_giant-slayer-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive-of-sharpness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glaive-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_glamoured-studded-leather/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_gloves-of-swimming-and-climbing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greataxe-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greataxe-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greataxe-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatclub-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatclub-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatclub-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword-of-sharpness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_greatsword-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_halberd-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_halberd-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_halberd-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_half-plate-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_half-plate-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_half-plate-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_half-plate-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hand-crossbow-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hand-crossbow-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hand-crossbow-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_handaxe-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_handaxe-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_handaxe-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_headband-of-intellect/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_healers-kit/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_heavy-crossbow-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hide-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hide-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hide-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hide-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_horn-of-blasting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_horse-draft/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_horse-riding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_horseshoes-of-a-zephyr/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_horseshoes-of-speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_hunting-trap/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_immovable-rod/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ink/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_javelin-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_javelin-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_javelin-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_jug/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_keelboat/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ladder/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_lance-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_lance-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_lance-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_lantern-of-revealing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_leather-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_leather-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_leather-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_leather-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-crossbow-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-crossbow-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-crossbow-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-hammer-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-hammer-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_light-hammer-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longbow-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longbow-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longbow-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longship/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword-of-sharpness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_longsword-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_luck-blade-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace-of-smiting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace-of-terror/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mace-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_magnifying-glass/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mantle-of-spell-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_manual-of-bodily-health/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_manual-of-gainful-exercise/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_manual-of-golems/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_manual-of-quickness-of-action/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_map/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_marvelous-pigments/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mastiff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_maul-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_maul-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_maul-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mirror/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-breastplate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-chain-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-chain-shirt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-half-plate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-plate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-ring-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-scale-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mithral-armor-splint/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_morningstar-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_morningstar-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_morningstar-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_mule/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_musket-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_musket-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_musket-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_navigators-tools/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_necklace-of-adaptation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_nine-lives-stealer-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_oathbow-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_oathbow-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_padded-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_padded-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_padded-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_padded-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_paper/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_parchment/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pearl-of-power/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_perfume/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_periapt-of-health/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_philter-of-love/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pike-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pike-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pike-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pipes-of-haunting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pipes-of-the-sewers/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pistol-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pistol-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pistol-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_plate-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_plate-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_plate-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_plate-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_poison-basic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_poisoners-kit/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pony/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pot-iron/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_potion-of-climbing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_potion-of-giant-strength/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_potion-of-healing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_potion-of-invisibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_potion-of-water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_pouch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_quarterstaff-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_quarterstaff-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_quarterstaff-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_quiver/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ram-portable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rapier-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rapier-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rapier-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rapier-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rations/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-mail-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-mail-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-mail-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-djinni-summoning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-evasion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-feather-falling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-free-action/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-invisibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-mind-shielding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-protection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-regeneration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-spell-storing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-spell-turning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-swimming/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-the-ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-warmth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_ring-of-x-ray-vision/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_robe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_robe-of-scintillating-colors/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_robe-of-the-archmagi/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rod-of-absorption/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rod-of-rulership/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rod-of-security/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rope/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_rowboat/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_saddle-exotic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_saddle-military/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_saddle-riding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sailing-ship/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scale-mail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scale-mail-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scale-mail-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scale-mail-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-of-sharpness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-of-speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_scimitar-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shield/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortbow-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortbow-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortbow-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortsword-of-wounding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortsword-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortsword-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shortsword-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_shovel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sickle-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sickle-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sickle-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_signal-whistle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sled/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sling-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sling-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_sling-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_slippers-of-spider-climbing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spear-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spear-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spear-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spell-scroll/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_splint-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_splint-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_splint-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_splint-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_spyglass/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_staff-of-charming/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_staff-of-the-python/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_stone-of-controlling-earth-elementals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_stone-of-good-luck-luckstone/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_string/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_studded-leather-armor-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_tent/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_thieves-tools/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_tome-of-clear-thought/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_tome-of-leadership-and-influence/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_tome-of-understanding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_torch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_trident-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_trident-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_trident-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vial/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_vicious-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wagon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-enemy-detection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-paralysis/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-secrets/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-the-war-mage-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-the-war-mage-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_wand-of-the-war-mage-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_war-pick-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_war-pick-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_war-pick-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warhammer-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warhammer-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warhammer-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warhorse/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_warship/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_waterskin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-blowgun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-dart/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-flail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-halberd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-lance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-maul/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-musket/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-quarterstaff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-sling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-trident/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-war-pick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_weapon-of-warning-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_well-of-many-worlds/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_whip-plus-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_whip-plus-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/items/srd-2024_whip-plus-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_cha/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_con/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_dex/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_int/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_str/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/abilities/srd-2024_wis/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_acrobatics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_animal-handling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_arcana/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_deception/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_history/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_insight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_intimidation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_investigation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_medicine/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_nature/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_perception/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_performance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_persuasion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_religion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_sleight-of-hand/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_stealth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/skills/srd-2024_survival/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dragonborn_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dragonborn_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dragonborn_damage-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dwarf_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dwarf_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dwarf_dwarven-resilience/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_dwarf_dwarven-toughness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_elf_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_elf_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_elf_fey-ancestry/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_elf_keen-senses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_elf_trance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_gnome_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_gnome_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_gnome_gnomish-cunning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_goliath_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_goliath_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_goliath_large-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_goliath_powerful-build/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_brave/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_halfling-nimbleness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_luck/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_halfling_naturally-stealthy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_human_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_human_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_human_resourceful/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_human_skillful/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_orc_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_orc_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_orc_relentless-endurance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_tiefling_size/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/species/srd-2024_tiefling_speed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_ability-score-improvement_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_ability-score-improvement_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_alert_2_initative-proficiency/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_archery_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-combat-prowess_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-combat-prowess_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-fate_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-fate_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense_3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-truesight_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-truesight_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_grappler_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_grappler_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_grappler_3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_grappler_4/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate_4/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_savage-attacker_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_skilled_1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_skilled_2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_alert/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_magic-initiate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_grappler/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-combat-prowess/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-dimensional-travel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-fate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-irresistible-offense/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-spell-recall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-the-night-spirit/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/feats/srd-2024_boon-of-truesight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_ability-scores/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_skill-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_acolyte_tool-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_ability-scores/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_criminal_skill-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_sage_ability-scores/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_sage_skill-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_sage_tool-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_ability-scores/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_skill-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/backgrounds/srd-2024_soldier_tool-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_blinded/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_deafened/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_frightened/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_grappled/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_incapacitated/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_invisible/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_poisoned/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_prone/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_restrained/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/conditions/srd-2024_stunned/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_aberration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_beast/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_celestial/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_construct/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_dragon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_elemental/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_fey/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_fiend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_giant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_humanoid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_monstrosity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_ooze/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_plant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creaturetypes/srd-2024_undead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_consume-memories/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_dominate-mind-2-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_lash/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_psychic-drain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_tentacle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_dominate-mind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_cloud-of-insects/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_tail-swipe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_scorching-sands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_sleep-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_repulsion-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_thunderclap/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_giggling-magic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_slowing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_banish/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_weakening-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_noxious-miasma/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_poison-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_poison-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_cold-gale/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_paralyzing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_freezing-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_air-elemental_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_air-elemental_thunderous-slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_air-elemental_whirlwind-recharge-4-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_air-elemental_whirlwind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_allosaurus_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_allosaurus_claws/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_cloud-of-insects/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_tail-swipe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_scorching-sands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_sleep-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_repulsion-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_thunderclap/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_giggling-magic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_slowing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_banish/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_weakening-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_noxious-miasma/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_poison-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_poison-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_cold-gale/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_paralyzing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_freezing-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_pounce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_animated-armor_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_animated-armor_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_animated-flying-sword_slash/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_animated-rug-of-smothering_smother/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ankylosaurus_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ankylosaurus_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ape_fist/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ape_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ape_rock-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ape_rock/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archelon_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archelon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archmage_arcane-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archmage_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_assassin_light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_assassin_shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_awakened-shrub_rake/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_awakened-tree_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_axe-beak_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_azer-sentinel_burning-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_baboon_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_badger_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_flame-whip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_lightning-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bandit_light-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bandit_scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bandit-captain_pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bandit-captain_scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_claws/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_hurl-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_basilisk_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bat_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bearded-devil_beard/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bearded-devil_infernal-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_behir_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_behir_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_behir_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_behir_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_behir_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_berserker_greataxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-bear_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-bear_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blink-dog_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blood-hawk_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blue-dragon-wyrmling_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blue-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blue-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blue-dragon-wyrmling_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_boar_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bone-devil_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bone-devil_infernal-sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bone-devil_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brass-dragon-wyrmling_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brass-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brass-dragon-wyrmling_sleep-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brass-dragon-wyrmling_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_repulsion-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brown-bear_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brown-bear_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_brown-bear_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-warrior_grab/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-warrior_light-hammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bulette_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bulette_deadly-leap/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bulette_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_camel_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cat_scratch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_centaur-trooper_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_centaur-trooper_pike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_chain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_conjure-infernal-chain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chimera_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chuul_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chuul_paralyzing-tentacles/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chuul_pincer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloaker_attach/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloaker_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloaker_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_thundercloud/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloud-giant_thunderous-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cockatrice_petrifying-bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_commoner_club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_constrictor-snake_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_constrictor-snake_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_copper-dragon-wyrmling_slowing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_couatl_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_couatl_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_crab_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_crocodile_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cultist_ritual-sickle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cultist-fanatic_pact-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_darkmantle_crush/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_death-dog_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_death-dog_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_deer_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_deva_holy-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dire-wolf_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_create-whirlwind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_storm-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_storm-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_unsettling-visage-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_doppelganger_unsettling-visage/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_draft-horse_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_steam-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_steam-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dretch_fetid-cloud-1-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dretch_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_foreleg/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_poison-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_druid_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_druid_verdant-wisp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_druid_vine-staff/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dryad_thorn-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dryad_vine-lash/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_blinding-breath-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_blinding-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_eagle_talons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_earth-elemental_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_earth-elemental_rock-launch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_earth-elemental_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_heated-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_hurl-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_elephant_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_elephant_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_elk_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_withering-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettin_battleaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettin_morningstar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_burn/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-giant_flame-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-giant_hammer-throw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-giant_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flying-snake_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_frog_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_frost-giant_frost-axe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_frost-giant_great-bow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_frost-giant_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gargoyle_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gargoyle_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gelatinous-cube_engulf/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghast_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghast_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_horrific-visage/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_possession-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_withering-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_possession/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghoul_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghoul_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghoul_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-ape_boulder-toss-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-ape_fist/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-ape_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-ape_boulder-toss/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-badger_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-bat_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-boar_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-centipede_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-constrictor-snake_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-constrictor-snake_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-constrictor-snake_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crab_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crocodile_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crocodile_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crocodile_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-eagle_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-eagle_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-elk_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-fire-beetle_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-frog_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-frog_swallow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-goat_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-hyena_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-lizard_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-octopus_tentacles/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_talons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-rat_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-scorpion_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-scorpion_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-scorpion_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-seahorse_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-shark_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-shark_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-toad_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-toad_swallow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-venomous-snake_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-vulture_gouge/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-wasp_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-weasel_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-wolf-spider_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gibbering-mouther_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gibbering-mouther_blinding-spittle-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gibbering-mouther_blinding-spittle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_pincer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_pummel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gladiator_shield-bash/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gladiator_spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gnoll-warrior_bone-bow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gnoll-warrior_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goat_ram/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goblin-boss_scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goblin-boss_shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goblin-minion_dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goblin-warrior_scimitar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_goblin-warrior_shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_weakening-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gorgon_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gorgon_petrifying-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gorgon_petrifying-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-dragon-wyrmling_poison-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-dragon-wyrmling_poison-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-hag_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-hag_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_grick_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_grick_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_grick_tentacles/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_griffon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_griffon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_grimlock_bone-cudgel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guard_spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guard-captain_javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guard-captain_longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_guardian-naga_poisonous-spittle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_dragon's-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_half-dragon_dragon's-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_harpy_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_harpy_luring-song/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hawk_talons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hell-hound_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hell-hound_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hell-hound_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hell-hound_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hezrou_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hezrou_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hill-giant_trash-lob/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hill-giant_tree-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippogriff_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippogriff_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippopotamus_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippopotamus_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-warrior_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-warrior_longsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_homunculus_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_hurl-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_infernal-tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_searing-fork/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hunter-shark_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hydra_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hydra_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hyena_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_ice-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_frost-breath-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_frost-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_imp_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_incubus_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_incubus_restless-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_invisible-stalker_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_invisible-stalker_vortex/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_invisible-stalker_wind-swipe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_bladed-arm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_fiery-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_poison-breath-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_poison-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_jackal_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_killer-whale_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_knight_greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_knight_heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kobold-warrior_dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_fling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_lightning-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_storm-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_swallow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_tentacle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_toxic-ink/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lamia_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lamia_corrupting-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lamia_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lemure_vile-slime/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_deathly-teleport/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_disrupt-life/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_eldritch-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_paralyzing-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lion_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lion_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lion_roar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lizard_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mage_arcane-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mage_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magma-mephit_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magma-mephit_fire-breath-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magma-mephit_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magmin_touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mammoth_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mammoth_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_manticore_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_manticore_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_manticore_tail-spike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_pact-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mastiff_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_medusa_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_medusa_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_medusa_poison-ray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_medusa_snake-hair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merfolk-skirmisher_ocean-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merrow_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merrow_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merrow_harpoon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merrow_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_minotaur-of-baphomet_abyssal-glaive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_minotaur-of-baphomet_gore-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_minotaur-of-baphomet_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_minotaur-skeleton_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_minotaur-skeleton_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mule_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy_dreadful-glare/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy_rotting-fist/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_channel-negative-energy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_dreadful-glare/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_glare/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_necrotic-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_rotting-fist/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nalfeshnee_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nalfeshnee_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nalfeshnee_teleport/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nightmare_ethereal-stride/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nightmare_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_noble_rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ogre_greatclub/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ogre_javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ogre-zombie_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_oni_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_oni_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_oni_nightmare-ray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_oni_shape-shift/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_otyugh_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_otyugh_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_otyugh_tentacle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_otyugh_tentacle-slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_owl_talons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_owlbear_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_owlbear_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_panther_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pegasus_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_phase-spider_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_phase-spider_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_piranha_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pirate_dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pirate_enthralling-panache/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pirate-captain_pistol/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pirate-captain_rapier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_devilish-claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_fiery-mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_holy-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_radiant-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_plesiosaurus_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_polar-bear_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_polar-bear_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pony_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_priest_mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_priest_radiant-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_priest-acolyte_mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_priest-acolyte_radiant-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pseudodragon_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pseudodragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pseudodragon_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pteranodon_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_purple-worm_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_purple-worm_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_purple-worm_tail-stinger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_quasit_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_quasit_scare-1-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_quasit_scare/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_baleful-command-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_cursed-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_baleful-command/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rat_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_raven_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_red-dragon-wyrmling_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_red-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_red-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_red-dragon-wyrmling_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_reef-shark_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_remorhaz_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rhinoceros_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_riding-horse_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roc_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roc_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roc_talons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roper_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roper_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roper_reel/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_destroy-metal/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_saber-toothed-tiger_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_saber-toothed-tiger_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sahuagin-warrior_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sahuagin-warrior_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_salamander_constrict/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_salamander_flame-spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_satyr_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_satyr_mockery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_scorpion_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_scout_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_scout_shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_death-glare-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_death-glare/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_seahorse_bubble-dash/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shadow_draining-swipe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shambling-mound_charged-tendril/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shambling-mound_engulf/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shambling-mound_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shield-guardian_fist/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shield-guardian_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_silver-dragon-wyrmling_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_silver-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_silver-dragon-wyrmling_paralyzing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_silver-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_silver-dragon-wyrmling_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_skeleton_shortbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_skeleton_shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_blinding-gaze/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_flying-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_radiant-teleport/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_slaying-bow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_specter_life-drain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_arcane-prowl/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_mind-rending-roar-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_weight-of-years/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_mind-rending-roar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_arcane-prowl/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_roar-3-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_weight-of-years/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_roar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-wonder_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spider_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spirit-naga_necrotic-ray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sprite_enchanting-bow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sprite_heart-sight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sprite_needle-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spy_hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spy_shortsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_steam-mephit_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_steam-mephit_steam-breath-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_steam-mephit_steam-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stirge_proboscis/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-giant_boulder/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-giant_stone-club/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-golem_force-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-golem_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-golem_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_lightning-storm-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_storm-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_thunderbolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_lightning-storm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_succubus_draining-kiss/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_succubus_fiendish-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_succubus_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-bats_bites/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-crawling-claws_swarm-of-grasping-hands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-insects_bites/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-piranhas_bites/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-rats_bites/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-ravens_beaks/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-ravens_cacophony-recharge-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-ravens_cacophony/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-venomous-snakes_bites/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_onslaught/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_thunderous-bellow-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_world-shaking-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_thunderous-bellow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tiger_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough_heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough_mace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough-boss_heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough-boss_warhammer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_animate-trees-1-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_hail-of-bark/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_animate-trees/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_triceratops_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_triceratops_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_troll_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_troll_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_troll-limb_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tyrannosaurus-rex_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tyrannosaurus-rex_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tyrannosaurus-rex_tail/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_charging-horn/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_radiant-horn/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_bite-bat-or-vampire-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_deathless-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_grave-strike-vampire-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_multiattack-vampire-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_grave-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-familiar_umbral-dagger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_venomous-snake_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_violet-fungus_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_violet-fungus_rotting-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_shred/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_stunning-screech-1-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_stunning-screech/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vulture_beak/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warhorse_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warhorse-skeleton_hooves/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warrior-infantry_spear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warrior-veteran_greatsword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warrior-veteran_heavy-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_whelm-recharge-4-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_whelm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weasel_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_bite-bear-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_handaxe-humanoid-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_rend-bear-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_handaxe/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werebear_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_gore-boar-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_javelin-humanoid-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_tusk-boar-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_gore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_javelin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wereboar_tusk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wererat_bite-rat-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wererat_hand-crossbow-humanoid-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wererat_scratch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wererat_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wererat_hand-crossbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_bite-tiger-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_longbow-humanoid-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_scratch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_weretiger_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_bite-wolf-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_longbow-humanoid-or-hybrid-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_scratch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_longbow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_white-dragon-wyrmling_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_white-dragon-wyrmling_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_white-dragon-wyrmling_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_white-dragon-wyrmling_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wight_life-drain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wight_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wight_necrotic-bow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wight_necrotic-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_will-o-wisp_shock/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_winter-wolf_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_winter-wolf_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_winter-wolf_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wolf_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_worg_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wraith_create-specter/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wraith_life-drain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wyvern_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wyvern_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wyvern_sting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_xorn_bite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_xorn_claw/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_xorn_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-blue-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-blue-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-blue-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-blue-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_sleep-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-brass-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_lightning-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_repulsion-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_lightning-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-copper-dragon_slowing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_weakening-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-green-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-green-dragon_poison-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-green-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-green-dragon_poison-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-red-dragon_fire-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-red-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-red-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-red-dragon_fire-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-silver-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-silver-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-silver-dragon_paralyzing-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-silver-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-silver-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-white-dragon_cold-breath-recharge-5-6/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-white-dragon_multiattack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-white-dragon_rend/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-white-dragon_cold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_zombie_slam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_eldritch-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_aboleth_probing-telepathy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-black-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-blue-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-brass-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-bronze-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-copper-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-gold-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-green-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-red-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-silver-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_ice-walk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_adult-white-dragon_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_air-elemental_air-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-black-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-blue-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-brass-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-bronze-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-copper-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-gold-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-green-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-red-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-silver-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_ice-walk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ancient-white-dragon_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ankheg_tunneler/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archelon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_archmage_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_assassin_evasion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_azer-sentinel_fire-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_azer-sentinel_illumination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_baboon_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_death-throes/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_fire-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_legendary-resistance-3-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_balor_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_barbed-hide/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_barbed-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bearded-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_berserker_bloodied-frenzy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-dragon-wyrmling_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_amorphous/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_black-pudding_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_blood-hawk_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_boar_bloodied-fury/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bone-devil_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bone-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bronze-dragon-wyrmling_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-stalker_abduct/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_bugbear-warrior_abduct/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cat_jumper/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chain-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_chuul_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_berserk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_immutable-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_clay-golem_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_cloaker_light-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_commoner_training/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_couatl_shielded-mind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_crab_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_crocodile_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_deer_agile/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_deva_exalted-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_deva_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dire-wolf_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_elemental-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_djinni_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dragon-turtle_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_sunlight-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_drider_web-walker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dryad_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dryad_speak-with-beasts-and-plants/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_dust-mephit_death-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_earth-elemental_earth-glide/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_earth-elemental_siege-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_elemental-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_efreeti_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_erinyes_magic-rope/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ettercap_web-walker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_fire-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_fire-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_illumination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_fire-elemental_water-susceptibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_aversion-to-fire/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_berserk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_immutable-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_lightning-absorption/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flesh-golem_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_flying-snake_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_frog_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gargoyle_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gelatinous-cube_ooze-cube/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gelatinous-cube_transparent/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghast_stench/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_ethereal-sight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ghost_incorporeal-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-boar_bloodied-fury/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crab_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-crocodile_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-fire-beetle_illumination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-frog_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-lizard_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-octopus_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-owl_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-rat_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-seahorse_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-shark_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-spider_web-walker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-toad_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-vulture_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-wasp_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_giant-wolf-spider_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gibbering-mouther_aberrant-ground/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gibbering-mouther_gibbering/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_demonic-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_glabrezu_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gold-dragon-wyrmling_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_gray-ooze_amorphous/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-dragon-wyrmling_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-hag_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_green-hag_mimicry/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hell-hound_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hezrou_demonic-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hezrou_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hezrou_stench/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippogriff_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hippopotamus_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-captain_aura-of-authority/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hobgoblin-warrior_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_homunculus_telepathic-bond/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_horned-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hunter-shark_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hydra_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hydra_multiple-heads/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hydra_reactive-heads/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_hyena_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-devil_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ice-mephit_death-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_imp_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_incubus_succubus-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_invisible-stalker_air-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_invisible-stalker_invisibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_fire-absorption/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_immutable-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_iron-golem_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_killer-whale_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kobold-warrior_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kobold-warrior_sunlight-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_kraken_siege-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_legendary-resistance-4-day,-or-5-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lich_spirit-jar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lion_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_lizard_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magma-mephit_death-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_magmin_death-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_demonic-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_marilith_reactive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merfolk-skirmisher_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_merrow_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mimic_adhesive-object-form-only/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mule_beast-of-burden/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_mummy-lord_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nalfeshnee_demonic-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nalfeshnee_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_night-hag_soul-bag/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nightmare_confer-fire-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_nightmare_illumination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ochre-jelly_amorphous/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ochre-jelly_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_ogre-zombie_undead-fortitude/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_oni_regeneration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_owl_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_phase-spider_ethereal-sight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_phase-spider_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_phase-spider_web-walker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_piranha_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_diabolical-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_fear-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_legendary-resistance-4-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pit-fiend_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_divine-awareness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_exalted-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_planetar_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_plesiosaurus_hold-breath/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pseudodragon_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_pteranodon_flyby/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_purple-worm_tunneler/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_quasit_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_fiendish-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rakshasa_greater-magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rat_agile/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_raven_mimicry/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_reef-shark_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_reef-shark_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_remorhaz_heat-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_roper_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_rust-monster_iron-scent/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sahuagin-warrior_blood-frenzy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sahuagin-warrior_limited-amphibiousness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sahuagin-warrior_shark-telepathy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_salamander_fire-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_satyr_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sea-hag_vile-appearance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_seahorse_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shadow_amorphous/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shadow_sunlight-weakness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shambling-mound_lightning-absorption/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shield-guardian_bound/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shield-guardian_regeneration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_shield-guardian_spell-storing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_divine-awareness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_exalted-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_legendary-resistance-4-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_solar_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_specter_incorporeal-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_specter_sunlight-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_inscrutable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-lore_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_inscrutable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-valor_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_sphinx-of-wonder_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spider_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_spider_web-walker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_steam-mephit_blurred-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_steam-mephit_death-burst/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-golem_immutable-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_stone-golem_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_storm-giant_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_succubus_incubus-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-insects_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_swarm-of-piranhas_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_legendary-resistance-6-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tarrasque_siege-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough-boss_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_tough_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_treant_siege-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_troll-limb_troll-spawn/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_troll_loathsome-limbs-4-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_legendary-resistance-3-day/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_unicorn_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-familiar_vampiric-connection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire-spawn_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_legendary-resistance-3-day,-or-4-day-in-lair/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_misty-escape/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vampire_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_demonic-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vrock_magic-resistance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_vulture_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_warrior-infantry_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_freeze/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_water-elemental_water-form/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_werewolf_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_white-dragon-wyrmling_ice-walk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wight_sunlight-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_will-o-wisp_ephemeral/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_will-o-wisp_illumination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_will-o-wisp_incorporeal-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_winter-wolf_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wolf_pack-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wraith_incorporeal-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_wraith_sunlight-sensitivity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_xorn_earth-glide/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_xorn_treasure-sense/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-black-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-bronze-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-gold-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-green-dragon_amphibious/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_young-white-dragon_ice-walk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/creatures/srd-2024_zombie_undead-fortitude/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_chaotic-evil/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_chaotic-good/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_chaotic-neutral/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_lawful-evil/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_lawful-good/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_lawful-neutral/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_neutral/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_neutral-evil/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/alignments/srd-2024_neutral-good/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_danger-sense/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_extra-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_fast-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_feral-instinct/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_indomitable-might/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_primal-champion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rage-damage/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_rages/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_reckless-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_barbarian_weapon-mastery-count/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_bardic-die/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_countercharm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_expertise/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-6th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-7th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-8th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_bard_slots-9th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_blessed-strikes/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_channel-divinity-uses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_divine-intervention/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_blessed-healer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_life-domain_disciple-of-life/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_sear-undead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-6th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-7th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-8th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_cleric_slots-9th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore_bonus-proficiencies/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-6th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-7th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-8th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_slots-9th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_druid_wild-shape-uses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_action-surge/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_heroic-warrior/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_improved-critical/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_remarkable-athlete/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_superior-critical/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_champion_survivor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_extra-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_indomitable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_second-wind-uses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_studied-attacks/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_three-extra-attacks/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_two-extra-attacks/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fighter_weapon-mastery-count/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_body-and-mind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_disciplined-survivor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_empowered-strikes/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_evasion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_extra-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_focus-points/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_martial-arts-dice/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_self-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_slow-fall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_stunning-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_fleet-step/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_monk_warrior-of-the-open-hand_open-hand-technique/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_aura-of-protection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_channel-divinity-uses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_extra-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_lay-on-hands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_radiant-strikes/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_paladin_weapon-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_path-of-the-berserker_retaliation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_expertise/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_extra-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_favored-enemy-uses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_feral-senses/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_defensive-tactics/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_hunters-prey/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_hunter_superior-hunters-defense/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_natures-veil/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_roving/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_ranger_weapon-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_cunning-action/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_elusive/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_evasion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_expertise/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_reliable-talent/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_slippery-mind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_sneak-attack-column-data/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_steady-aim/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_stroke-of-luck/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_second-story-work/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_thief_thiefs-reflexes/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_uncanny-dodge/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_rogue_weapon-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_innate-sorcery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-6th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-7th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-8th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_slots-9th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_sorcerer_sorcery-points/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_eldritch-invocation-count/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_dark-ones-own-luck/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_fiend-patron_fiendish-resilience/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_mystic-arcanum/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_slot-level/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_warlock_spell-slots/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_arcane-recovery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_cantrips/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_potent-cantrip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_evoker_sculpt-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_memorize-spell/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_prepared-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_proficiency-bonus/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_ritual-adept/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_scholar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_signature-spells/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-1st/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-2nd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-3rd/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-4th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-5th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-6th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-7th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-8th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_slots-9th/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_wizard_spell-mastery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_college-of-lore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_draconic-sorcery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_evoker/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_fiend-patron/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_hunter/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_life-domain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_oath-of-devotion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/classes/srd-2024_thief/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_aid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_alarm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_alter-self/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_animal-friendship/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_animal-messenger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_animate-dead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_animate-objects/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_antilife-shell/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_antimagic-field/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_antipathysympathy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_arcane-hand/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_arcane-lock/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_arcane-sword/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_arcanists-magic-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_astral-projection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_augury/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_aura-of-life/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_awaken/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_bane/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_banishment/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_barkskin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_beacon-of-hope/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_bestow-curse/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_black-tentacles/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_blade-barrier/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_bless/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_blight/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_blindnessdeafness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_blink/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_blur/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_burning-hands/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_call-lightning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_chain-lightning/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_charm-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_charm-person/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_chill-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_circle-of-death/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_clone/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_color-spray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_command/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_commune/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_commune-with-nature/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_comprehend-languages/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_compulsion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_cone-of-cold/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_confusion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_conjure-animals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_conjure-celestial/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_conjure-elemental/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_conjure-fey/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_conjure-woodland-beings/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_contagion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_continual-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_control-water/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_control-weather/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_counterspell/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_create-food-and-water/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_create-or-destroy-water/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_create-undead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_creation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_cure-wounds/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dancing-lights/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_darkvision/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_death-ward/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_delayed-blast-fireball/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_demiplane/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_detect-magic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_detect-poison-and-disease/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_detect-thoughts/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dimension-door/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_disguise-self/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dispel-evil-and-good/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dispel-magic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dissonant-whispers/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_divination/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_divine-favor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_divine-smite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_divine-word/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dominate-beast/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dominate-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dominate-person/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_dream/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_druidcraft/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_earthquake/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_eldritch-blast/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_elementalism/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_enhance-ability/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_enlargereduce/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_ensnaring-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_entangle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_enthrall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_etherealness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_expeditious-retreat/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_eyebite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fabricate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_faerie-fire/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_faithful-hound/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fear/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_feather-fall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_find-familiar/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_find-steed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_find-the-path/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_finger-of-death/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fire-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fire-shield/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fire-storm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_fireball/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_flame-blade/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_flame-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_flaming-sphere/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_floating-disk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_freedom-of-movement/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_giant-insect/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_glibness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_globe-of-invulnerability/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_glyph-of-warding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_goodberry/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_grease/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_greater-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_guardian-of-faith/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_guidance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_guiding-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_gust-of-wind/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hallow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hallucinatory-terrain/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_harm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_haste/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_heal/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_healing-word/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_heat-metal/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hellish-rebuke/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hex/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hideous-laughter/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hold-monster/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hold-person/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_holy-aura/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hunters-mark/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_hypnotic-pattern/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_ice-knife/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_ice-storm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_identify/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_illusory-script/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_inflict-wounds/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_insect-plague/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_instant-summons/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_invisibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_irresistible-dance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_jump/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_legend-lore/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_lesser-restoration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_levitate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_light/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_lightning-bolt/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_locate-animals-or-plants/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_locate-object/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_longstrider/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mage-armor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mage-hand/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_magic-circle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_magic-missile/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_magic-mouth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_magic-weapon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_magnificent-mansion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_major-image/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mass-cure-wounds/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mass-heal/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mass-healing-word/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mass-suggestion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_maze/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_meld-into-stone/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mending/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_message/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_meteor-swarm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mind-spike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_minor-illusion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mirage-arcane/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mirror-image/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_mislead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_misty-step/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_move-earth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_pass-without-trace/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_passwall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_phantasmal-force/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_phantasmal-killer/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_phantom-steed/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_planar-ally/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_plane-shift/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_plant-growth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_poison-spray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_power-word-heal/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_power-word-kill/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_power-word-stun/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_prayer-of-healing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_prestidigitation/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_prismatic-spray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_prismatic-wall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_produce-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_programmed-illusion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_project-image/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_protection-from-evil-and-good/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_protection-from-poison/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_purify-food-and-drink/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_ray-of-frost/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_ray-of-sickness/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_regenerate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_reincarnate/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_remove-curse/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_reverse-gravity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_revivify/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_rope-trick/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_sacred-flame/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_sanctuary/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_scorching-ray/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_scrying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_searing-smite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_secret-chest/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_see-invisibility/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_seeming/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_sending/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_shatter/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_shield-of-faith/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_shining-smite/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_shocking-grasp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_silent-image/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_simulacrum/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_sleet-storm/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_slow/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_spare-the-dying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_speak-with-animals/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_speak-with-dead/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_speak-with-plants/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_spider-climb/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_spike-growth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_spirit-guardians/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_spiritual-weapon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_starry-wisp/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_stone-shape/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_stoneskin/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_storm-of-vengeance/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_suggestion/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_summon-dragon/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_sunbeam/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_telekinesis/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_telepathic-bond/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_teleport/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_teleportation-circle/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_thaumaturgy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_thunderwavea/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_time-stop/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_tongues/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_transport-via-plants/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_tree-stride/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_true-resurrection/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_true-seeing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_true-strike/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_tsunami/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_unseen-servant/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_vampiric-touch/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_vicious-mockery/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_wall-of-fire/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_wall-of-thorns/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_warding-bond/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_water-breathing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_water-walk/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_web/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_weird/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_wind-wall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_word-of-recall/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_zone-of-truth/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/srd-2024_freezing-sphere/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10585/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10586/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10587/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10588/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10589/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10590/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10591/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10592/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10593/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10594/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10595/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10596/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10597/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10023/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10024/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10025/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10026/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10598/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10599/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10600/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10601/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10668/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10148/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10149/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10150/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10151/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10152/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10153/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10154/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10155/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10156/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10157/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10158/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10176/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10177/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10178/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10179/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10180/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10181/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10182/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10221/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10222/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10223/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10224/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10225/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10226/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10227/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10228/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10229/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10230/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10231/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10232/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10233/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10234/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10235/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10282/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10283/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10284/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10285/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10286/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10287/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10288/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10289/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10604/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10605/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10606/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10607/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10608/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10609/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10610/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10611/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10612/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10452/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10453/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10454/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10455/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10613/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10614/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10615/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10616/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10617/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10546/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10547/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10548/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/spells/10549/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_combat/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_damage-and-healing/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_exploration/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_rhythm-of-play/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_social-interaction/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rulesets/srd-2024_the-six-abilities/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_the-six-abilities_ability-scores/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_social-interaction_roleplaying/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_hit-points/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_combat_playing-on-a-grid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_resting/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_exploration_hiding/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_d20-tests_advantage-disadvantage/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_exploration_marching-order/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_combat_making-an-attack/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_exploration_hazards/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_combat_unseen-attackers-and-target/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_combat_cover/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_damage-types/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_resistance-and-vulnerability/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_immunity/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_combat_mounted-combat/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_knocking-out-a-creature/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/rules/srd-2024_damage-and-healing_temporary-hit-points/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-wretched/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-squalid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-poor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-modest/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-comfortable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-wealthy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lifestyle-aristocratic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-squalid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-poor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-modest/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-comfortable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-wealthy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_meal-aristocratic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-squalid/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-poor/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-modest/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-comfortable/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-wealthy/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_lodging-aristocratic/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_skilled-hireling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_untrained-hireling/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_messenger/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-cantrip/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-1/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-2/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-3/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-4-5/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-6-8/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_spellcasting-level-9/", + "crossreference_to": [], + "matches": [] + }, + { + "url": "/v2/services/srd-2024_stabling-per-day/", + "crossreference_to": [], + "matches": [] + } +] \ No newline at end of file From c60d703d8e9733568f0cf85d2c2ce4c62d38f9ce Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sun, 15 Feb 2026 14:36:01 -0600 Subject: [PATCH 04/33] Enhance CrossReference model by adding document field for denormalization and indexing. Update export command logic to simplify model checks. --- api_v2/management/commands/export.py | 2 +- .../0073_crossreference_document.py | 59 +++++++++++++++++++ ...umen_idx_api_v2_cros_documen_7cb8b8_idx.py | 18 ++++++ api_v2/models/crossreference.py | 11 +++- .../crossreference/apply_crossreferences.py | 1 + 5 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 api_v2/migrations/0073_crossreference_document.py create mode 100644 api_v2/migrations/0074_rename_api_v2_cros_documen_idx_api_v2_cros_documen_7cb8b8_idx.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 8e0d9d89..c2cc971a 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -127,7 +127,7 @@ def handle(self, *args, **options) -> None: CHILD_MODEL_NAMES = ['SpeciesTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction', 'CreatureTrait'] CHILD_CHILD_MODEL_NAMES = ['CreatureActionAttack'] - if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES and model.__name__ not in CONCEPT_MODEL_NAMES: + if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: modelq=None if model.__name__ in CHILD_CHILD_MODEL_NAMES: modelq = model.objects.filter(parent__parent__document=doc).order_by('pk') diff --git a/api_v2/migrations/0073_crossreference_document.py b/api_v2/migrations/0073_crossreference_document.py new file mode 100644 index 00000000..6fd17215 --- /dev/null +++ b/api_v2/migrations/0073_crossreference_document.py @@ -0,0 +1,59 @@ +# Generated by Django 5.2.1 + +import django.db.models.deletion +from django.db import migrations, models + + +def backfill_crossreference_document(apps, schema_editor): + CrossReference = apps.get_model("api_v2", "CrossReference") + ContentType = apps.get_model("contenttypes", "ContentType") + for cr in CrossReference.objects.select_related("source_content_type").iterator(): + model = cr.source_content_type.model_class() + if model is None: + continue + try: + obj = model.objects.get(pk=cr.source_object_key) + except model.DoesNotExist: + continue + document = getattr(obj, "document", None) + if document is None and hasattr(obj, "parent") and obj.parent_id is not None: + document = getattr(obj.parent, "document", None) + if document is None and hasattr(obj, "parent") and getattr(obj.parent, "parent_id", None) is not None: + document = getattr(obj.parent.parent, "document", None) + if document is not None: + cr.document_id = document.pk + cr.save(update_fields=["document_id"]) + + +class Migration(migrations.Migration): + + dependencies = [ + ("api_v2", "0072_crossreference"), + ] + + operations = [ + migrations.AddField( + model_name="crossreference", + name="document", + field=models.ForeignKey( + help_text="Document the source object belongs to (denormalized for filtering).", + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="api_v2.document", + ), + ), + migrations.RunPython(backfill_crossreference_document, migrations.RunPython.noop), + migrations.AlterField( + model_name="crossreference", + name="document", + field=models.ForeignKey( + help_text="Document the source object belongs to (denormalized for filtering).", + on_delete=django.db.models.deletion.CASCADE, + to="api_v2.document", + ), + ), + migrations.AddIndex( + model_name="crossreference", + index=models.Index(fields=["document"], name="api_v2_cros_documen_idx"), + ), + ] diff --git a/api_v2/migrations/0074_rename_api_v2_cros_documen_idx_api_v2_cros_documen_7cb8b8_idx.py b/api_v2/migrations/0074_rename_api_v2_cros_documen_idx_api_v2_cros_documen_7cb8b8_idx.py new file mode 100644 index 00000000..ee32eeed --- /dev/null +++ b/api_v2/migrations/0074_rename_api_v2_cros_documen_idx_api_v2_cros_documen_7cb8b8_idx.py @@ -0,0 +1,18 @@ +# Generated by Django 5.2.1 on 2026-02-15 20:34 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0073_crossreference_document'), + ] + + operations = [ + migrations.RenameIndex( + model_name='crossreference', + new_name='api_v2_cros_documen_7cb8b8_idx', + old_name='api_v2_cros_documen_idx', + ), + ] diff --git a/api_v2/models/crossreference.py b/api_v2/models/crossreference.py index 35af820e..5c84a9a8 100644 --- a/api_v2/models/crossreference.py +++ b/api_v2/models/crossreference.py @@ -4,15 +4,23 @@ from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType +from .document import Document + class CrossReference(models.Model): """ A cross reference from a span of text in one object's description to another object. The source is the object that contains the description. The reference is the object - being linked to. + being linked to. document is always the source object's document. """ + document = models.ForeignKey( + Document, + on_delete=models.CASCADE, + help_text="Document the source object belongs to (denormalized for filtering).", + ) + # Source: the object that with the description source_content_type = models.ForeignKey( ContentType, @@ -48,6 +56,7 @@ class Meta: verbose_name_plural = "crossreferences" ordering = ["source_content_type", "source_object_key", "id"] indexes = [ + models.Index(fields=["document"]), models.Index(fields=["source_content_type", "source_object_key"]), models.Index(fields=["reference_content_type", "reference_object_key"]), ] diff --git a/scripts/crossreference/apply_crossreferences.py b/scripts/crossreference/apply_crossreferences.py index d3ca2d1f..0366870d 100644 --- a/scripts/crossreference/apply_crossreferences.py +++ b/scripts/crossreference/apply_crossreferences.py @@ -66,6 +66,7 @@ def write(line: str) -> None: ref_ct, ref_key = ref_url_to_ct_key[ref_url] to_create.append( CrossReference( + document=doc, source_content_type_id=src_ct_id, source_object_key=source_object_key, reference_content_type=ref_ct, From 5e7766d6ebc9cfdff4712f4f4de26ca146e2d32b Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sun, 15 Feb 2026 14:37:50 -0600 Subject: [PATCH 05/33] Add CrossReference.json file for SRD 2024 with comprehensive cross-references for various game elements, enhancing data structure and accessibility. --- .../srd-2024/CrossReference.json | 24734 ++++++++++++++++ 1 file changed, 24734 insertions(+) create mode 100644 data/v2/wizards-of-the-coast/srd-2024/CrossReference.json diff --git a/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json b/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json new file mode 100644 index 00000000..02cf5907 --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json @@ -0,0 +1,24734 @@ +[ +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 2 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 3 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 4 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 5 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 7 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 10 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 11 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 12 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 13 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 14 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 15 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 16 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 17 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 18 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 19 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 20 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 21 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-half-plate" + }, + "model": "api_v2.crossreference", + "pk": 22 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 23 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-leather" + }, + "model": "api_v2.crossreference", + "pk": 24 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-padded" + }, + "model": "api_v2.crossreference", + "pk": 25 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-plate" + }, + "model": "api_v2.crossreference", + "pk": 26 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 27 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 28 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-splint" + }, + "model": "api_v2.crossreference", + "pk": 29 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-resistance-studded-leather" + }, + "model": "api_v2.crossreference", + "pk": 30 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 31 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 32 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 33 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 34 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 35 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 36 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 37 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 38 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 39 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 40 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 41 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 42 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 43 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 44 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 45 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 46 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 47 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 48 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 49 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 50 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 51 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 52 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 53 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 54 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 55 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 56 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 57 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 58 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 59 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 60 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 61 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 62 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 63 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 64 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 65 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 66 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 67 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 68 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 69 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 70 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 71 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 72 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 73 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 74 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 75 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 76 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 77 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 78 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 79 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 80 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 81 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 82 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 83 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 84 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 85 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 86 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 87 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 88 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 89 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 90 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 91 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 92 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 93 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 94 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 95 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 96 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 97 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 98 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 99 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 100 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 101 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 102 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 103 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 104 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 105 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 106 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 107 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 108 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 109 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 110 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 111 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 112 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 113 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 114 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 115 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 116 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 117 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 118 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 119 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 120 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 121 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 122 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 123 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 124 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 125 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 126 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 127 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 128 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 129 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 130 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 131 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 132 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 133 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 134 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 135 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 136 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 137 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 138 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 139 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 140 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 141 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 142 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 143 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 144 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 145 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 146 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 147 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 148 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 149 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 150 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 151 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 152 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 153 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 154 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 155 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 156 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 157 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 158 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 159 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 160 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 161 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 162 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 163 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 164 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 165 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 166 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 167 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 168 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 169 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 170 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 171 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 172 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 173 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 174 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 175 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 176 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 177 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 178 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 179 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 180 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 181 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 182 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 183 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 184 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 185 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 186 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 187 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 188 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 189 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 190 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 191 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 192 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 193 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 194 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 195 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 196 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 197 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 198 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 199 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 200 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 201 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 202 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 203 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 204 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 205 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 206 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 207 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 208 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 209 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 210 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 211 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 212 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 213 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 214 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 215 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 216 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 217 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 218 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 219 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 220 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 221 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 222 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 223 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 224 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 225 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 226 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 227 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 228 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 229 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 230 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 231 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 232 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 233 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 234 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 235 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 236 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 237 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 238 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 239 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 240 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 241 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 242 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 243 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 244 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 245 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 246 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 247 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 248 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 249 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 250 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 251 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 252 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 253 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 254 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 255 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 256 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 257 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 258 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 259 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 260 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 261 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 262 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 263 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 264 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 265 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 266 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 267 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 268 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 269 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 270 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 271 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 272 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 273 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 274 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 275 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 276 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 277 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 278 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 279 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 280 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 281 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 282 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 283 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 284 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 285 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 286 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 287 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 288 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 289 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 290 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 291 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 292 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 293 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 294 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 295 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 296 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 297 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 298 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 299 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 300 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 301 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 302 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 303 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 304 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 305 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 306 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 307 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 308 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 309 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 310 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 311 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 312 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 313 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 314 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 315 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 316 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 317 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 318 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 319 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 320 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 321 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 322 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 323 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 324 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 325 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 326 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 327 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 328 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 329 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 330 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 331 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 332 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 333 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 334 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 335 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 336 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 337 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 338 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 339 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 340 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 341 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 342 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 343 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 344 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 345 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 346 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 347 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 348 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 349 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 350 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 351 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 352 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 353 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 354 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 355 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 356 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 357 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 358 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 359 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 360 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 361 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 362 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 363 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 364 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 365 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 366 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 367 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 368 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 369 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 370 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 371 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 372 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 373 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 374 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 375 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 376 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 377 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 378 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 379 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 380 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 381 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 382 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 383 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 384 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 385 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 386 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-resistance" + }, + "model": "api_v2.crossreference", + "pk": 387 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 388 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 389 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 390 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 391 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 392 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 393 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 394 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 395 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 396 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 397 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 398 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 399 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 400 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 401 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 402 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 403 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 404 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 405 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 406 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 407 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 408 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 409 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 410 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 411 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 412 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 413 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 414 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 415 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 416 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 417 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 418 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 419 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 420 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 421 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 422 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 423 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 424 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 425 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 426 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-resistance" + }, + "model": "api_v2.crossreference", + "pk": 427 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 428 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 429 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 430 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 431 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 432 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 433 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 434 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 435 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 436 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 437 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 438 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 439 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 440 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 441 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 442 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 443 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 444 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 445 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 446 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 447 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 448 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 449 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 450 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 451 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 452 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 453 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 454 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 455 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 456 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 457 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 458 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 459 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 460 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 461 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 462 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 463 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 464 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 465 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 466 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 467 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 468 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 469 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 470 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 471 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 472 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 473 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 474 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 475 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 476 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 477 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 478 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 479 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 480 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 481 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 482 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 483 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 484 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 485 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 486 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 487 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 488 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 489 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 490 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 491 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 492 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 493 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 494 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 495 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 496 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 497 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 498 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 499 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 500 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 501 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 502 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 503 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 504 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 505 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 506 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 507 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 508 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 509 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 510 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 511 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 512 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 513 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 514 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 515 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 516 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 517 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 518 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 519 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 520 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 521 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 522 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 523 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 524 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 525 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 526 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 527 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 528 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 529 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 530 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 531 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 532 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 533 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 534 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 535 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 536 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 537 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 538 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 539 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 540 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 541 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 542 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 543 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 544 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 545 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 546 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 547 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 548 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 549 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 550 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 551 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 552 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 553 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 554 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 555 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 556 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 557 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 558 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 559 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 560 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 561 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 562 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 563 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 564 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 565 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 566 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 567 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 568 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 569 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 570 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 571 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 572 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 573 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 574 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 575 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 576 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 577 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 578 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 579 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 580 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 581 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 582 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 583 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 584 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 585 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 586 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 587 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 588 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 589 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 590 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 591 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 592 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 593 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 594 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 595 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 596 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 597 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 598 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 599 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 600 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 601 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 602 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 603 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 604 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 605 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 606 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 607 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 608 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 609 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 610 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 611 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 612 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 613 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 614 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 615 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 616 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 617 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 618 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 619 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 620 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 621 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 622 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 623 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 624 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 625 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 626 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 627 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 628 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 629 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 630 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 631 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 632 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 633 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 634 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 635 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 636 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 637 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 638 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 639 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 640 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 641 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 642 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 643 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 644 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 645 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 646 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 647 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 648 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 649 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 650 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 651 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 652 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 653 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 654 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 655 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 656 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 657 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 658 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 659 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 660 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 661 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 662 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 663 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 664 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 665 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 666 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 667 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 668 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 669 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 670 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 671 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 672 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 673 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 674 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 675 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 676 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 677 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 678 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 679 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 680 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 681 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 682 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 683 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 684 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 685 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 686 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 687 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 688 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 689 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 690 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 691 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 692 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 693 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 694 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 695 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 696 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 697 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 698 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 699 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 700 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 701 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 702 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 703 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 704 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 705 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_acid-breath-recharge" + }, + "model": "api_v2.crossreference", + "pk": 706 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 707 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 708 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 709 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_rend" + }, + "model": "api_v2.crossreference", + "pk": 710 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 711 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 712 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 713 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 714 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 715 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 716 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 717 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 718 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 719 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 720 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 721 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 722 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 723 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 724 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 725 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 726 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 727 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 728 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 729 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 730 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 731 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 732 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 733 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 734 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 735 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 736 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 737 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 738 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 739 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 740 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 741 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 742 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 743 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 744 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 745 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 746 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 747 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 748 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_rend" + }, + "model": "api_v2.crossreference", + "pk": 749 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 750 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 751 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 752 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 753 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 754 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 755 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 756 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 757 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 758 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 759 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 760 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 761 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 762 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 763 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 764 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 765 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 766 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 767 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 768 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 769 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 770 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 771 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 772 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 773 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 774 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 775 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 776 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 777 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 778 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 779 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 780 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 781 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 782 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 783 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 784 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 785 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 786 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 787 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_rend" + }, + "model": "api_v2.crossreference", + "pk": 788 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 789 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 790 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 791 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 792 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 793 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 794 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 795 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 796 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 797 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 798 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 799 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 800 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 801 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 802 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 803 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 804 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 805 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 806 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 807 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 808 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 809 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 810 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 811 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 812 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 813 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 814 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 815 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 816 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 817 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 818 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 819 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 820 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 821 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 822 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 823 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 824 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 825 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 826 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 827 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 828 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 829 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_rend" + }, + "model": "api_v2.crossreference", + "pk": 830 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 831 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 832 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 833 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 834 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 835 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 836 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 837 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 838 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 839 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 840 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 841 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 842 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 843 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 844 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 845 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 846 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 847 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 848 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 849 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 850 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 851 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 852 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 853 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 854 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 855 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 856 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 857 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 858 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 859 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 860 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 861 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 862 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 863 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 864 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 865 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 866 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 867 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 868 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 869 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 870 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ankheg_acid-spray" + }, + "model": "api_v2.crossreference", + "pk": 871 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ankheg_bite" + }, + "model": "api_v2.crossreference", + "pk": 872 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 873 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 874 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 875 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 876 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 877 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 878 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 879 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 880 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 881 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 882 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 883 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 884 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 885 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 886 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 887 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 888 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 889 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 890 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 891 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 892 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_black-dragon-wyrmling_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 893 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_black-dragon-wyrmling_rend" + }, + "model": "api_v2.crossreference", + "pk": 894 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 895 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 896 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 897 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 898 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 899 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 900 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 38, + "source_object_key": "srd-2024_chain-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 901 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_clay-golem_slam" + }, + "model": "api_v2.crossreference", + "pk": 902 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 903 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 904 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 905 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 906 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 907 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 908 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 909 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 910 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_copper-dragon-wyrmling_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 911 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 912 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 913 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 914 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 915 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 916 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 917 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 918 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 919 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 920 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 921 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 922 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 923 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 924 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 925 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 926 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 927 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 928 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 929 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 930 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 931 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 932 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 933 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 934 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 935 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 936 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 937 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 938 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 939 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 940 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 941 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 942 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 943 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 944 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 945 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 946 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 947 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 948 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 949 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 950 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 951 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 952 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 953 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 954 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 955 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 956 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 957 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 958 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 959 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 960 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 961 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 962 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 963 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 964 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 965 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 966 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 967 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_gelatinous-cube_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 968 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 969 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 970 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 971 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 972 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 973 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 974 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 975 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 976 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 977 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 978 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 979 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 980 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 981 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 982 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 983 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 984 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 985 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 986 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 987 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 988 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 989 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 990 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 991 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 992 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 993 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 994 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 995 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 996 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 997 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 998 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 999 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1000 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1001 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1002 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 1003 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1004 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 1005 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 1006 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 1007 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1008 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1009 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1010 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1011 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1012 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1013 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1014 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1015 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1016 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1017 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1018 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 1019 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1020 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1021 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1022 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1023 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1024 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1025 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1026 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1027 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1028 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1029 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1030 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1031 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1032 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1033 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1034 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1035 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1036 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1037 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1038 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1039 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1040 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1041 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1042 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1043 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1044 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_mimic_bite" + }, + "model": "api_v2.crossreference", + "pk": 1045 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_mimic_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 1046 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 1047 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1048 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1049 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1050 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1051 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1052 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 1053 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 1054 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 1055 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1056 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1057 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1058 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1059 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1060 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_ochre-jelly_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 1061 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1062 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1063 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1064 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1065 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1066 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1067 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1068 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1069 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1070 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1071 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1072 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1073 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1074 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1075 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1076 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1077 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1078 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1079 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1080 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1081 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1082 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1083 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 1084 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 1085 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1086 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1087 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1088 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1089 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1090 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1091 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1092 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1093 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1094 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 1095 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 1096 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1097 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1098 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1099 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 1100 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1101 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1102 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1103 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1104 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1105 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1106 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1107 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1108 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1109 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1110 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1111 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1112 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1113 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1114 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1115 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1116 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1117 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1118 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1119 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1120 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1121 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1122 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1123 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1124 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1125 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1126 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1127 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1128 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1129 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1130 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1131 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 1132 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1133 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1134 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1135 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1136 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 1137 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1138 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1139 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 1140 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1141 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1142 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1143 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1144 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1145 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1146 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1147 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 1148 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1149 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 1150 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1151 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1152 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1153 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1154 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1155 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1156 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1157 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_young-black-dragon_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 1158 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_young-black-dragon_rend" + }, + "model": "api_v2.crossreference", + "pk": 1159 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 1160 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 38, + "source_object_key": "srd-2024_young-copper-dragon_acid-breath" + }, + "model": "api_v2.crossreference", + "pk": 1161 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_aboleth_mucus-cloud" + }, + "model": "api_v2.crossreference", + "pk": 1162 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 1163 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 1164 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 1165 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_clay-golem_acid-absorption" + }, + "model": "api_v2.crossreference", + "pk": 1166 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 1167 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 1168 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 1169 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 1170 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 1171 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 1172 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1173 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_half-dragon_draconic-origin" + }, + "model": "api_v2.crossreference", + "pk": 1174 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1175 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1176 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 1177 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1178 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 1179 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1180 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1181 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1182 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1183 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1184 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1185 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1186 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 1187 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 1188 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_troll-limb_regeneration" + }, + "model": "api_v2.crossreference", + "pk": 1189 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_troll_regeneration" + }, + "model": "api_v2.crossreference", + "pk": 1190 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_vampire-spawn_vampire-weakness" + }, + "model": "api_v2.crossreference", + "pk": 1191 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 39, + "source_object_key": "srd-2024_vampire_vampire-weakness" + }, + "model": "api_v2.crossreference", + "pk": 1192 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1193 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1194 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1195 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1196 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1197 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1198 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1199 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1200 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1201 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1202 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1203 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1204 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1205 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 1206 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1207 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1208 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1209 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1210 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1211 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1212 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1213 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1214 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1215 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1216 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1217 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1218 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1219 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1220 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1221 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1222 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1223 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 1224 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 1225 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 1226 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 1227 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 1228 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 1229 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 1230 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 1231 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 1232 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 1233 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1234 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1235 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1236 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1237 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1238 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1239 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1240 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1241 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1242 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1243 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1244 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1245 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1246 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1247 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1248 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1249 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1250 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1251 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1252 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 1253 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1254 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1255 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1256 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1257 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1258 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1259 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1260 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1261 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1262 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1263 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1264 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1265 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1266 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1267 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1268 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1269 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1270 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 1271 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 1272 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 1273 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 1274 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 1275 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1276 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1277 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1278 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1279 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1280 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1281 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1282 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1283 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 1284 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 1285 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 1286 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 1287 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 1288 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1289 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1290 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1291 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1292 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1293 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1294 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1295 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1296 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1297 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1298 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1299 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1300 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1301 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1302 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1303 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1304 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 1305 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1306 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1307 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1308 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1309 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1310 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1311 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1312 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1313 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 1314 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1315 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1316 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1317 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1318 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1319 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1320 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1321 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1322 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1323 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1324 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1325 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1326 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 1327 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 1328 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 1329 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 1330 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1331 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1332 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1333 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1334 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1335 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 1336 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 1337 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 1338 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 1339 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 1340 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1341 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1342 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1343 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1344 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1345 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1346 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1347 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1348 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1349 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1350 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 1351 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 1352 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 1353 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 1354 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 1355 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 1356 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 1357 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1358 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1359 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1360 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1361 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1362 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1363 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1364 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1365 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1366 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1367 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1368 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1369 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 1370 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 1371 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 1372 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 1373 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 1374 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 1375 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 1376 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1377 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1378 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1379 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1380 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1381 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1382 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1383 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1384 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1385 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1386 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 1387 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 1388 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1389 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1390 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1391 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1392 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1393 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1394 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1395 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1396 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1397 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1398 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1399 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1400 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1401 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 1402 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 1403 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1404 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1405 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1406 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1407 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1408 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1409 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1410 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 1411 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 1412 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 1413 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 1414 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 1415 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 1416 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1417 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1418 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1419 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1420 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1421 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1422 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1423 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1424 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1425 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1426 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1427 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1428 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1429 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1430 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1431 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1432 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1433 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1434 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1435 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1436 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1437 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1438 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1439 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1440 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1441 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1442 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1443 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1444 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1445 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1446 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1447 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1448 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1449 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1450 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1451 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1452 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1453 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1454 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1455 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1456 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1457 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1458 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1459 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1460 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1461 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1462 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 1463 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 1464 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 1465 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 1466 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 1467 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 1468 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 1469 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 1470 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 1471 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1472 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1473 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1474 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1475 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1476 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 1477 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1478 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1479 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1480 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1481 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1482 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1483 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1484 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1485 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1486 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1487 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1488 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1489 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 1490 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1491 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1492 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1493 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1494 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1495 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 1496 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 1497 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 1498 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1499 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1500 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1501 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1502 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1503 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1504 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1505 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1506 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1507 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1508 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1509 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1510 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 1511 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 1512 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 1513 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 1514 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 1515 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 1516 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 1517 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1518 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 1519 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 1520 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 1521 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 1522 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 1523 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 1524 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 1525 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 1526 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 1527 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 1528 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 1529 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 1530 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 1531 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 1532 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 1533 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1534 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1535 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1536 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1537 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1538 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1539 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1540 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1541 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1542 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1543 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1544 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1545 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 1546 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 1547 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 1548 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 1549 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 1550 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 1551 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 1552 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 1553 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1554 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1555 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1556 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 1557 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1558 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1559 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1560 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1561 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1562 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1563 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1564 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1565 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1566 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1567 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1568 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1569 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1570 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1571 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1572 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1573 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1574 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1575 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1576 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 1577 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1578 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1579 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1580 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1581 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1582 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 1583 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 1584 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 1585 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 1586 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 1587 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 1588 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 1589 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 1590 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 1591 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 1592 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1593 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1594 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1595 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1596 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1597 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1598 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1599 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1600 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1601 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1602 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1603 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 1604 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1605 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 1606 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 1607 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1608 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1609 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1610 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1611 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 1612 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 1613 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 1614 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 1615 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 1616 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 1617 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 1618 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1619 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1620 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1621 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1622 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1623 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1624 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1625 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1626 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1627 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1628 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1629 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1630 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1631 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1632 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1633 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1634 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1635 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1636 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1637 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1638 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1639 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1640 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1641 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 1642 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1643 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1644 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1645 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1646 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1647 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1648 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1649 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1650 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1651 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1652 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1653 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1654 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1655 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 1656 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 1657 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 1658 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1659 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1660 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1661 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1662 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 1663 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 1664 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 1665 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 1666 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 1667 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 1668 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 1669 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1670 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 1671 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 1672 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1673 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1674 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1675 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1676 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 1677 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1678 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1679 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1680 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1681 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1682 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1683 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1684 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1685 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1686 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1687 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1688 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1689 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1690 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1691 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1692 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1693 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1694 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1695 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1696 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1697 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1698 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1699 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1700 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1701 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1702 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1703 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 1704 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 1705 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 1706 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1707 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1708 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1709 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1710 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1711 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1712 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1713 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1714 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1715 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1716 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1717 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1718 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1719 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1720 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 1721 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1722 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 1723 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 1724 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 1725 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 1726 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 1727 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 1728 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1729 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1730 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1731 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1732 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1733 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1734 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1735 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1736 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1737 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1738 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1739 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1740 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 1741 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 1742 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 1743 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1744 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1745 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1746 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1747 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 1748 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1749 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1750 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1751 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1752 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1753 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1754 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1755 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1756 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1757 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1758 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 1759 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 1760 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 1761 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 1762 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_elemental-affinity" + }, + "model": "api_v2.crossreference", + "pk": 1763 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1764 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1765 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1766 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1767 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1768 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1769 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1770 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1771 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1772 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1773 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1774 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1775 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1776 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 1777 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 1778 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 1779 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 1780 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 1781 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 1782 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 1783 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 1784 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 1785 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1786 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 1787 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 1788 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 1789 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 1790 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 1791 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1792 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1793 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1794 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1795 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1796 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1797 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1798 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1799 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1800 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1801 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1802 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1803 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1804 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1805 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1806 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1807 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1808 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1809 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1810 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 1811 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1812 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1813 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1814 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1815 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1816 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1817 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1818 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1819 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1820 +}, +{ + "fields": { + "anchor": "Chain", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1821 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1822 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1823 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1824 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1825 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1826 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1827 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1828 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1829 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1830 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1831 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1832 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1833 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1834 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1835 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1836 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 1837 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 1838 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 1839 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 1840 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1841 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1842 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1843 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1844 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1845 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1846 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1847 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1848 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1849 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1850 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1851 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1852 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 1853 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 1854 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1855 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1856 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1857 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1858 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1859 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1860 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1861 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1862 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1863 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1864 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1865 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 1866 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 1867 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 1868 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1869 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1870 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1871 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1872 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1873 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 1874 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1875 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1876 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1877 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1878 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1879 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1880 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1881 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1882 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1883 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1884 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1885 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1886 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 1887 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1888 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1889 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1890 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1891 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1892 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 1893 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1894 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1895 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1896 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1897 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1898 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1899 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1900 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1901 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1902 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1903 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1904 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 1905 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 1906 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 1907 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 1908 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 1909 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1910 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1911 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1912 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1913 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1914 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1915 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1916 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1917 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1918 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1919 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 1920 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 1921 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 1922 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 1923 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 1924 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 1925 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_acid-arrow" + }, + "model": "api_v2.crossreference", + "pk": 1926 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_acid-splash" + }, + "model": "api_v2.crossreference", + "pk": 1927 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 1928 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 1929 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 1930 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 1931 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 1932 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 1933 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_chromatic-orb" + }, + "model": "api_v2.crossreference", + "pk": 1934 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 1935 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 1936 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 1937 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_conjure-minor-elementals" + }, + "model": "api_v2.crossreference", + "pk": 1938 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 1939 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 1940 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 1941 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 1942 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 1943 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 1944 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 1945 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 1946 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 1947 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_dragons-breath" + }, + "model": "api_v2.crossreference", + "pk": 1948 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 1949 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 1950 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 1951 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 1952 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 1953 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 1954 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 1955 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 1956 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 1957 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 1958 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 1959 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 1960 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 1961 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 1962 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 1963 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1964 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1965 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1966 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1967 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1968 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 1969 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 1970 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 1971 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 1972 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 1973 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 1974 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 1975 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 1976 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 1977 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 1978 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 1979 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 1980 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 1981 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 1982 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 1983 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 1984 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 1985 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 1986 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 1987 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 1988 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 1989 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 1990 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_protection-from-energy" + }, + "model": "api_v2.crossreference", + "pk": 1991 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 1992 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 1993 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 1994 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_resistance" + }, + "model": "api_v2.crossreference", + "pk": 1995 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 1996 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 1997 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 1998 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 1999 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 2000 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 2001 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 2002 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 2003 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_sorcerous-burst" + }, + "model": "api_v2.crossreference", + "pk": 2004 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 2005 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 2006 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 2007 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 2008 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 2009 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 2010 +}, +{ + "fields": { + "anchor": "Acid", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_acid", + "source_content_type": 55, + "source_object_key": "srd-2024_vitriolic-sphere" + }, + "model": "api_v2.crossreference", + "pk": 2011 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2012 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2013 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 2014 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 2015 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 2016 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 2017 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 2018 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 2019 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 2020 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 2021 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 2022 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 2023 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 2024 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 2025 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 2026 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 2027 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 2028 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 2029 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 2030 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 2031 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 2032 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 2033 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 2034 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 2035 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 2036 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 2037 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 2038 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 2039 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 2040 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 2041 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 2042 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 2043 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 2044 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 2045 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 2046 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 2047 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 2048 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 2049 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 2050 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 2051 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 2052 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 2053 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 2054 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 2055 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 2056 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 2057 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 2058 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 2059 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 2060 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 2061 +} +] From a3bcac83bb6dbe1855ce6b9282af635172ef141a Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sun, 15 Feb 2026 14:58:26 -0600 Subject: [PATCH 06/33] Refactor cross-reference terminology for consistency across the codebase. --- .../management/commands/apply_crossreferences.py | 4 ++-- .../management/commands/delete_crossreferences.py | 10 +++++----- ...idates.py => find_crossreference_candidates.py} | 4 ++-- scripts/crossreference/README.md | 10 +++++----- scripts/crossreference/__init__.py | 4 ++-- scripts/crossreference/apply_crossreferences.py | 2 +- scripts/crossreference/core.py | 10 +++++----- scripts/crossreference/delete_crossreferences.py | 2 +- scripts/crossreference/find_candidates.py | 14 +++++++------- 9 files changed, 30 insertions(+), 30 deletions(-) rename api_v2/management/commands/{find_crossref_candidates.py => find_crossreference_candidates.py} (94%) diff --git a/api_v2/management/commands/apply_crossreferences.py b/api_v2/management/commands/apply_crossreferences.py index ce0358e9..e2e96ade 100644 --- a/api_v2/management/commands/apply_crossreferences.py +++ b/api_v2/management/commands/apply_crossreferences.py @@ -12,7 +12,7 @@ class Command(BaseCommand): help = ( "Create CrossReference rows from text-matching for the given document. " - "Use --dry-run to preview; use --replace to delete existing crossrefs for " + "Use --dry-run to preview; use --replace to delete existing crossreferences for " "the document before creating." ) @@ -43,7 +43,7 @@ def add_arguments(self, parser): parser.add_argument( "--replace", action="store_true", - help="Delete existing crossrefs whose source is in this document before creating.", + help="Delete existing crossreferences whose source is in this document before creating.", ) def handle(self, *args, **options): diff --git a/api_v2/management/commands/delete_crossreferences.py b/api_v2/management/commands/delete_crossreferences.py index 88638f79..69662ed0 100644 --- a/api_v2/management/commands/delete_crossreferences.py +++ b/api_v2/management/commands/delete_crossreferences.py @@ -1,5 +1,5 @@ """ -Delete groups of cross-references by source document. +Delete groups of crossreferences by source document. Delegates to scripts/crossreference/delete_crossreferences.py. """ @@ -21,25 +21,25 @@ def add_arguments(self, parser): "--document", type=str, required=True, - help="Document key; delete crossrefs whose source is in this document.", + help="Document key; delete crossreferences whose source is in this document.", ) parser.add_argument( "--model", type=str, default=None, - help="If set, only delete crossrefs whose source is this model (e.g. Spell, Item).", + help="If set, only delete crossreferences whose source is this model (e.g. Spell, Item).", ) parser.add_argument( "--source-blacklist", type=str, default=None, - help="Path to file; do not delete crossrefs whose source key is in this set.", + help="Path to file; do not delete crossreferences whose source key is in this set.", ) parser.add_argument( "--reference-blacklist", type=str, default=None, - help="Path to file; do not delete crossrefs whose reference key is in this set.", + help="Path to file; do not delete crossreferences whose reference key is in this set.", ) parser.add_argument( "--dry-run", diff --git a/api_v2/management/commands/find_crossref_candidates.py b/api_v2/management/commands/find_crossreference_candidates.py similarity index 94% rename from api_v2/management/commands/find_crossref_candidates.py rename to api_v2/management/commands/find_crossreference_candidates.py index 00829e36..9134fd09 100644 --- a/api_v2/management/commands/find_crossref_candidates.py +++ b/api_v2/management/commands/find_crossreference_candidates.py @@ -1,5 +1,5 @@ """ -Find objects in a document that are candidates for adding cross-references. +Find objects in a document that are candidates for adding crossreferences. Delegates to scripts/crossreference/find_candidates.py. """ @@ -12,7 +12,7 @@ class Command(BaseCommand): help = ( "List objects with descriptions in a document that are candidates for " - "adding cross-references. Output to console." + "adding crossreferences. Output to console." ) def add_arguments(self, parser): diff --git a/scripts/crossreference/README.md b/scripts/crossreference/README.md index 152b8ffb..524abb92 100644 --- a/scripts/crossreference/README.md +++ b/scripts/crossreference/README.md @@ -1,6 +1,6 @@ # Crossreference scripts -Cross-reference candidate finding, report generation, deletion by document, and applying suggested links to the database. +Crossreference candidate finding, report generation, deletion by document, and applying suggested links to the database. ## Modules @@ -14,17 +14,17 @@ Cross-reference candidate finding, report generation, deletion by document, and ## How to run -Invoke via Django management commands. Blacklist paths are typically at project root (e.g. `crossref_source_blacklist.txt`, `crossref_reference_blacklist.txt`). +Invoke via Django management commands. Blacklist paths are typically at project root (e.g. `crossreference_source_blacklist.txt`, `crossreference_reference_blacklist.txt`). ```bash -manage.py find_crossref_candidates --document srd-2024 [--sources-report ...] [--references-report ...] +manage.py find_crossreference_candidates --document srd-2024 [--sources-report ...] [--references-report ...] manage.py delete_crossreferences --document srd-2024 [--dry-run] manage.py apply_crossreferences --document srd-2024 [--dry-run] [--replace] ``` ## Typical workflow -1. Run `find_crossref_candidates` with report paths; inspect the generated JSON reports. +1. Run `find_crossreference_candidates` with report paths; inspect the generated JSON reports. 2. Tune blacklists as needed. 3. Run `apply_crossreferences --dry-run` to see how many rows would be created (and replaced if using `--replace`). -4. Run `apply_crossreferences` to write to the database. Use `--replace` to clear existing crossrefs for that document before creating new ones. +4. Run `apply_crossreferences` to write to the database. Use `--replace` to clear existing crossreferences for that document before creating new ones. diff --git a/scripts/crossreference/__init__.py b/scripts/crossreference/__init__.py index 3566a3ce..cdbc3e54 100644 --- a/scripts/crossreference/__init__.py +++ b/scripts/crossreference/__init__.py @@ -1,9 +1,9 @@ """ -Cross-reference candidate finding, deletion, and apply logic. +Crossreference candidate finding, deletion, and apply logic. Entry points: - scripts.crossreference.find_candidates.run() — find candidates / write reports - scripts.crossreference.delete_crossreferences.run() — delete by document -- scripts.crossreference.apply_crossreferences.run() — apply suggested cross-references +- scripts.crossreference.apply_crossreferences.run() — apply suggested crossreferences to the database (dry-run and optional replace) """ diff --git a/scripts/crossreference/apply_crossreferences.py b/scripts/crossreference/apply_crossreferences.py index 0366870d..6abccb8b 100644 --- a/scripts/crossreference/apply_crossreferences.py +++ b/scripts/crossreference/apply_crossreferences.py @@ -30,7 +30,7 @@ def run( """ Run text-matching for the document, then create CrossReference rows (or report counts if dry_run). - If replace_existing, delete existing crossrefs whose source is in the document first. + If replace_existing, delete existing crossreferences whose source is in the document first. stdout: object with .write(str). If None, print() is used. style_success: callable(str) -> str for success message. If None, identity. """ diff --git a/scripts/crossreference/core.py b/scripts/crossreference/core.py index fb74b798..1591dcb4 100644 --- a/scripts/crossreference/core.py +++ b/scripts/crossreference/core.py @@ -196,7 +196,7 @@ def load_blacklist(file_path: str | None) -> set[str]: def _model_has_description(model) -> bool: - """Return True if the model has a desc field (i.e. can be a crossref source).""" + """Return True if the model has a desc field (i.e. can be a crossreference source).""" return any(f.name == "desc" for f in model._meta.get_fields()) @@ -249,7 +249,7 @@ def get_crossreferences_by_source_document( reference_blacklist = reference_blacklist or set() pairs = get_source_models_and_filters_for_document(doc, model_name=source_model_name) - crossref_ids = [] + crossreference_ids = [] for model, filter_kwargs in pairs: ct = ContentType.objects.get_for_model(model) @@ -266,11 +266,11 @@ def get_crossreferences_by_source_document( qs = qs.exclude(source_object_key__in=source_blacklist) if reference_blacklist: qs = qs.exclude(reference_object_key__in=reference_blacklist) - crossref_ids.extend(qs.values_list("pk", flat=True)) + crossreference_ids.extend(qs.values_list("pk", flat=True)) - if not crossref_ids: + if not crossreference_ids: return CrossReference.objects.none() - return CrossReference.objects.filter(pk__in=crossref_ids) + return CrossReference.objects.filter(pk__in=crossreference_ids) def get_all_crossreferences_for_document(doc): diff --git a/scripts/crossreference/delete_crossreferences.py b/scripts/crossreference/delete_crossreferences.py index 7261e70b..85a344b9 100644 --- a/scripts/crossreference/delete_crossreferences.py +++ b/scripts/crossreference/delete_crossreferences.py @@ -22,7 +22,7 @@ def run( style_success=None, ): """ - Resolve document, load blacklists, get crossref queryset, then delete (or dry-run). + Resolve document, load blacklists, get crossreference queryset, then delete (or dry-run). stdout: object with .write(str). If None, print() is used. style_success: callable(str) -> str for success message. If None, identity. diff --git a/scripts/crossreference/find_candidates.py b/scripts/crossreference/find_candidates.py index be53c3a3..bb4210ee 100644 --- a/scripts/crossreference/find_candidates.py +++ b/scripts/crossreference/find_candidates.py @@ -1,7 +1,7 @@ """ -Find cross-reference candidates for a document; optionally write report files and print top 10. +Find crossreference candidates for a document; optionally write report files and print top 10. -Called by management command find_crossref_candidates. +Called by management command find_crossreference_candidates. """ from scripts.crossreference.core import ( @@ -60,11 +60,11 @@ def write(line: str) -> None: name = getattr(obj, "name", "") or "" desc_len = len(obj.desc) if obj.desc else 0 try: - crossref_count = obj.crossreferences.count() + crossreference_count = obj.crossreferences.count() except Exception: - crossref_count = 0 + crossreference_count = 0 candidates.append( - (model.__name__, pk_str, name, desc_len, crossref_count) + (model.__name__, pk_str, name, desc_len, crossreference_count) ) if sources_report_path and references_report_path: @@ -103,8 +103,8 @@ def write(line: str) -> None: write( "Candidates (objects with description; source-blacklist applied):" ) - for model_name, key, name, desc_len, crossref_count in candidates: + for model_name, key, name, desc_len, crossreference_count in candidates: write( - f" {model_name}\t{key}\t{name}\t{desc_len}\t{crossref_count}" + f" {model_name}\t{key}\t{name}\t{desc_len}\t{crossreference_count}" ) write(f"Total: {len(candidates)} candidates.") From c2a0dcca9a7ff81d82e22e1a0faef21eee3e3ebb Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sun, 15 Feb 2026 14:58:32 -0600 Subject: [PATCH 07/33] Implement crossreference handling in GameContentSerializer and add tests to verify crossreference inclusion/exclusion for various models. --- api_v2/crossreference_utils.py | 4 +- api_v2/serializers/abstracts.py | 25 +++++++++++- api_v2/tests/test_router.py | 57 +++++++++++++++++++++++++++ api_v2/url_utils.py | 70 +++++++++++++++++++++++++++++++++ 4 files changed, 153 insertions(+), 3 deletions(-) create mode 100644 api_v2/url_utils.py diff --git a/api_v2/crossreference_utils.py b/api_v2/crossreference_utils.py index b6ae9096..e1dadc09 100644 --- a/api_v2/crossreference_utils.py +++ b/api_v2/crossreference_utils.py @@ -1,7 +1,7 @@ """ -Re-export cross-reference logic from scripts.crossreference.core for backwards compatibility. +Re-export crossreference logic from scripts.crossreference.core for backwards compatibility. -Management commands find_crossref_candidates and delete_crossreferences delegate to +Management commands find_crossreference_candidates and delete_crossreferences delegate to scripts/crossreference/find_candidates.py and delete_crossreferences.py. """ diff --git a/api_v2/serializers/abstracts.py b/api_v2/serializers/abstracts.py index d893e4b7..1498085c 100644 --- a/api_v2/serializers/abstracts.py +++ b/api_v2/serializers/abstracts.py @@ -2,6 +2,18 @@ from rest_framework import serializers from api_v2 import models +from api_v2.url_utils import get_reference_url + + +def _is_crossreference_source(instance): + """Return True if this object is a crossreference source (has desc, exclude Document/GameSystem/Publisher).""" + if not hasattr(instance, "crossreferences"): + return False + name = instance.__class__.__name__ + if name in ("Document", "GameSystem", "Publisher"): + return False + return True + class GameContentSerializer(serializers.HyperlinkedModelSerializer): @@ -100,7 +112,18 @@ def to_representation(self, instance): if dynamic_params := self.get_dynamic_params().copy(): self.remove_unwanted_fields(dynamic_params) self.set_dynamic_params_for_children(dynamic_params) - return super().to_representation(instance) + data = super().to_representation(instance) + if _is_crossreference_source(instance): + request = self.context.get("request") + qs = instance.crossreferences.select_related("reference_content_type") + data["crossreference"] = [ + { + "anchor": cr.anchor, + "url": get_reference_url(cr, request) or "", + } + for cr in qs + ] + return data class Meta: abstract = True diff --git a/api_v2/tests/test_router.py b/api_v2/tests/test_router.py index b24f81cd..0dc6fe4d 100644 --- a/api_v2/tests/test_router.py +++ b/api_v2/tests/test_router.py @@ -54,3 +54,60 @@ def test_options_root_data(self): "application/json", "application/x-www-form-urlencoded", "multipart/form-data"]) + + +class CrossReferenceFieldTest(APITestCase): + """Verify crossreference field appears on source objects and not on Document/GameSystem/Publisher.""" + + def test_item_detail_includes_crossreference_key(self): + """Objects with desc that are sources (e.g. Item) include crossreference in the response.""" + response = self.client.get("/v2/items/?limit=1&format=json") + self.assertEqual(response.status_code, 200) + results = response.json().get("results", []) + if results: + item = results[0] + self.assertIn( + "crossreference", + item, + "Item detail should include crossreference key", + ) + self.assertIsInstance(item["crossreference"], list) + for cr in item["crossreference"]: + self.assertIn("anchor", cr) + self.assertIn("url", cr) + + def test_document_detail_excludes_crossreference(self): + """Document responses must not include crossreference.""" + response = self.client.get("/v2/documents/?limit=1&format=json") + self.assertEqual(response.status_code, 200) + results = response.json().get("results", []) + if results: + self.assertNotIn( + "crossreference", + results[0], + "Document must not include crossreference", + ) + + def test_gamesystem_detail_excludes_crossreference(self): + """GameSystem responses must not include crossreference.""" + response = self.client.get("/v2/gamesystems/?limit=1&format=json") + self.assertEqual(response.status_code, 200) + results = response.json().get("results", []) + if results: + self.assertNotIn( + "crossreference", + results[0], + "GameSystem must not include crossreference", + ) + + def test_publisher_detail_excludes_crossreference(self): + """Publisher responses must not include crossreference.""" + response = self.client.get("/v2/publishers/?limit=1&format=json") + self.assertEqual(response.status_code, 200) + results = response.json().get("results", []) + if results: + self.assertNotIn( + "crossreference", + results[0], + "Publisher must not include crossreference", + ) diff --git a/api_v2/url_utils.py b/api_v2/url_utils.py new file mode 100644 index 00000000..9d9e0f5b --- /dev/null +++ b/api_v2/url_utils.py @@ -0,0 +1,70 @@ +""" +Build v2 API URLs for cross-reference targets using the same URLconf as the API. + +Uses the api_v2 router as source of truth for top-level resources, plus a small +fallback map for nested reference models that do not have their own viewset. +""" + +from django.urls import reverse + + +# Nested reference models (no own viewset) -> basename for their resource URL. +# Used only when the reference's content type is not in the router-derived map. +REFERENCE_MODEL_TO_BASENAME = { + "AbilityDescription": "abilities", + "SkillDescription": "skills", + "SpeciesTrait": "species", + "FeatBenefit": "feats", + "BackgroundBenefit": "backgrounds", + "CreatureTrait": "creatures", + "CreatureAction": "creatures", + "CreatureTypeDescription": "creaturetypes", + "DamageTypeDescription": "damagetypes", + "AlignmentDescription": "alignments", + "ConditionDescription": "conditions", + "SpellCastingOption": "spells", + "ClassFeature": "classes", + "ClassFeatureItem": "classes", +} + + +def _get_model_to_basename(): + """Build model class -> basename map from the api_v2 router (lazy to avoid circular imports).""" + from api_v2.urls import router + + result = {} + for _prefix, viewset, basename in router.registry: + queryset = getattr(viewset, "queryset", None) + if queryset is not None: + model = getattr(queryset, "model", None) + if model is not None: + result[model] = basename + return result + + +def get_reference_url(crossreference, request=None): + """ + Return the v2 API URL for the object pointed to by this CrossReference. + + Uses Django's reverse() with the api_v2 router (model -> basename from + router.registry) and REFERENCE_MODEL_TO_BASENAME for nested reference + models. If request is provided, returns an absolute URI. + """ + content_type = crossreference.reference_content_type + model = content_type.model_class() if content_type else None + if model is None: + return None + object_key = crossreference.reference_object_key + + model_to_basename = _get_model_to_basename() + basename = model_to_basename.get(model) + if basename is None: + basename = REFERENCE_MODEL_TO_BASENAME.get(model.__name__) + if basename is None: + return None + + view_name = f"{basename}-detail" + path = reverse(view_name, kwargs={"pk": object_key}) + if request is not None: + return request.build_absolute_uri(path) + return path From af7f6f946f0aea029ef2b8a6a33e88ab8f136acb Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 20 Feb 2026 06:23:25 -0600 Subject: [PATCH 08/33] Add source URL handling and crossreference methods to models and serializers - Introduced `get_source_url` utility to generate API URLs for source objects. - Enhanced `CrossReference` model with `reference_api_url` and `source_api_url` methods. - Updated `HasDescription` abstract model to include `get_crossreferences_to_from` method for structured crossreference data. - Modified `GameContentSerializer` to utilize the new crossreference structure. - Updated tests to verify crossreference inclusion and exclusion across various models. --- api_v2/models/abstracts.py | 25 ++++++++ api_v2/models/crossreference.py | 9 +++ api_v2/serializers/abstracts.py | 12 +--- api_v2/tests/test_router.py | 63 ++++++++++++------- api_v2/url_utils.py | 29 +++++++++ .../crossref_reference_blacklist.txt | 2 + 6 files changed, 107 insertions(+), 33 deletions(-) diff --git a/api_v2/models/abstracts.py b/api_v2/models/abstracts.py index d21fdf4e..5fd0ba3a 100644 --- a/api_v2/models/abstracts.py +++ b/api_v2/models/abstracts.py @@ -153,6 +153,31 @@ class HasDescription(models.Model): object_id_field='source_object_key', ) + def get_crossreferences_to_from(self, request=None): + """ + Return crossreferences as {"to": [...], "from": [...]}, each entry + {"anchor": str, "url": str}. Used by the API serializer. + """ + from django.contrib.contenttypes.models import ContentType + + from api_v2.models import CrossReference + + to_qs = self.crossreferences.select_related("reference_content_type") + to_list = [ + {"anchor": cr.anchor, "url": cr.reference_api_url(request)} + for cr in to_qs + ] + ref_ct = ContentType.objects.get_for_model(self) + from_qs = CrossReference.objects.filter( + reference_content_type=ref_ct, + reference_object_key=str(self.pk), + ).select_related("source_content_type") + from_list = [ + {"anchor": cr.anchor, "url": cr.source_api_url(request)} + for cr in from_qs + ] + return {"to": to_list, "from": from_list} + class Meta: abstract = True diff --git a/api_v2/models/crossreference.py b/api_v2/models/crossreference.py index 5c84a9a8..a055227c 100644 --- a/api_v2/models/crossreference.py +++ b/api_v2/models/crossreference.py @@ -5,6 +5,7 @@ from django.contrib.contenttypes.models import ContentType from .document import Document +from api_v2.url_utils import get_reference_url, get_source_url class CrossReference(models.Model): @@ -52,6 +53,14 @@ class CrossReference(models.Model): help_text="The text in the source's description to highlight and link to the reference.", ) + def reference_api_url(self, request=None): + """Return the v2 API URL for the object this CrossReference points to (the reference).""" + return get_reference_url(self, request) or "" + + def source_api_url(self, request=None): + """Return the v2 API URL for the object that contains this link (the source).""" + return get_source_url(self, request) or "" + class Meta: verbose_name_plural = "crossreferences" ordering = ["source_content_type", "source_object_key", "id"] diff --git a/api_v2/serializers/abstracts.py b/api_v2/serializers/abstracts.py index 1498085c..5b34ca67 100644 --- a/api_v2/serializers/abstracts.py +++ b/api_v2/serializers/abstracts.py @@ -1,9 +1,6 @@ """Abstract serializers.""" from rest_framework import serializers -from api_v2 import models -from api_v2.url_utils import get_reference_url - def _is_crossreference_source(instance): """Return True if this object is a crossreference source (has desc, exclude Document/GameSystem/Publisher).""" @@ -115,14 +112,7 @@ def to_representation(self, instance): data = super().to_representation(instance) if _is_crossreference_source(instance): request = self.context.get("request") - qs = instance.crossreferences.select_related("reference_content_type") - data["crossreference"] = [ - { - "anchor": cr.anchor, - "url": get_reference_url(cr, request) or "", - } - for cr in qs - ] + data["crossreferences"] = instance.get_crossreferences_to_from(request) return data class Meta: diff --git a/api_v2/tests/test_router.py b/api_v2/tests/test_router.py index 0dc6fe4d..80a7a601 100644 --- a/api_v2/tests/test_router.py +++ b/api_v2/tests/test_router.py @@ -57,57 +57,76 @@ def test_options_root_data(self): class CrossReferenceFieldTest(APITestCase): - """Verify crossreference field appears on source objects and not on Document/GameSystem/Publisher.""" + """Verify crossreferences field appears on source objects and not on Document/GameSystem/Publisher.""" - def test_item_detail_includes_crossreference_key(self): - """Objects with desc that are sources (e.g. Item) include crossreference in the response.""" + def test_item_detail_includes_crossreferences_key(self): + """Objects with desc that are sources (e.g. Item) include crossreferences in the response.""" response = self.client.get("/v2/items/?limit=1&format=json") self.assertEqual(response.status_code, 200) results = response.json().get("results", []) if results: item = results[0] self.assertIn( - "crossreference", + "crossreferences", item, - "Item detail should include crossreference key", + "Item detail should include crossreferences key", ) - self.assertIsInstance(item["crossreference"], list) - for cr in item["crossreference"]: - self.assertIn("anchor", cr) - self.assertIn("url", cr) - - def test_document_detail_excludes_crossreference(self): - """Document responses must not include crossreference.""" + cr = item["crossreferences"] + self.assertIsInstance(cr, dict, "crossreferences should be {to, from}") + self.assertIn("to", cr) + self.assertIn("from", cr) + self.assertIsInstance(cr["to"], list) + self.assertIsInstance(cr["from"], list) + for entry in cr["to"] + cr["from"]: + self.assertIn("anchor", entry) + self.assertIn("url", entry) + + def test_crossreferences_from_when_object_is_referenced(self): + """An object that is the reference of at least one CrossReference has entries in crossreferences.from.""" + # srd-2024_acid is referenced by other items in the fixture + response = self.client.get("/v2/items/srd-2024_acid/?format=json") + if response.status_code != 200: + return # fixture may not be loaded + item = response.json() + self.assertIn("crossreferences", item) + from_list = item["crossreferences"]["from"] + self.assertIsInstance(from_list, list) + for entry in from_list: + self.assertIn("anchor", entry) + self.assertIn("url", entry) + + def test_document_detail_excludes_crossreferences(self): + """Document responses must not include crossreferences.""" response = self.client.get("/v2/documents/?limit=1&format=json") self.assertEqual(response.status_code, 200) results = response.json().get("results", []) if results: self.assertNotIn( - "crossreference", + "crossreferences", results[0], - "Document must not include crossreference", + "Document must not include crossreferences", ) - def test_gamesystem_detail_excludes_crossreference(self): - """GameSystem responses must not include crossreference.""" + def test_gamesystem_detail_excludes_crossreferences(self): + """GameSystem responses must not include crossreferences.""" response = self.client.get("/v2/gamesystems/?limit=1&format=json") self.assertEqual(response.status_code, 200) results = response.json().get("results", []) if results: self.assertNotIn( - "crossreference", + "crossreferences", results[0], - "GameSystem must not include crossreference", + "GameSystem must not include crossreferences", ) - def test_publisher_detail_excludes_crossreference(self): - """Publisher responses must not include crossreference.""" + def test_publisher_detail_excludes_crossreferences(self): + """Publisher responses must not include crossreferences.""" response = self.client.get("/v2/publishers/?limit=1&format=json") self.assertEqual(response.status_code, 200) results = response.json().get("results", []) if results: self.assertNotIn( - "crossreference", + "crossreferences", results[0], - "Publisher must not include crossreference", + "Publisher must not include crossreferences", ) diff --git a/api_v2/url_utils.py b/api_v2/url_utils.py index 9d9e0f5b..44e7a57c 100644 --- a/api_v2/url_utils.py +++ b/api_v2/url_utils.py @@ -68,3 +68,32 @@ def get_reference_url(crossreference, request=None): if request is not None: return request.build_absolute_uri(path) return path + + +def get_source_url(crossreference, request=None): + """ + Return the v2 API URL for the source object of this CrossReference. + + The source is the object that contains the description and the link. + Uses the same router/basename logic as get_reference_url but for + source_content_type and source_object_key. If request is provided, + returns an absolute URI. Returns None if the source model has no URL. + """ + content_type = crossreference.source_content_type + model = content_type.model_class() if content_type else None + if model is None: + return None + object_key = crossreference.source_object_key + + model_to_basename = _get_model_to_basename() + basename = model_to_basename.get(model) + if basename is None: + basename = REFERENCE_MODEL_TO_BASENAME.get(model.__name__) + if basename is None: + return None + + view_name = f"{basename}-detail" + path = reverse(view_name, kwargs={"pk": object_key}) + if request is not None: + return request.build_absolute_uri(path) + return path diff --git a/scripts/crossreference/crossref_reference_blacklist.txt b/scripts/crossreference/crossref_reference_blacklist.txt index 97b5b47a..80e9b6a0 100644 --- a/scripts/crossreference/crossref_reference_blacklist.txt +++ b/scripts/crossreference/crossref_reference_blacklist.txt @@ -63,3 +63,5 @@ srd-2024_heavy-wp srd-2024_d20-tests_ability-checks srd-2024_social-interaction_ability-checks srd-2024_combat_cover +srd-2024_chain +srd-2024_acid From dc270544ce14e1ca4f0e1c4a25dc489cca914c77 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 20 Feb 2026 06:26:57 -0600 Subject: [PATCH 09/33] Refactor URL generation for cross-references in API - Introduced `_get_basename_for_object` and `_build_object_url` utility functions to streamline URL generation for reference and source objects. - Updated `get_reference_url` and `get_source_url` to utilize the new utilities, improving code clarity and maintainability. - Enhanced handling for `Item` model to differentiate between magic items and regular items in URL generation. --- api_v2/url_utils.py | 75 +++++++++++++++++++++++++-------------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/api_v2/url_utils.py b/api_v2/url_utils.py index 44e7a57c..2720ab6c 100644 --- a/api_v2/url_utils.py +++ b/api_v2/url_utils.py @@ -42,27 +42,34 @@ def _get_model_to_basename(): return result -def get_reference_url(crossreference, request=None): +def _get_basename_for_object(model, object_key): """ - Return the v2 API URL for the object pointed to by this CrossReference. + Return the API basename for this model and primary key. - Uses Django's reverse() with the api_v2 router (model -> basename from - router.registry) and REFERENCE_MODEL_TO_BASENAME for nested reference - models. If request is provided, returns an absolute URI. + Item uses two endpoints: magicitems for magic items (rarity set), items otherwise. + Other models use the router/REFERENCE_MODEL_TO_BASENAME. """ - content_type = crossreference.reference_content_type - model = content_type.model_class() if content_type else None - if model is None: - return None - object_key = crossreference.reference_object_key - + if model.__name__ == "Item": + try: + obj = model.objects.get(pk=object_key) + return "magicitems" if obj.is_magic_item else "items" + except model.DoesNotExist: + return "items" model_to_basename = _get_model_to_basename() basename = model_to_basename.get(model) if basename is None: basename = REFERENCE_MODEL_TO_BASENAME.get(model.__name__) + return basename + + +def _build_object_url(content_type, object_key, request=None): + """Build v2 API URL for the given content type and key. Returns None if no basename.""" + model = content_type.model_class() if content_type else None + if model is None: + return None + basename = _get_basename_for_object(model, object_key) if basename is None: return None - view_name = f"{basename}-detail" path = reverse(view_name, kwargs={"pk": object_key}) if request is not None: @@ -70,30 +77,32 @@ def get_reference_url(crossreference, request=None): return path +def get_reference_url(crossreference, request=None): + """ + Return the v2 API URL for the object pointed to by this CrossReference. + + Uses Django's reverse() with the api_v2 router (model -> basename from + router.registry) and REFERENCE_MODEL_TO_BASENAME for nested reference + models. For Item, uses magicitems vs items by is_magic_item. If request + is provided, returns an absolute URI. + """ + return _build_object_url( + crossreference.reference_content_type, + crossreference.reference_object_key, + request, + ) + + def get_source_url(crossreference, request=None): """ Return the v2 API URL for the source object of this CrossReference. The source is the object that contains the description and the link. - Uses the same router/basename logic as get_reference_url but for - source_content_type and source_object_key. If request is provided, - returns an absolute URI. Returns None if the source model has no URL. + Same basename logic as get_reference_url (including Item -> magicitems/items). + If request is provided, returns an absolute URI. Returns None if no URL. """ - content_type = crossreference.source_content_type - model = content_type.model_class() if content_type else None - if model is None: - return None - object_key = crossreference.source_object_key - - model_to_basename = _get_model_to_basename() - basename = model_to_basename.get(model) - if basename is None: - basename = REFERENCE_MODEL_TO_BASENAME.get(model.__name__) - if basename is None: - return None - - view_name = f"{basename}-detail" - path = reverse(view_name, kwargs={"pk": object_key}) - if request is not None: - return request.build_absolute_uri(path) - return path + return _build_object_url( + crossreference.source_content_type, + crossreference.source_object_key, + request, + ) From 402f79f4da88793f7022b3e0ef4e930285656381 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 20 Feb 2026 06:53:37 -0600 Subject: [PATCH 10/33] Update .gitignore to include new report files - Added entries for `references_report.json` and `sources_report.json` to the .gitignore file to prevent tracking of temporary report files. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 26cbe319..f3098c52 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,5 @@ server/vector_index.pkl # Temporary files for magic items update temp_magic_items/ +references_report.json +sources_report.json From 8b50e9a2dd73c181d315f41e8fcda80f333018e7 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 20 Feb 2026 06:54:14 -0600 Subject: [PATCH 11/33] Refactor URL handling and enhance cross-reference functionality - Updated URL generation logic in `url_utils.py` to resolve nested models correctly, particularly for models with "Description" in their name. - Introduced `_resolve_to_parent_if_description` function to ensure URLs point to parent objects when applicable. - Modified `REFERENCE_MODEL_TO_BASENAME` mappings for improved consistency in URL generation. - Enhanced cross-reference identification logic in `core.py` to prevent duplicate references from the same source. - Updated `REFERENCE_MODEL_NAMES` to exclude models with "Description" in their name, streamlining reference handling. --- api_v2/url_utils.py | 63 +- .../srd-2024/CrossReference.json | 111888 +++++++++++++++ scripts/crossreference/core.py | 26 +- server/vector_index.pkl | Bin 12093162 -> 0 bytes 4 files changed, 111953 insertions(+), 24 deletions(-) delete mode 100644 server/vector_index.pkl diff --git a/api_v2/url_utils.py b/api_v2/url_utils.py index 2720ab6c..0177ae49 100644 --- a/api_v2/url_utils.py +++ b/api_v2/url_utils.py @@ -3,28 +3,31 @@ Uses the api_v2 router as source of truth for top-level resources, plus a small fallback map for nested reference models that do not have their own viewset. +For models whose name includes "Description" (e.g. AbilityDescription), the URL +resolves to the parent object (e.g. Ability) via the "describes" FK. """ +from django.contrib.contenttypes.models import ContentType from django.urls import reverse -# Nested reference models (no own viewset) -> basename for their resource URL. -# Used only when the reference's content type is not in the router-derived map. +# Nested reference models (no own viewset) -> DRF router basename for reverse(). +# Must match the viewset basename (e.g. "characterclass" for /v2/classes/), not the URL prefix. REFERENCE_MODEL_TO_BASENAME = { - "AbilityDescription": "abilities", - "SkillDescription": "skills", + "AbilityDescription": "ability", + "SkillDescription": "skill", "SpeciesTrait": "species", - "FeatBenefit": "feats", - "BackgroundBenefit": "backgrounds", - "CreatureTrait": "creatures", - "CreatureAction": "creatures", - "CreatureTypeDescription": "creaturetypes", - "DamageTypeDescription": "damagetypes", - "AlignmentDescription": "alignments", - "ConditionDescription": "conditions", - "SpellCastingOption": "spells", - "ClassFeature": "classes", - "ClassFeatureItem": "classes", + "FeatBenefit": "feat", + "BackgroundBenefit": "background", + "CreatureTrait": "creature", + "CreatureAction": "creature", + "CreatureTypeDescription": "creaturetype", + "DamageTypeDescription": "damagetype", + "AlignmentDescription": "alignment", + "ConditionDescription": "condition", + "SpellCastingOption": "spell", + "ClassFeature": "characterclass", + "ClassFeatureItem": "characterclass", } @@ -52,9 +55,9 @@ def _get_basename_for_object(model, object_key): if model.__name__ == "Item": try: obj = model.objects.get(pk=object_key) - return "magicitems" if obj.is_magic_item else "items" + return "magicitems" if obj.is_magic_item else "item" except model.DoesNotExist: - return "items" + return "item" model_to_basename = _get_model_to_basename() basename = model_to_basename.get(model) if basename is None: @@ -62,8 +65,34 @@ def _get_basename_for_object(model, object_key): return basename +def _resolve_to_parent_if_description(content_type, object_key): + """ + For models that are nested under a parent resource, resolve to the parent so the + URL points at the parent object. Used for: + - *Description models (e.g. AbilityDescription) via the "describes" FK. + - ClassFeature via the "parent" FK (CharacterClass). + Returns (parent_content_type, parent_pk) or (content_type, object_key) unchanged. + """ + model = content_type.model_class() if content_type else None + if model is None: + return content_type, object_key + name = model.__name__ + if "Description" not in name and name != "ClassFeature": + return content_type, object_key + try: + obj = model.objects.get(pk=object_key) + except model.DoesNotExist: + return content_type, object_key + parent = getattr(obj, "describes", None) or getattr(obj, "parent", None) + if parent is None: + return content_type, object_key + parent_ct = ContentType.objects.get_for_model(parent) + return parent_ct, str(parent.pk) + + def _build_object_url(content_type, object_key, request=None): """Build v2 API URL for the given content type and key. Returns None if no basename.""" + content_type, object_key = _resolve_to_parent_if_description(content_type, object_key) model = content_type.model_class() if content_type else None if model is None: return None diff --git a/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json b/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json index 02cf5907..3b5f5964 100644 --- a/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json +++ b/data/v2/wizards-of-the-coast/srd-2024/CrossReference.json @@ -24730,5 +24730,111893 @@ }, "model": "api_v2.crossreference", "pk": 2061 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 2062 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 2063 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 2064 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 2065 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2066 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2067 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2068 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2069 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2070 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2071 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2072 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 2073 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 2074 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 2075 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 2076 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 2077 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 2078 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 2079 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 2080 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 2081 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 2082 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 2083 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 2084 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2085 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2086 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 2087 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 2088 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2089 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2090 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 2091 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 2092 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2093 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2094 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 2095 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 2096 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 2097 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 2098 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 2099 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 2100 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2101 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2102 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 2103 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 2104 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 2105 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 2106 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 2107 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 2108 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 2109 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 2110 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 2111 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 2112 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 2113 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 2114 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 2115 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 2116 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2117 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 2118 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 2119 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 2120 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 2121 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 2122 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2123 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2124 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2125 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2126 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2127 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2128 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2129 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2130 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2131 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2132 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2133 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 2134 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 2135 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 2136 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 2137 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 2138 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2139 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2140 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2141 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2142 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2143 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2144 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2145 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2146 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 2147 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2148 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 2149 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 2150 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 2151 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 2152 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 2153 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 2154 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 2155 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 2156 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2157 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 2158 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 2159 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 2160 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 2161 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 2162 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 2163 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 2164 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 2165 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2166 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2167 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2168 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2169 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2170 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 2171 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 2172 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 2173 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 2174 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 2175 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 2176 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 2177 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 2178 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2179 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 2180 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2181 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 2182 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 2183 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 2184 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 2185 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 2186 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 2187 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2188 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2189 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2190 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2191 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2192 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2193 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2194 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2195 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 2196 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 2197 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2198 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2199 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2200 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2201 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2202 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2203 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 2204 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 2205 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 2206 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 2207 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 2208 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 2209 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 2210 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 2211 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 2212 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 2213 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 2214 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 2215 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2216 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2217 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2218 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2219 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2220 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2221 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2222 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2223 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 2224 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 2225 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 2226 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 2227 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 2228 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2229 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2230 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2231 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2232 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2233 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2234 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2235 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2236 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 2237 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2238 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2239 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2240 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2241 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2242 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2243 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 2244 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 2245 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 2246 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 2247 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 2248 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 2249 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 2250 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 2251 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 2252 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 2253 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 2254 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 2255 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 2256 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 2257 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 2258 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 2259 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 2260 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 2261 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2262 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2263 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2264 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2265 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 2266 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 2267 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 2268 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2269 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 2270 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 2271 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 2272 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 2273 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 2274 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 2275 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 2276 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 2277 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 2278 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 2279 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2280 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2281 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2282 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2283 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2284 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 2285 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 2286 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 2287 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 2288 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 2289 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 2290 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 2291 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 2292 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 2293 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 2294 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 2295 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 2296 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 2297 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 2298 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 2299 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 2300 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 2301 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 2302 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 2303 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 2304 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 2305 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 2306 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 2307 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 2308 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 2309 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 2310 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 2311 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 2312 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 2313 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 2314 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 2315 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 2316 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 2317 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 2318 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 2319 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 2320 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 2321 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 2322 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 2323 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 2324 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 2325 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 2326 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 2327 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 2328 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 2329 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 2330 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 2331 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 2332 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 2333 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 2334 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 2335 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 2336 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 2337 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 2338 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 2339 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 2340 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 2341 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 2342 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 2343 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 2344 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 2345 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 2346 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 2347 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 2348 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 2349 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 2350 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 2351 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 2352 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 2353 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 2354 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2355 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 2356 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 2357 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 2358 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2359 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2360 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2361 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2362 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2363 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2364 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2365 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2366 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2367 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2368 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2369 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2370 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 2371 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2372 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 2373 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 2374 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 2375 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 2376 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 2377 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 2378 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 2379 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 2380 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 2381 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 2382 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 2383 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 2384 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 2385 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 2386 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 2387 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 2388 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 2389 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 2390 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2391 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2392 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2393 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2394 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2395 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2396 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 2397 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 2398 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2399 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2400 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2401 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2402 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2403 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 2404 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 2405 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 2406 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 2407 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 2408 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 2409 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 2410 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 2411 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 2412 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 2413 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2414 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 2415 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 2416 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 2417 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 2418 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 2419 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 2420 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 2421 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 2422 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 2423 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 2424 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 2425 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 2426 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 2427 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 2428 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 2429 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 2430 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 2431 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 2432 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 2433 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 2434 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 2435 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 2436 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2437 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 2438 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2439 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2440 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2441 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2442 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2443 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2444 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 2445 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2446 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 2447 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 2448 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 2449 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2450 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2451 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2452 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2453 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2454 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2455 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2456 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2457 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2458 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2459 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2460 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2461 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2462 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2463 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2464 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2465 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2466 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2467 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2468 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 2469 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 2470 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 2471 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 2472 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 2473 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 2474 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 2475 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 2476 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 2477 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 2478 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 2479 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2480 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2481 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2482 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2483 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2484 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2485 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2486 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2487 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 2488 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 2489 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 2490 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 2491 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 2492 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 2493 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 2494 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 2495 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 2496 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 2497 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 2498 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 2499 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 2500 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 2501 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2502 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2503 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2504 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2505 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2506 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2507 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2508 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2509 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 2510 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2511 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 2512 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 2513 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 2514 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 2515 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 2516 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 2517 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 2518 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 2519 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2520 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2521 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2522 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2523 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2524 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2525 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2526 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2527 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2528 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2529 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 2530 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2531 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2532 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2533 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2534 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2535 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 2536 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 2537 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 2538 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 2539 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 2540 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 2541 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 2542 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 2543 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 2544 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 2545 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 2546 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 2547 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 2548 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 2549 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 2550 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 2551 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 2552 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 2553 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2554 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2555 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2556 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2557 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2558 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2559 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2560 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2561 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2562 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 2563 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 2564 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 2565 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 2566 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 2567 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2568 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2569 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2570 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2571 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2572 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2573 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2574 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2575 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2576 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2577 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2578 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2579 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2580 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2581 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2582 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2583 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2584 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2585 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2586 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2587 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2588 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 2589 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2590 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2591 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2592 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2593 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2594 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2595 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2596 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2597 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2598 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 2599 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 2600 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 2601 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 2602 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 2603 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 2604 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 2605 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 2606 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 2607 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 2608 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 2609 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2610 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2611 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2612 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2613 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2614 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2615 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2616 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2617 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2618 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2619 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2620 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 2621 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 2622 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 2623 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 2624 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 2625 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 2626 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 2627 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 2628 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 2629 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 2630 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 2631 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 2632 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 2633 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 2634 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 2635 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2636 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2637 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2638 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2639 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2640 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2641 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2642 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2643 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2644 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 2645 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2646 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2647 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2648 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2649 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2650 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2651 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2652 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2653 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2654 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2655 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 2656 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 2657 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 2658 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2659 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2660 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2661 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2662 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2663 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2664 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2665 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2666 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 2667 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 2668 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 2669 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2670 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 2671 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2672 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 2673 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2674 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2675 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2676 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2677 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2678 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2679 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2680 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2681 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2682 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2683 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2684 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2685 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2686 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2687 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2688 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2689 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2690 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2691 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 2692 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 2693 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 2694 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 2695 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 2696 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2697 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 2698 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2699 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2700 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2701 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2702 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2703 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2704 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2705 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2706 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 2707 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 2708 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 2709 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 2710 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 2711 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 2712 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 2713 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 2714 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 2715 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 2716 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 2717 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 2718 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 2719 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2720 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2721 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2722 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2723 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 2724 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 2725 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2726 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2727 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 2728 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 2729 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2730 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2731 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2732 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2733 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 2734 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 2735 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2736 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2737 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2738 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 2739 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 2740 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 2741 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 2742 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 2743 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 2744 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 2745 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 2746 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2747 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2748 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2749 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2750 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2751 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2752 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 2753 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 2754 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2755 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 2756 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2757 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2758 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2759 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2760 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2761 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2762 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 2763 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2764 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2765 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2766 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2767 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2768 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2769 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2770 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2771 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2772 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 2773 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2774 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2775 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2776 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2777 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2778 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2779 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2780 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2781 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 2782 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2783 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2784 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2785 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2786 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2787 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2788 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2789 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 2790 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2791 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2792 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2793 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2794 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2795 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2796 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 2797 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2798 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2799 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2800 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2801 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 2802 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 2803 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2804 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2805 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2806 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2807 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2808 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 2809 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2810 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2811 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2812 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2813 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2814 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2815 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2816 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 2817 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 2818 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2819 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2820 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2821 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2822 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2823 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2824 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2825 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 2826 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 2827 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2828 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 2829 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2830 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2831 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2832 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2833 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2834 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2835 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 2836 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2837 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2838 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2839 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2840 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2841 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2842 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2843 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2844 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2845 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 2846 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2847 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2848 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2849 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2850 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2851 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2852 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2853 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2854 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2855 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2856 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 2857 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2858 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2859 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2860 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2861 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2862 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2863 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2864 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2865 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 2866 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2867 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2868 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2869 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2870 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2871 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2872 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2873 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 2874 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2875 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2876 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2877 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2878 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2879 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 2880 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 2881 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2882 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2883 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2884 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2885 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2886 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2887 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 2888 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2889 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2890 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2891 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2892 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2893 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2894 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2895 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2896 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2897 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 2898 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2899 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2900 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2901 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2902 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2903 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2904 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2905 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2906 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2907 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2908 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2909 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2910 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2911 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2912 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2913 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2914 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2915 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2916 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2917 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2918 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 2919 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2920 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2921 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2922 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2923 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2924 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2925 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2926 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2927 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2928 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2929 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2930 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2931 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2932 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2933 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2934 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2935 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2936 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2937 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2938 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2939 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2940 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2941 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2942 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2943 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2944 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 2945 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2946 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2947 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2948 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2949 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2950 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2951 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2952 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2953 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2954 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2955 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2956 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2957 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2958 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2959 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2960 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 2961 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2962 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2963 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2964 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2965 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2966 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2967 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2968 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2969 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2970 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2971 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2972 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2973 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 2974 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2975 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2976 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2977 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2978 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2979 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2980 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2981 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2982 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 2983 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2984 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 2985 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2986 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2987 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 2988 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2989 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2990 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2991 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 2992 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2993 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2994 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2995 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2996 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2997 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 2998 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 2999 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3000 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3001 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3002 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3003 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 3004 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3005 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3006 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3007 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3008 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3009 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3010 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3011 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3012 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3013 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3014 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3015 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3016 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3017 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3018 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3019 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3020 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 3021 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3022 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 3023 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 3024 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 3025 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3026 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3027 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3028 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3029 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3030 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3031 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3032 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3033 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3034 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3035 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3036 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 3037 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3038 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3039 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3040 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3041 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3042 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3043 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3044 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3045 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3046 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3047 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3048 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3049 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3050 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3051 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3052 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3053 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3054 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3055 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3056 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3057 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3058 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3059 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3060 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3061 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 3062 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3063 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3064 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3065 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3066 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3067 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 3068 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 3069 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 3070 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3071 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3072 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3073 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3074 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3075 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3076 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3077 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3078 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3079 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3080 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3081 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3082 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3083 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3084 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3085 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3086 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3087 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3088 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3089 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3090 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3091 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3092 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3093 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3094 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3095 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3096 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3097 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 3098 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 3099 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3100 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3101 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3102 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3103 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3104 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3105 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3106 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3107 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3108 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 3109 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 3110 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3111 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3112 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3113 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 3114 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3115 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3116 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3117 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3118 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3119 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3120 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3121 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3122 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3123 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3124 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3125 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3126 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3127 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3128 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3129 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3130 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3131 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3132 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3133 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3134 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3135 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3136 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3137 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3138 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3139 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3140 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3141 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3142 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3143 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3144 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3145 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 3146 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3147 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3148 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3149 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3150 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 3151 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3152 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3153 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 3154 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3155 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3156 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3157 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3158 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3159 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3160 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3161 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 3162 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3163 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 3164 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3165 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3166 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3167 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3168 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3169 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3170 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3171 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 3172 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 3173 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 3174 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 3175 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 3176 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 3177 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 3178 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 3179 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 3180 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3181 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3182 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3183 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 3184 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3185 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 3186 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3187 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3188 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3189 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3190 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3191 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3192 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3193 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 3194 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 3195 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3196 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3197 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3198 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3199 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3200 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3201 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3202 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3203 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3204 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3205 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3206 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3207 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3208 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 3209 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3210 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3211 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3212 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3213 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3214 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3215 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3216 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3217 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3218 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3219 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3220 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3221 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3222 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3223 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3224 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3225 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3226 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 3227 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 3228 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 3229 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 3230 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 3231 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 3232 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 3233 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 3234 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 3235 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 3236 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3237 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3238 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3239 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3240 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3241 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3242 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3243 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3244 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3245 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3246 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3247 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3248 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3249 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3250 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3251 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3252 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3253 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3254 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3255 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 3256 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3257 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3258 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3259 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3260 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3261 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3262 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3263 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3264 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3265 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3266 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3267 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3268 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3269 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3270 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3271 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3272 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3273 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 3274 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 3275 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 3276 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 3277 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 3278 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3279 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3280 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3281 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3282 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3283 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3284 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3285 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3286 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 3287 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 3288 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 3289 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 3290 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 3291 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3292 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3293 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3294 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3295 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3296 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3297 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3298 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3299 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3300 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3301 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3302 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3303 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3304 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3305 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3306 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3307 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 3308 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3309 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3310 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3311 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3312 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3313 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3314 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3315 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 3316 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3317 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3318 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3319 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3320 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3321 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3322 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3323 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3324 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3325 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3326 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3327 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3328 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 3329 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 3330 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 3331 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 3332 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3333 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3334 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3335 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3336 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3337 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 3338 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 3339 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 3340 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 3341 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 3342 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3343 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3344 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3345 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3346 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3347 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3348 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3349 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3350 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3351 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3352 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 3353 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 3354 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 3355 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 3356 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 3357 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 3358 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 3359 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3360 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3361 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3362 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3363 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3364 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3365 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3366 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3367 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3368 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3369 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3370 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3371 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 3372 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 3373 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 3374 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 3375 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 3376 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 3377 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 3378 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3379 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3380 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3381 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3382 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3383 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3384 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3385 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3386 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3387 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3388 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 3389 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 3390 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3391 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3392 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3393 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3394 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3395 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3396 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3397 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3398 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3399 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3400 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3401 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3402 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3403 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 3404 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 3405 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3406 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3407 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3408 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3409 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3410 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3411 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3412 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 3413 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 3414 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 3415 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 3416 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 3417 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 3418 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3419 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3420 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3421 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3422 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3423 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3424 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3425 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3426 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3427 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3428 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3429 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3430 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3431 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3432 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3433 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3434 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3435 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3436 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3437 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3438 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3439 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3440 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3441 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3442 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3443 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3444 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3445 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3446 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3447 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3448 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3449 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3450 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3451 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3452 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3453 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3454 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3455 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3456 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3457 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3458 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3459 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3460 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3461 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3462 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3463 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 3464 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 3465 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 3466 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 3467 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 3468 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 3469 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 3470 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 3471 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 3472 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3473 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3474 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3475 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3476 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3477 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 3478 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3479 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3480 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3481 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3482 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3483 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3484 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3485 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3486 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3487 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3488 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3489 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3490 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 3491 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3492 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3493 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3494 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3495 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3496 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 3497 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 3498 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 3499 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3500 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3501 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3502 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3503 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3504 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3505 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3506 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3507 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3508 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3509 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3510 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3511 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 3512 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 3513 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 3514 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 3515 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 3516 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 3517 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 3518 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3519 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 3520 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 3521 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 3522 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 3523 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 3524 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 3525 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 3526 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 3527 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 3528 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 3529 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 3530 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 3531 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 3532 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 3533 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 3534 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3535 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3536 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3537 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3538 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3539 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3540 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3541 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3542 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3543 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3544 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3545 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3546 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 3547 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 3548 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 3549 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 3550 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 3551 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 3552 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 3553 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 3554 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3555 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3556 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3557 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 3558 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3559 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3560 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3561 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3562 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3563 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3564 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3565 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3566 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3567 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3568 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3569 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3570 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3571 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3572 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3573 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3574 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3575 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3576 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 3577 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3578 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3579 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3580 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3581 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3582 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 3583 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 3584 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 3585 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 3586 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 3587 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 3588 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 3589 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 3590 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 3591 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 3592 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3593 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3594 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3595 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3596 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3597 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3598 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3599 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3600 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3601 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3602 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3603 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 3604 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3605 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 3606 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 3607 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3608 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3609 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3610 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3611 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 3612 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 3613 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 3614 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 3615 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 3616 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 3617 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 3618 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3619 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3620 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3621 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3622 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3623 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3624 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3625 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3626 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3627 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3628 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3629 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3630 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3631 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3632 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3633 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3634 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3635 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3636 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3637 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3638 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3639 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3640 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3641 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 3642 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3643 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3644 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3645 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3646 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3647 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3648 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3649 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3650 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3651 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3652 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3653 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3654 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3655 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 3656 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 3657 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 3658 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3659 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3660 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3661 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3662 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 3663 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 3664 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 3665 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 3666 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 3667 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 3668 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 3669 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3670 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 3671 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 3672 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3673 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3674 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3675 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3676 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 3677 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3678 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3679 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3680 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3681 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3682 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3683 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3684 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3685 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3686 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3687 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3688 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3689 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3690 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3691 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3692 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3693 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3694 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3695 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3696 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3697 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3698 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3699 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3700 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3701 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3702 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3703 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 3704 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 3705 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 3706 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3707 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3708 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3709 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3710 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3711 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3712 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3713 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3714 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3715 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3716 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3717 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3718 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3719 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3720 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 3721 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3722 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 3723 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 3724 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 3725 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 3726 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 3727 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 3728 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3729 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3730 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3731 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3732 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3733 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3734 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3735 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3736 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3737 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3738 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3739 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3740 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 3741 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 3742 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 3743 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3744 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3745 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3746 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3747 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 3748 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3749 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3750 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3751 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3752 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3753 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3754 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3755 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3756 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3757 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3758 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 3759 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 3760 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 3761 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 3762 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3763 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3764 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3765 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3766 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3767 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3768 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3769 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3770 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3771 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3772 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3773 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3774 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3775 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 3776 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 3777 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 3778 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 3779 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 3780 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 3781 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 3782 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 3783 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3784 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 3785 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 3786 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 3787 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 3788 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 3789 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3790 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3791 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3792 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3793 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3794 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3795 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3796 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3797 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3798 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3799 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3800 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3801 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3802 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3803 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3804 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3805 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3806 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3807 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3808 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 3809 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3810 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3811 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3812 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3813 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3814 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3815 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3816 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3817 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3818 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3819 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3820 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3821 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3822 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3823 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3824 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3825 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3826 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3827 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3828 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3829 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3830 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3831 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3832 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3833 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 3834 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 3835 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 3836 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 3837 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3838 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3839 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3840 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3841 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3842 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3843 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3844 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3845 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3846 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3847 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3848 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3849 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 3850 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 3851 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3852 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3853 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3854 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3855 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3856 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3857 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3858 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3859 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3860 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3861 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3862 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 3863 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 3864 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 3865 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3866 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3867 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3868 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3869 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3870 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 3871 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3872 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3873 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3874 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3875 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3876 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3877 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3878 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3879 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3880 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3881 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3882 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3883 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 3884 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3885 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3886 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3887 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3888 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3889 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 3890 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3891 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3892 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3893 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3894 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3895 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3896 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3897 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3898 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3899 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3900 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3901 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 3902 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 3903 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 3904 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 3905 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 3906 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3907 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3908 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3909 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3910 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3911 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3912 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3913 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3914 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3915 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3916 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 3917 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 3918 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 3919 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 3920 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 3921 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 3922 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 3923 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 3924 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 3925 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 3926 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 3927 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 3928 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 3929 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 3930 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 3931 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 3932 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 3933 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 3934 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 3935 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 3936 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 3937 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 3938 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 3939 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 3940 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 3941 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 3942 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 3943 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 3944 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 3945 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 3946 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 3947 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 3948 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 3949 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 3950 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 3951 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 3952 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 3953 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 3954 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 3955 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3956 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3957 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3958 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3959 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3960 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 3961 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 3962 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 3963 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 3964 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 3965 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 3966 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 3967 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 3968 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 3969 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 3970 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 3971 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 3972 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 3973 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 3974 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 3975 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 3976 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 3977 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 3978 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 3979 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 3980 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 3981 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 3982 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 3983 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 3984 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 3985 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 3986 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 3987 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 3988 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 3989 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 3990 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 3991 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 3992 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 3993 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 3994 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 3995 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 3996 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 3997 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 3998 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 3999 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4000 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4001 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 4002 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 4003 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 4004 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 4005 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 4006 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 4007 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 4008 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 4009 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 4010 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 4011 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 4012 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 4013 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 4014 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 4015 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 4016 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 4017 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 4018 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 4019 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 4020 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 4021 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 4022 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 4023 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 4024 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 4025 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 4026 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 4027 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 4028 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 4029 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 4030 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 4031 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 4032 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 4033 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 4034 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 4035 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 4036 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 4037 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 4038 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 4039 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 4040 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 4041 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 4042 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 4043 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 4044 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 4045 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 4046 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 4047 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 4048 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 4049 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 4050 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 4051 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 4052 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 4053 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4054 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4055 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4056 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4057 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4058 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4059 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4060 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 4061 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 4062 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 4063 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 4064 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 4065 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 4066 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 4067 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 4068 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 4069 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 4070 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 4071 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 4072 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4073 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4074 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 4075 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 4076 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4077 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4078 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 4079 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 4080 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4081 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4082 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 4083 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 4084 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 4085 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 4086 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 4087 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 4088 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4089 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4090 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 4091 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 4092 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 4093 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 4094 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 4095 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 4096 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 4097 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 4098 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 4099 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 4100 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 4101 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 4102 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 4103 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 4104 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4105 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 4106 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 4107 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 4108 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 4109 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 4110 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4111 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4112 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4113 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4114 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4115 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4116 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4117 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4118 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4119 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4120 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4121 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 4122 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 4123 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 4124 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 4125 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 4126 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4127 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4128 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4129 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4130 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4131 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4132 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4133 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4134 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 4135 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4136 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 4137 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 4138 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 4139 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 4140 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 4141 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 4142 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 4143 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 4144 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4145 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 4146 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 4147 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 4148 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 4149 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 4150 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 4151 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 4152 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 4153 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4154 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4155 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4156 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4157 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4158 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 4159 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 4160 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 4161 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 4162 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 4163 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 4164 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 4165 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 4166 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4167 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 4168 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4169 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 4170 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 4171 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 4172 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 4173 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 4174 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 4175 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4176 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4177 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4178 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4179 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4180 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4181 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4182 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4183 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 4184 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 4185 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4186 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4187 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4188 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4189 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4190 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4191 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 4192 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 4193 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 4194 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 4195 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 4196 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 4197 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 4198 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 4199 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 4200 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 4201 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 4202 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 4203 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4204 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4205 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4206 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4207 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4208 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4209 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4210 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4211 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 4212 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 4213 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 4214 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 4215 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 4216 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4217 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4218 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4219 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4220 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4221 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4222 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4223 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4224 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 4225 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4226 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4227 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4228 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4229 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4230 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4231 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 4232 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 4233 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 4234 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 4235 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 4236 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 4237 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 4238 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 4239 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 4240 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 4241 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 4242 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 4243 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 4244 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 4245 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 4246 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 4247 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 4248 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 4249 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4250 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4251 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4252 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4253 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 4254 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 4255 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 4256 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4257 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 4258 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 4259 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 4260 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 4261 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 4262 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 4263 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 4264 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 4265 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 4266 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 4267 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4268 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4269 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4270 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4271 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4272 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 4273 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 4274 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 4275 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 4276 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 4277 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 4278 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 4279 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 4280 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 4281 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 4282 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 4283 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 4284 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 4285 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 4286 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 4287 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 4288 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 4289 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 4290 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 4291 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 4292 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 4293 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 4294 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 4295 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 4296 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 4297 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 4298 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 4299 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 4300 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 4301 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 4302 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 4303 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 4304 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 4305 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 4306 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 4307 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 4308 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 4309 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 4310 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 4311 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 4312 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 4313 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 4314 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 4315 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 4316 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 4317 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 4318 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 4319 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 4320 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 4321 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 4322 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 4323 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 4324 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 4325 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 4326 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 4327 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 4328 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 4329 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 4330 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 4331 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 4332 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 4333 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 4334 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 4335 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 4336 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 4337 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 4338 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 4339 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 4340 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 4341 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 4342 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4343 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 4344 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 4345 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 4346 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4347 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4348 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4349 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4350 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4351 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4352 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4353 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4354 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4355 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4356 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4357 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4358 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 4359 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4360 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 4361 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 4362 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 4363 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 4364 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 4365 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 4366 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 4367 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 4368 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 4369 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 4370 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 4371 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 4372 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 4373 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 4374 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 4375 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 4376 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 4377 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 4378 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4379 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4380 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4381 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4382 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4383 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4384 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 4385 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 4386 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4387 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4388 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4389 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4390 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4391 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 4392 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 4393 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 4394 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 4395 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 4396 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 4397 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 4398 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 4399 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 4400 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 4401 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4402 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 4403 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 4404 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 4405 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 4406 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 4407 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 4408 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 4409 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 4410 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 4411 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 4412 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 4413 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 4414 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 4415 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 4416 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 4417 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 4418 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 4419 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 4420 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 4421 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 4422 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 4423 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 4424 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4425 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 4426 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4427 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4428 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4429 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4430 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4431 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4432 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 4433 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4434 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 4435 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 4436 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 4437 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4438 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4439 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4440 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4441 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4442 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4443 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4444 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4445 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4446 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4447 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4448 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4449 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4450 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4451 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4452 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4453 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4454 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4455 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4456 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 4457 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 4458 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 4459 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 4460 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 4461 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 4462 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 4463 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 4464 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 4465 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 4466 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 4467 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4468 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4469 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4470 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4471 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4472 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4473 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4474 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4475 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 4476 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 4477 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 4478 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 4479 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 4480 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 4481 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 4482 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 4483 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 4484 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 4485 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 4486 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 4487 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 4488 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 4489 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4490 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4491 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4492 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4493 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4494 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4495 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4496 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4497 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 4498 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4499 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 4500 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 4501 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 4502 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 4503 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 4504 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 4505 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 4506 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 4507 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4508 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4509 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4510 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4511 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4512 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4513 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4514 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4515 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4516 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4517 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 4518 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4519 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4520 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4521 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4522 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4523 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 4524 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 4525 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 4526 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 4527 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 4528 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 4529 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 4530 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 4531 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 4532 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 4533 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 4534 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 4535 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 4536 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 4537 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 4538 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 4539 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 4540 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 4541 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4542 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4543 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4544 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4545 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4546 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4547 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4548 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4549 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4550 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 4551 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 4552 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 4553 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 4554 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 4555 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4556 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4557 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4558 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4559 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4560 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4561 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4562 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4563 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4564 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4565 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4566 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4567 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4568 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4569 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4570 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4571 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4572 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4573 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4574 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4575 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4576 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 4577 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4578 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4579 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4580 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4581 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4582 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4583 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4584 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4585 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4586 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 4587 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 4588 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 4589 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 4590 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 4591 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 4592 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 4593 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 4594 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 4595 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 4596 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 4597 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4598 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4599 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4600 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4601 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4602 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4603 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4604 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4605 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4606 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4607 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4608 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 4609 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 4610 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 4611 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 4612 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 4613 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 4614 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 4615 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 4616 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 4617 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 4618 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 4619 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 4620 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 4621 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 4622 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 4623 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4624 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4625 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4626 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4627 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4628 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4629 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4630 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4631 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4632 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 4633 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4634 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4635 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4636 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4637 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4638 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4639 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4640 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4641 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4642 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4643 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 4644 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 4645 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 4646 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4647 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4648 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4649 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4650 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4651 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4652 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4653 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4654 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 4655 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 4656 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 4657 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4658 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 4659 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4660 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 4661 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4662 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4663 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4664 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4665 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4666 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4667 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4668 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4669 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4670 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4671 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4672 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4673 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4674 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4675 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4676 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4677 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4678 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4679 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 4680 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 4681 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 4682 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 4683 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 4684 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4685 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 4686 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4687 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4688 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4689 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4690 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4691 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4692 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4693 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4694 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 4695 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 4696 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 4697 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 4698 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 4699 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 4700 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 4701 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 4702 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 4703 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 4704 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 4705 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 4706 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 4707 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4708 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4709 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4710 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4711 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 4712 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 4713 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4714 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4715 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 4716 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 4717 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4718 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4719 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4720 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4721 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 4722 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 4723 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4724 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4725 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4726 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 4727 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 4728 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 4729 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 4730 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 4731 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 4732 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 4733 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 4734 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4735 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4736 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4737 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4738 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4739 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4740 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 4741 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 4742 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4743 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 4744 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4745 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4746 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4747 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4748 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4749 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4750 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 4751 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4752 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4753 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4754 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4755 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4756 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4757 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4758 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4759 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4760 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 4761 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4762 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4763 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4764 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4765 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4766 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4767 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4768 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4769 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 4770 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4771 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4772 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4773 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4774 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4775 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4776 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4777 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 4778 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4779 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4780 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4781 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4782 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4783 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4784 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 4785 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4786 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4787 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4788 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4789 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 4790 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 4791 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4792 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4793 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4794 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4795 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4796 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 4797 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4798 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4799 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4800 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4801 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4802 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4803 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4804 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 4805 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 4806 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4807 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4808 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4809 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4810 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4811 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4812 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4813 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 4814 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 4815 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4816 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 4817 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4818 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4819 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4820 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4821 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4822 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4823 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 4824 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4825 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4826 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4827 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4828 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4829 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4830 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4831 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4832 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4833 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 4834 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4835 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4836 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4837 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4838 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4839 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4840 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4841 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4842 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4843 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4844 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 4845 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4846 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4847 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4848 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4849 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4850 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4851 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4852 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4853 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 4854 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4855 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4856 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4857 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4858 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4859 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4860 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4861 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 4862 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4863 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4864 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4865 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4866 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4867 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 4868 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 4869 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4870 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4871 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4872 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4873 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4874 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4875 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 4876 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4877 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4878 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4879 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4880 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4881 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4882 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4883 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4884 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4885 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 4886 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4887 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4888 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4889 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4890 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4891 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4892 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4893 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4894 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4895 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4896 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4897 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4898 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4899 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4900 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4901 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4902 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4903 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4904 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4905 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4906 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 4907 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4908 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4909 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4910 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4911 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4912 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4913 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4914 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4915 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4916 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4917 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4918 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4919 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4920 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4921 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4922 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4923 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4924 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4925 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4926 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4927 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4928 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4929 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4930 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4931 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4932 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 4933 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4934 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4935 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4936 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4937 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4938 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4939 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4940 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4941 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4942 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4943 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4944 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4945 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4946 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4947 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4948 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 4949 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4950 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4951 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4952 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4953 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4954 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4955 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4956 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4957 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4958 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4959 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4960 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4961 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 4962 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4963 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4964 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4965 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4966 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4967 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4968 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4969 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4970 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 4971 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4972 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 4973 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4974 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4975 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 4976 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4977 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4978 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4979 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 4980 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4981 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4982 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4983 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4984 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4985 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4986 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4987 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4988 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4989 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4990 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4991 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 4992 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4993 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4994 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4995 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4996 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 4997 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4998 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 4999 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5000 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5001 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5002 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5003 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5004 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5005 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5006 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5007 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5008 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 5009 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5010 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 5011 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 5012 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 5013 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5014 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5015 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5016 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5017 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5018 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5019 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5020 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5021 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5022 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5023 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5024 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 5025 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5026 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5027 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5028 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5029 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5030 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5031 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5032 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5033 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5034 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5035 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5036 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5037 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5038 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5039 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5040 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5041 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5042 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5043 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5044 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5045 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5046 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5047 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5048 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5049 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 5050 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5051 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5052 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5053 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5054 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5055 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 5056 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 5057 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 5058 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5059 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5060 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5061 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5062 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5063 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5064 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5065 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5066 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5067 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5068 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5069 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5070 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5071 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5072 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5073 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5074 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5075 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5076 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5077 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5078 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5079 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5080 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5081 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5082 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5083 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5084 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5085 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 5086 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 5087 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5088 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5089 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5090 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5091 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5092 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5093 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5094 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5095 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5096 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 5097 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 5098 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5099 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5100 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5101 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 5102 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5103 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5104 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5105 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5106 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5107 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5108 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5109 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5110 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5111 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5112 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5113 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5114 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5115 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5116 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5117 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5118 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5119 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5120 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5121 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5122 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5123 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5124 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5125 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5126 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5127 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5128 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5129 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5130 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5131 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5132 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5133 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 5134 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5135 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5136 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5137 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5138 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 5139 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5140 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5141 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 5142 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5143 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5144 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5145 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5146 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5147 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5148 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5149 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 5150 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5151 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 5152 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5153 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5154 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5155 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5156 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5157 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5158 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5159 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 5160 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 5161 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 5162 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 5163 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 5164 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 5165 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 5166 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 5167 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 5168 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5169 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5170 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5171 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 5172 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5173 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 5174 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5175 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5176 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5177 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5178 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5179 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5180 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5181 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 5182 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 5183 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5184 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5185 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5186 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5187 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5188 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5189 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5190 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5191 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5192 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5193 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5194 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5195 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5196 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 5197 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5198 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5199 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5200 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5201 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5202 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5203 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5204 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5205 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5206 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5207 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5208 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5209 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5210 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5211 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5212 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5213 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5214 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 5215 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 5216 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 5217 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 5218 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 5219 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 5220 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 5221 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 5222 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 5223 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 5224 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5225 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5226 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5227 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5228 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5229 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5230 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5231 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5232 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5233 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5234 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5235 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5236 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5237 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5238 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5239 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5240 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5241 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5242 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5243 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 5244 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5245 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5246 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5247 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5248 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5249 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5250 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5251 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5252 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5253 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5254 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5255 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5256 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5257 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5258 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5259 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5260 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5261 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 5262 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 5263 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 5264 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 5265 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 5266 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5267 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5268 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5269 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5270 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5271 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5272 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5273 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5274 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 5275 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 5276 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 5277 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 5278 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 5279 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5280 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5281 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5282 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5283 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5284 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5285 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5286 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5287 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5288 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5289 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5290 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5291 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5292 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5293 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5294 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5295 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 5296 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5297 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5298 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5299 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5300 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5301 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5302 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5303 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 5304 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5305 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5306 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5307 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5308 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5309 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5310 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5311 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5312 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5313 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5314 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5315 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5316 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 5317 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 5318 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 5319 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 5320 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5321 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5322 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5323 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5324 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5325 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 5326 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 5327 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 5328 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 5329 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 5330 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5331 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5332 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5333 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5334 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5335 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5336 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5337 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5338 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5339 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5340 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 5341 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 5342 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 5343 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 5344 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 5345 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 5346 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 5347 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5348 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5349 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5350 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5351 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5352 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5353 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5354 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5355 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5356 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5357 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5358 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5359 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 5360 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 5361 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 5362 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 5363 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 5364 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 5365 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 5366 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5367 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5368 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5369 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5370 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5371 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5372 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5373 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5374 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5375 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5376 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 5377 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 5378 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5379 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5380 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5381 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5382 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5383 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5384 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5385 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5386 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5387 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5388 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5389 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5390 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5391 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 5392 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 5393 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5394 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5395 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5396 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5397 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5398 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5399 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5400 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 5401 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 5402 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 5403 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 5404 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 5405 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 5406 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5407 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5408 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5409 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5410 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5411 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5412 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5413 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5414 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5415 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5416 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5417 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5418 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5419 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5420 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5421 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5422 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5423 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5424 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5425 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5426 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5427 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5428 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5429 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5430 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5431 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5432 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5433 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5434 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5435 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5436 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5437 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5438 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5439 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5440 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5441 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5442 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5443 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5444 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5445 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5446 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5447 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5448 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5449 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5450 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5451 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 5452 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 5453 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 5454 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 5455 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 5456 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 5457 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 5458 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 5459 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 5460 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5461 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5462 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5463 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5464 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5465 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 5466 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5467 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5468 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5469 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5470 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5471 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5472 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5473 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5474 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5475 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5476 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5477 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5478 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 5479 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5480 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5481 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5482 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5483 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5484 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 5485 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 5486 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 5487 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5488 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5489 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5490 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5491 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5492 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5493 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5494 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5495 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5496 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5497 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5498 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5499 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 5500 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 5501 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 5502 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 5503 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 5504 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 5505 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 5506 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5507 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 5508 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 5509 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 5510 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 5511 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 5512 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 5513 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 5514 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 5515 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 5516 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 5517 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 5518 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 5519 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 5520 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 5521 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 5522 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5523 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5524 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5525 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5526 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5527 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5528 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5529 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5530 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5531 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5532 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5533 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5534 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 5535 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 5536 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 5537 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 5538 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 5539 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 5540 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 5541 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 5542 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5543 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5544 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5545 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 5546 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5547 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5548 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5549 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5550 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5551 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5552 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5553 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5554 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5555 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5556 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5557 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5558 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5559 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5560 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5561 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5562 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5563 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5564 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 5565 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5566 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5567 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5568 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5569 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5570 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 5571 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 5572 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 5573 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 5574 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 5575 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 5576 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 5577 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 5578 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 5579 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 5580 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5581 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5582 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5583 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5584 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5585 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5586 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5587 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5588 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5589 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5590 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5591 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 5592 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5593 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 5594 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 5595 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5596 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5597 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5598 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5599 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 5600 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 5601 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 5602 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 5603 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 5604 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 5605 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 5606 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5607 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5608 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5609 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5610 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5611 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5612 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5613 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5614 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5615 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5616 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5617 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5618 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5619 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5620 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5621 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5622 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5623 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5624 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5625 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5626 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5627 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5628 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5629 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 5630 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5631 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5632 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5633 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5634 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5635 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5636 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5637 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5638 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5639 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5640 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5641 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5642 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5643 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 5644 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 5645 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 5646 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5647 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5648 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5649 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5650 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 5651 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 5652 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 5653 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 5654 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 5655 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 5656 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 5657 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5658 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 5659 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 5660 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5661 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5662 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5663 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5664 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 5665 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5666 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5667 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5668 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5669 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5670 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5671 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5672 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5673 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5674 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5675 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5676 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5677 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5678 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5679 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5680 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5681 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5682 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5683 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5684 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5685 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5686 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5687 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5688 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5689 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5690 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5691 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 5692 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 5693 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 5694 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5695 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5696 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5697 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5698 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5699 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5700 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5701 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5702 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5703 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5704 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5705 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5706 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5707 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5708 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 5709 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5710 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 5711 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 5712 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 5713 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 5714 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 5715 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 5716 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5717 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5718 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5719 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5720 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5721 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5722 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5723 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5724 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5725 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5726 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5727 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5728 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 5729 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 5730 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 5731 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5732 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5733 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5734 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5735 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 5736 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5737 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5738 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5739 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5740 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5741 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5742 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5743 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5744 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5745 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5746 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 5747 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 5748 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 5749 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 5750 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5751 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5752 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5753 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5754 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5755 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5756 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5757 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5758 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5759 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5760 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5761 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5762 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5763 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 5764 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 5765 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 5766 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 5767 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 5768 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 5769 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 5770 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 5771 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5772 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 5773 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 5774 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 5775 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 5776 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 5777 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5778 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5779 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5780 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5781 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5782 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5783 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5784 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5785 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5786 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5787 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5788 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5789 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5790 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5791 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5792 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5793 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5794 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5795 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5796 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 5797 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5798 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5799 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5800 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5801 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5802 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5803 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5804 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5805 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5806 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5807 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5808 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5809 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5810 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5811 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5812 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5813 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5814 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5815 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5816 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5817 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5818 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5819 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5820 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5821 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 5822 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 5823 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 5824 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 5825 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5826 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5827 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5828 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5829 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5830 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5831 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5832 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5833 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5834 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5835 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5836 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5837 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 5838 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 5839 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5840 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5841 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5842 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5843 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5844 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5845 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5846 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5847 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5848 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5849 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5850 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 5851 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 5852 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 5853 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5854 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5855 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5856 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5857 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5858 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 5859 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5860 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5861 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5862 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5863 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5864 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5865 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5866 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5867 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5868 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5869 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5870 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5871 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 5872 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5873 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5874 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5875 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5876 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5877 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 5878 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5879 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5880 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5881 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5882 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5883 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5884 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5885 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5886 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5887 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5888 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5889 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 5890 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 5891 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 5892 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 5893 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 5894 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5895 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5896 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5897 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5898 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5899 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5900 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5901 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5902 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5903 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5904 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 5905 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 5906 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 5907 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 5908 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 5909 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 5910 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 5911 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 5912 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 5913 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 5914 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 5915 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 5916 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 5917 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 5918 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 5919 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 5920 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 5921 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 5922 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 5923 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 5924 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 5925 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 5926 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 5927 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 5928 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 5929 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 5930 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 5931 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 5932 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 5933 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 5934 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 5935 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 5936 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 5937 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 5938 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 5939 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 5940 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 5941 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 5942 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 5943 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5944 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5945 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5946 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5947 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5948 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 5949 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 5950 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 5951 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 5952 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 5953 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 5954 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 5955 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 5956 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 5957 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 5958 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 5959 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 5960 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 5961 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 5962 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 5963 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 5964 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 5965 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 5966 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 5967 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 5968 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 5969 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 5970 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 5971 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 5972 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 5973 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 5974 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 5975 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 5976 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 5977 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 5978 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 5979 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 5980 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 5981 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 5982 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 5983 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 5984 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 5985 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 5986 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 5987 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 5988 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 5989 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 5990 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 5991 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 5992 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 5993 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 5994 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 5995 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 5996 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 5997 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 5998 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 5999 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 6000 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 6001 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 6002 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 6003 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 6004 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 6005 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 6006 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 6007 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 6008 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 6009 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 6010 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 6011 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 6012 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 6013 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 6014 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 6015 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 6016 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 6017 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 6018 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 6019 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 6020 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 6021 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 6022 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 6023 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 6024 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 6025 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 6026 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 6027 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 6028 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 6029 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 6030 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 6031 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 6032 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 6033 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 6034 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 6035 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 6036 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 6037 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 6038 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 6039 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 6040 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 6041 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6042 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6043 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6044 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6045 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6046 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6047 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6048 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 6049 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 6050 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 6051 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 6052 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 6053 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 6054 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 6055 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 6056 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 6057 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 6058 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 6059 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 6060 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6061 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6062 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 6063 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 6064 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6065 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6066 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 6067 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 6068 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6069 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6070 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 6071 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 6072 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 6073 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 6074 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 6075 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 6076 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6077 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6078 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 6079 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 6080 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 6081 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 6082 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 6083 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 6084 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 6085 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 6086 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 6087 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 6088 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 6089 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 6090 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 6091 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 6092 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6093 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 6094 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 6095 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 6096 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 6097 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 6098 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6099 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6100 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6101 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6102 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6103 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6104 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6105 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6106 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6107 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6108 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6109 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 6110 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 6111 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 6112 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 6113 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 6114 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6115 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6116 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6117 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6118 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6119 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6120 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6121 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6122 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 6123 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6124 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 6125 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 6126 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 6127 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 6128 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 6129 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 6130 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 6131 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 6132 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6133 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 6134 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 6135 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 6136 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 6137 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 6138 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 6139 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 6140 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 6141 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6142 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6143 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6144 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6145 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6146 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 6147 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 6148 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 6149 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 6150 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 6151 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 6152 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 6153 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 6154 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6155 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 6156 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6157 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 6158 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 6159 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 6160 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 6161 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 6162 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 6163 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6164 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6165 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6166 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6167 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6168 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6169 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6170 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6171 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 6172 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 6173 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6174 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6175 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6176 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6177 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6178 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6179 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 6180 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 6181 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 6182 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 6183 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 6184 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 6185 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 6186 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 6187 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 6188 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 6189 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 6190 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 6191 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6192 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6193 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6194 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6195 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6196 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6197 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6198 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6199 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 6200 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 6201 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 6202 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 6203 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 6204 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6205 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6206 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6207 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6208 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6209 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6210 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6211 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6212 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 6213 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6214 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6215 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6216 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6217 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6218 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6219 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 6220 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 6221 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 6222 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 6223 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 6224 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 6225 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 6226 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 6227 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 6228 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 6229 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 6230 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 6231 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 6232 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 6233 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 6234 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 6235 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 6236 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 6237 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6238 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6239 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6240 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6241 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 6242 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 6243 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 6244 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6245 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 6246 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 6247 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 6248 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 6249 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 6250 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 6251 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 6252 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 6253 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 6254 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 6255 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6256 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6257 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6258 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6259 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6260 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 6261 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 6262 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 6263 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 6264 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 6265 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 6266 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 6267 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 6268 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 6269 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 6270 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 6271 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 6272 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 6273 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 6274 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 6275 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 6276 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 6277 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 6278 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 6279 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 6280 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 6281 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 6282 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 6283 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 6284 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 6285 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 6286 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 6287 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 6288 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 6289 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 6290 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 6291 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 6292 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 6293 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 6294 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 6295 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 6296 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 6297 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 6298 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 6299 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 6300 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 6301 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 6302 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 6303 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 6304 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 6305 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 6306 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 6307 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 6308 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 6309 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 6310 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 6311 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 6312 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 6313 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 6314 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 6315 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 6316 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 6317 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 6318 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 6319 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 6320 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 6321 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 6322 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 6323 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 6324 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 6325 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 6326 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 6327 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 6328 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 6329 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 6330 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6331 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 6332 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 6333 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 6334 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6335 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6336 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6337 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6338 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6339 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6340 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6341 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6342 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6343 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6344 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6345 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6346 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 6347 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6348 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 6349 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 6350 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 6351 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 6352 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 6353 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 6354 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 6355 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 6356 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 6357 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 6358 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 6359 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 6360 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 6361 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 6362 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 6363 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 6364 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 6365 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 6366 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6367 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6368 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6369 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6370 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6371 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6372 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 6373 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 6374 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6375 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6376 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6377 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6378 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6379 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 6380 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 6381 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 6382 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 6383 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 6384 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 6385 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 6386 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 6387 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 6388 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 6389 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6390 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 6391 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 6392 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 6393 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 6394 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 6395 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 6396 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 6397 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 6398 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 6399 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 6400 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 6401 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 6402 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 6403 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 6404 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 6405 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 6406 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 6407 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 6408 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 6409 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 6410 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 6411 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 6412 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6413 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 6414 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6415 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6416 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6417 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6418 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6419 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6420 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 6421 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6422 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 6423 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 6424 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 6425 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6426 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6427 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6428 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6429 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6430 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6431 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6432 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6433 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6434 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6435 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6436 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6437 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6438 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6439 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6440 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6441 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6442 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6443 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6444 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 6445 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 6446 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 6447 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 6448 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 6449 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 6450 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 6451 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 6452 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 6453 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 6454 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 6455 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6456 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6457 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6458 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6459 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6460 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6461 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6462 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6463 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 6464 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 6465 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 6466 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 6467 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 6468 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 6469 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 6470 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 6471 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 6472 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 6473 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 6474 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 6475 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 6476 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 6477 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6478 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6479 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6480 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6481 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6482 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6483 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6484 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6485 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 6486 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6487 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 6488 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 6489 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 6490 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 6491 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 6492 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 6493 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 6494 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 6495 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6496 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6497 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6498 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6499 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6500 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6501 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6502 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6503 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6504 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6505 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 6506 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6507 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6508 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6509 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6510 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6511 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 6512 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 6513 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 6514 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 6515 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 6516 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 6517 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 6518 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 6519 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 6520 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 6521 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 6522 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 6523 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 6524 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 6525 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 6526 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 6527 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 6528 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 6529 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6530 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6531 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6532 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6533 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6534 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6535 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6536 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6537 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6538 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 6539 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 6540 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 6541 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 6542 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 6543 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6544 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6545 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6546 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6547 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6548 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6549 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6550 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6551 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6552 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6553 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6554 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6555 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6556 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6557 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6558 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6559 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6560 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6561 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6562 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6563 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6564 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 6565 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6566 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6567 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6568 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6569 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6570 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6571 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6572 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6573 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6574 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 6575 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 6576 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 6577 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 6578 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 6579 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 6580 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 6581 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 6582 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 6583 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 6584 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 6585 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6586 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6587 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6588 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6589 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6590 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6591 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6592 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6593 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6594 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6595 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6596 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 6597 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 6598 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 6599 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 6600 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 6601 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 6602 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 6603 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 6604 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 6605 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 6606 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 6607 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 6608 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 6609 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 6610 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 6611 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6612 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6613 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6614 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6615 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6616 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6617 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6618 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6619 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6620 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 6621 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6622 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6623 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6624 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6625 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6626 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6627 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6628 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6629 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6630 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6631 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 6632 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 6633 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 6634 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6635 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6636 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6637 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6638 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6639 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6640 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6641 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6642 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 6643 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 6644 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 6645 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6646 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 6647 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6648 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 6649 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6650 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6651 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6652 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6653 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6654 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6655 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6656 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6657 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6658 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6659 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6660 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6661 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6662 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6663 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6664 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6665 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6666 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6667 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 6668 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 6669 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 6670 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 6671 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 6672 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6673 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 6674 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6675 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6676 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6677 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6678 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6679 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6680 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6681 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6682 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 6683 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 6684 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 6685 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 6686 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 6687 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 6688 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 6689 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 6690 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 6691 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 6692 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 6693 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 6694 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 6695 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6696 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6697 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6698 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6699 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 6700 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 6701 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6702 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6703 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 6704 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 6705 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6706 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6707 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6708 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6709 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 6710 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 6711 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6712 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6713 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6714 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 6715 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 6716 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 6717 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 6718 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 6719 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 6720 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 6721 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 6722 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6723 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6724 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6725 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6726 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6727 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6728 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 6729 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 6730 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6731 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 6732 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6733 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6734 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6735 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6736 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6737 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6738 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 6739 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6740 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6741 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6742 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6743 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6744 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6745 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6746 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6747 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6748 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 6749 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6750 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6751 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6752 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6753 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6754 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6755 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6756 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6757 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 6758 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6759 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6760 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6761 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6762 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6763 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6764 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6765 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 6766 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6767 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6768 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6769 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6770 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6771 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6772 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 6773 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6774 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6775 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6776 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6777 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 6778 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 6779 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6780 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6781 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6782 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6783 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6784 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 6785 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6786 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6787 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6788 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6789 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6790 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6791 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6792 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 6793 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 6794 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6795 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6796 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6797 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6798 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6799 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6800 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6801 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 6802 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 6803 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6804 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 6805 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6806 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6807 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6808 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6809 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6810 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6811 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 6812 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6813 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6814 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6815 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6816 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6817 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6818 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6819 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6820 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6821 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 6822 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6823 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6824 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6825 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6826 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6827 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6828 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6829 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6830 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6831 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6832 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 6833 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6834 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6835 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6836 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6837 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6838 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6839 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6840 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6841 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 6842 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6843 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6844 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6845 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6846 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6847 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6848 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6849 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 6850 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6851 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6852 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6853 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6854 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6855 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 6856 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 6857 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6858 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6859 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6860 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6861 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6862 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6863 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 6864 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6865 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6866 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6867 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6868 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6869 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6870 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6871 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6872 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6873 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 6874 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6875 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6876 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6877 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6878 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6879 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6880 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6881 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6882 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6883 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6884 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6885 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6886 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6887 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6888 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6889 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6890 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6891 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6892 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6893 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6894 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 6895 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6896 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6897 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6898 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6899 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6900 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6901 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6902 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6903 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6904 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6905 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6906 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6907 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6908 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6909 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6910 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6911 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6912 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6913 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6914 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6915 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6916 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6917 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6918 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6919 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6920 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 6921 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6922 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6923 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6924 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6925 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6926 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6927 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6928 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6929 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6930 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6931 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6932 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6933 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6934 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6935 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6936 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 6937 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6938 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6939 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6940 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6941 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6942 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6943 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6944 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6945 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6946 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6947 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6948 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6949 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 6950 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6951 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6952 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6953 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6954 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6955 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6956 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6957 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6958 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 6959 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6960 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 6961 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6962 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6963 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 6964 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6965 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6966 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6967 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 6968 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6969 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6970 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6971 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6972 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6973 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6974 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6975 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6976 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6977 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6978 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6979 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 6980 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6981 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6982 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6983 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6984 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6985 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6986 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6987 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6988 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6989 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6990 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6991 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6992 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 6993 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6994 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6995 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6996 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 6997 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 6998 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 6999 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 7000 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 7001 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7002 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7003 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7004 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7005 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7006 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7007 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7008 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7009 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7010 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7011 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7012 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 7013 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7014 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7015 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7016 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7017 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7018 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7019 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7020 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7021 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7022 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7023 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7024 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7025 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7026 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7027 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7028 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7029 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7030 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7031 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7032 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7033 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7034 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7035 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7036 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7037 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 7038 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7039 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7040 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7041 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7042 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7043 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 7044 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 7045 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 7046 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7047 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7048 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7049 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7050 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7051 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7052 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7053 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7054 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7055 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7056 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7057 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7058 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7059 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7060 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7061 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7062 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7063 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7064 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7065 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7066 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7067 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7068 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7069 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7070 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7071 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7072 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7073 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 7074 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 7075 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7076 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7077 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7078 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7079 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7080 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7081 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7082 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7083 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7084 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 7085 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 7086 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7087 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7088 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7089 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 7090 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7091 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7092 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7093 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7094 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7095 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7096 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7097 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7098 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7099 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7100 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7101 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7102 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7103 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7104 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7105 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7106 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7107 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7108 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7109 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7110 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7111 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7112 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7113 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7114 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7115 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7116 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7117 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7118 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7119 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7120 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7121 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 7122 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7123 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7124 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7125 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7126 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 7127 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7128 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7129 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 7130 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7131 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7132 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7133 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7134 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7135 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7136 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7137 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 7138 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7139 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 7140 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7141 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7142 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7143 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7144 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7145 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7146 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7147 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 7148 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 7149 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 7150 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 7151 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 7152 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 7153 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 7154 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 7155 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 7156 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7157 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7158 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7159 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 7160 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7161 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 7162 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7163 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7164 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7165 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7166 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7167 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7168 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7169 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 7170 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 7171 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7172 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7173 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7174 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7175 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7176 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7177 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7178 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7179 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7180 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7181 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7182 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7183 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7184 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 7185 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7186 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7187 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7188 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7189 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7190 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7191 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7192 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7193 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7194 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7195 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7196 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7197 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7198 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7199 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7200 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7201 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7202 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 7203 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 7204 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 7205 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 7206 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 7207 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 7208 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 7209 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 7210 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 7211 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 7212 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7213 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7214 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7215 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7216 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7217 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7218 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7219 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7220 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7221 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7222 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7223 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7224 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7225 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7226 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7227 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7228 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7229 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7230 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7231 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 7232 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7233 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7234 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7235 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7236 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7237 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7238 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7239 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7240 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7241 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7242 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7243 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7244 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7245 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7246 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7247 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7248 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7249 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 7250 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 7251 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 7252 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 7253 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 7254 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7255 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7256 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7257 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7258 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7259 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7260 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7261 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7262 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 7263 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 7264 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 7265 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 7266 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 7267 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7268 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7269 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7270 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7271 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7272 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7273 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7274 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7275 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7276 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7277 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7278 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7279 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7280 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7281 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7282 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7283 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 7284 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7285 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7286 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7287 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7288 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7289 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7290 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7291 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 7292 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7293 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7294 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7295 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7296 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7297 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7298 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7299 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7300 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7301 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7302 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7303 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7304 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 7305 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 7306 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 7307 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 7308 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7309 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7310 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7311 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7312 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7313 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 7314 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 7315 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 7316 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 7317 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 7318 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7319 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7320 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7321 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7322 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7323 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7324 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7325 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7326 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7327 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7328 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 7329 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 7330 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 7331 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 7332 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 7333 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 7334 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 7335 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7336 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7337 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7338 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7339 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7340 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7341 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7342 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7343 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7344 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7345 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7346 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7347 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 7348 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 7349 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 7350 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 7351 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 7352 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 7353 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 7354 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7355 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7356 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7357 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7358 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7359 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7360 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7361 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7362 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7363 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7364 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 7365 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 7366 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7367 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7368 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7369 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7370 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7371 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7372 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7373 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7374 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7375 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7376 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7377 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7378 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7379 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 7380 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 7381 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7382 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7383 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7384 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7385 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7386 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7387 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7388 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 7389 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 7390 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 7391 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 7392 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 7393 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 7394 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7395 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7396 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7397 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7398 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7399 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7400 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7401 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7402 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7403 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7404 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7405 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7406 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7407 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7408 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7409 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7410 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7411 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7412 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7413 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7414 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7415 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7416 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7417 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7418 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7419 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7420 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7421 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7422 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7423 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7424 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7425 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7426 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7427 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7428 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7429 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7430 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7431 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7432 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7433 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7434 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7435 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7436 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7437 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7438 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7439 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 7440 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 7441 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 7442 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 7443 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 7444 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 7445 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 7446 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 7447 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 7448 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7449 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7450 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7451 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7452 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7453 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 7454 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7455 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7456 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7457 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7458 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7459 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7460 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7461 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7462 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7463 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7464 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7465 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7466 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 7467 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7468 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7469 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7470 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7471 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7472 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 7473 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 7474 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 7475 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7476 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7477 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7478 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7479 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7480 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7481 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7482 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7483 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7484 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7485 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7486 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7487 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 7488 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 7489 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 7490 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 7491 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 7492 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 7493 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 7494 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7495 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 7496 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 7497 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 7498 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 7499 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 7500 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 7501 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 7502 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 7503 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 7504 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 7505 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 7506 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 7507 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 7508 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 7509 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 7510 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7511 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7512 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7513 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7514 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7515 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7516 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7517 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7518 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7519 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7520 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7521 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7522 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 7523 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 7524 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 7525 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 7526 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 7527 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 7528 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 7529 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 7530 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7531 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7532 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7533 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 7534 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7535 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7536 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7537 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7538 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7539 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7540 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7541 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7542 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7543 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7544 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7545 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7546 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7547 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7548 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7549 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7550 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7551 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7552 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 7553 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7554 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7555 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7556 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7557 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7558 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 7559 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 7560 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 7561 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 7562 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 7563 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 7564 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 7565 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 7566 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 7567 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 7568 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7569 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7570 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7571 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7572 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7573 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7574 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7575 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7576 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7577 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7578 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7579 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 7580 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7581 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 7582 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 7583 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7584 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7585 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7586 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7587 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 7588 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 7589 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 7590 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 7591 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 7592 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 7593 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 7594 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7595 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7596 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7597 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7598 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7599 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7600 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7601 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7602 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7603 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7604 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7605 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7606 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7607 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7608 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7609 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7610 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7611 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7612 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7613 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7614 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7615 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7616 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7617 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 7618 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7619 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7620 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7621 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7622 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7623 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7624 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7625 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7626 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7627 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7628 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7629 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7630 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7631 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 7632 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 7633 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 7634 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7635 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7636 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7637 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7638 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 7639 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 7640 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 7641 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 7642 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 7643 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 7644 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 7645 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7646 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 7647 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 7648 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7649 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7650 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7651 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7652 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 7653 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7654 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7655 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7656 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7657 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7658 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7659 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7660 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7661 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7662 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7663 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7664 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7665 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7666 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7667 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7668 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7669 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7670 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7671 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7672 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7673 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7674 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7675 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7676 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7677 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7678 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7679 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 7680 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 7681 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 7682 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7683 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7684 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7685 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7686 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7687 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7688 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7689 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7690 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7691 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7692 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7693 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7694 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7695 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7696 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 7697 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7698 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 7699 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 7700 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 7701 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 7702 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 7703 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 7704 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7705 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7706 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7707 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7708 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7709 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7710 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7711 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7712 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7713 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7714 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7715 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7716 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 7717 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 7718 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 7719 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7720 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7721 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7722 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7723 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 7724 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7725 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7726 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7727 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7728 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7729 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7730 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7731 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7732 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7733 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7734 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 7735 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 7736 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 7737 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 7738 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7739 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7740 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7741 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7742 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7743 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7744 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7745 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7746 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7747 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7748 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7749 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7750 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7751 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 7752 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 7753 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 7754 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 7755 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 7756 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 7757 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 7758 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 7759 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7760 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 7761 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 7762 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 7763 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 7764 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 7765 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7766 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7767 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7768 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7769 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7770 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7771 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7772 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7773 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7774 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7775 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7776 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7777 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7778 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7779 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7780 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7781 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7782 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7783 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7784 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 7785 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7786 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7787 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7788 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7789 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7790 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7791 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7792 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7793 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7794 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7795 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7796 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7797 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7798 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7799 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7800 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7801 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7802 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7803 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7804 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7805 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7806 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7807 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7808 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7809 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 7810 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 7811 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 7812 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 7813 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7814 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7815 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7816 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7817 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7818 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7819 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7820 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7821 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7822 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7823 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7824 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7825 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 7826 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 7827 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7828 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7829 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7830 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7831 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7832 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7833 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7834 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7835 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7836 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7837 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7838 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 7839 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 7840 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 7841 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7842 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7843 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7844 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7845 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7846 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 7847 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7848 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7849 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7850 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7851 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7852 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7853 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7854 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7855 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7856 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7857 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7858 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7859 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 7860 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7861 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7862 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7863 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7864 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7865 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 7866 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7867 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7868 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7869 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7870 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7871 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7872 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7873 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7874 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7875 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7876 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7877 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 7878 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 7879 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 7880 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 7881 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 7882 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7883 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7884 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7885 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7886 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7887 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7888 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7889 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7890 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7891 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7892 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 7893 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 7894 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 7895 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 7896 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 7897 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 7898 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 7899 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 7900 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 7901 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 7902 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 7903 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 7904 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 7905 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 7906 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 7907 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 7908 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 7909 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 7910 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 7911 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 7912 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 7913 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 7914 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 7915 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 7916 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 7917 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 7918 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 7919 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 7920 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 7921 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 7922 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 7923 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 7924 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 7925 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 7926 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 7927 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 7928 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 7929 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 7930 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 7931 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7932 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7933 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7934 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7935 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7936 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 7937 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 7938 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 7939 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 7940 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 7941 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 7942 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 7943 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 7944 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 7945 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 7946 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 7947 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 7948 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 7949 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 7950 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 7951 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 7952 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 7953 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 7954 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 7955 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 7956 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 7957 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 7958 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 7959 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 7960 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 7961 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 7962 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 7963 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 7964 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 7965 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 7966 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 7967 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 7968 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 7969 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 7970 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 7971 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 7972 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 7973 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 7974 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 7975 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 7976 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 7977 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 7978 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 7979 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 7980 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 7981 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 7982 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 7983 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 7984 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 7985 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 7986 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 7987 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 7988 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 7989 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 7990 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 7991 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 7992 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 7993 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 7994 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 7995 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 7996 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 7997 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 7998 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 7999 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 8000 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 8001 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 8002 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 8003 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 8004 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 8005 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 8006 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 8007 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 8008 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 8009 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 8010 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 8011 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 8012 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 8013 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 8014 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 8015 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 8016 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 8017 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 8018 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 8019 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 8020 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 8021 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 8022 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 8023 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 8024 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 8025 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 8026 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 8027 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 8028 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 8029 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8030 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8031 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8032 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8033 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8034 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8035 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8036 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 8037 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 8038 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 8039 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 8040 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 8041 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 8042 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 8043 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 8044 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 8045 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 8046 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 8047 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8048 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8049 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 8050 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 8051 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8052 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8053 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 8054 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 8055 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8056 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8057 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 8058 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 8059 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 8060 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 8061 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 8062 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 8063 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8064 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8065 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 8066 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 8067 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 8068 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 8069 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 8070 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 8071 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 8072 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 8073 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 8074 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 8075 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 8076 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 8077 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8078 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 8079 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 8080 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 8081 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 8082 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 8083 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8084 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8085 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8086 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8087 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8088 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8089 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8090 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8091 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8092 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8093 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8094 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 8095 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 8096 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 8097 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 8098 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 8099 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8100 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8101 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8102 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8103 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8104 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8105 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8106 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8107 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 8108 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8109 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 8110 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 8111 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 8112 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 8113 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 8114 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 8115 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 8116 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 8117 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8118 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 8119 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 8120 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 8121 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 8122 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 8123 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 8124 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 8125 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 8126 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8127 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8128 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8129 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8130 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8131 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 8132 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 8133 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 8134 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 8135 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 8136 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 8137 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 8138 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 8139 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8140 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 8141 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8142 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 8143 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 8144 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 8145 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 8146 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 8147 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 8148 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8149 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8150 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8151 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8152 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8153 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8154 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8155 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8156 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 8157 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 8158 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8159 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8160 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8161 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8162 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8163 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8164 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 8165 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 8166 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 8167 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 8168 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 8169 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 8170 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 8171 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 8172 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 8173 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 8174 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 8175 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 8176 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8177 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8178 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8179 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8180 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8181 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8182 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8183 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8184 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 8185 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 8186 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 8187 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 8188 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 8189 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8190 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8191 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8192 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8193 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8194 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8195 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8196 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8197 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 8198 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8199 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8200 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8201 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8202 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8203 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8204 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 8205 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 8206 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 8207 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 8208 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 8209 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 8210 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 8211 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 8212 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 8213 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 8214 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 8215 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 8216 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 8217 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 8218 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 8219 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 8220 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 8221 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 8222 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8223 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8224 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8225 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8226 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 8227 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 8228 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 8229 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8230 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 8231 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 8232 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 8233 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 8234 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 8235 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 8236 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 8237 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 8238 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 8239 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 8240 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 8241 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 8242 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 8243 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 8244 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 8245 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 8246 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 8247 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 8248 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 8249 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 8250 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 8251 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 8252 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 8253 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 8254 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 8255 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 8256 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 8257 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 8258 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 8259 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 8260 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 8261 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 8262 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 8263 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 8264 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 8265 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 8266 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 8267 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 8268 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 8269 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 8270 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 8271 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 8272 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 8273 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 8274 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 8275 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 8276 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 8277 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 8278 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 8279 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 8280 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 8281 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 8282 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 8283 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 8284 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 8285 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 8286 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 8287 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 8288 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 8289 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 8290 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 8291 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 8292 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 8293 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 8294 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 8295 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 8296 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 8297 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 8298 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 8299 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 8300 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 8301 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 8302 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 8303 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 8304 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 8305 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 8306 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 8307 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 8308 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 8309 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 8310 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 8311 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 8312 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 8313 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 8314 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8315 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 8316 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 8317 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 8318 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8319 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8320 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8321 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8322 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8323 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8324 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8325 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8326 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8327 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8328 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8329 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8330 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 8331 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8332 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 8333 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 8334 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 8335 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 8336 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 8337 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 8338 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 8339 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 8340 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 8341 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 8342 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 8343 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 8344 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 8345 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 8346 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 8347 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 8348 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 8349 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8350 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8351 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8352 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8353 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8354 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8355 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 8356 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 8357 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8358 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8359 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8360 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8361 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8362 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 8363 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 8364 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 8365 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 8366 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 8367 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 8368 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 8369 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 8370 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 8371 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 8372 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8373 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 8374 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 8375 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 8376 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 8377 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 8378 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 8379 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 8380 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 8381 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 8382 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 8383 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 8384 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 8385 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 8386 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 8387 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 8388 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 8389 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 8390 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 8391 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 8392 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 8393 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 8394 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 8395 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8396 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 8397 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8398 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8399 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8400 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8401 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8402 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8403 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 8404 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8405 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 8406 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 8407 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 8408 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8409 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8410 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8411 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8412 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8413 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8414 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8415 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8416 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8417 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8418 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8419 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8420 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8421 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8422 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8423 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8424 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8425 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8426 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8427 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 8428 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 8429 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 8430 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 8431 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 8432 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 8433 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 8434 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 8435 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 8436 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 8437 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8438 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8439 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8440 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8441 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8442 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8443 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8444 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8445 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 8446 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 8447 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 8448 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 8449 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 8450 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 8451 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 8452 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 8453 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 8454 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 8455 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 8456 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 8457 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 8458 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 8459 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8460 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8461 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8462 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8463 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8464 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8465 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8466 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8467 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 8468 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8469 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 8470 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 8471 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 8472 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 8473 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 8474 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8475 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8476 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8477 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8478 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8479 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8480 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8481 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8482 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8483 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8484 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 8485 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8486 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8487 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8488 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8489 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8490 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 8491 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 8492 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 8493 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 8494 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 8495 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 8496 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 8497 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 8498 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 8499 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 8500 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 8501 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 8502 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 8503 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 8504 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 8505 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 8506 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 8507 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8508 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8509 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8510 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8511 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8512 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8513 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8514 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8515 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8516 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 8517 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 8518 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 8519 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 8520 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 8521 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8522 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8523 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8524 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8525 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8526 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8527 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8528 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8529 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8530 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8531 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8532 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8533 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8534 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8535 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8536 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8537 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8538 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8539 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8540 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8541 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 8542 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8543 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8544 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8545 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8546 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8547 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8548 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8549 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8550 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8551 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 8552 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 8553 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 8554 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 8555 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 8556 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 8557 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 8558 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 8559 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 8560 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 8561 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 8562 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8563 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8564 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8565 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8566 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8567 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8568 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8569 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8570 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8571 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8572 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8573 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 8574 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 8575 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 8576 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 8577 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 8578 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 8579 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 8580 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 8581 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 8582 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 8583 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 8584 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 8585 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 8586 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 8587 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 8588 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8589 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8590 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8591 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8592 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8593 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8594 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8595 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8596 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8597 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 8598 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8599 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8600 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8601 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8602 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8603 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8604 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8605 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8606 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8607 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8608 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 8609 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 8610 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 8611 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8612 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8613 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8614 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8615 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8616 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8617 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8618 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8619 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 8620 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 8621 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 8622 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8623 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 8624 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8625 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 8626 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8627 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8628 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8629 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8630 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8631 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8632 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8633 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8634 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8635 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8636 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8637 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8638 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8639 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8640 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8641 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8642 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8643 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8644 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 8645 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 8646 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 8647 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 8648 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 8649 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8650 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 8651 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8652 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8653 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8654 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8655 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8656 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8657 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8658 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8659 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 8660 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 8661 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 8662 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 8663 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 8664 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 8665 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 8666 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 8667 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 8668 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 8669 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 8670 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 8671 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 8672 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8673 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8674 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8675 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8676 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 8677 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 8678 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8679 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8680 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 8681 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 8682 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8683 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8684 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8685 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8686 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 8687 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 8688 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8689 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8690 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8691 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 8692 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 8693 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 8694 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 8695 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 8696 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 8697 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 8698 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 8699 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8700 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8701 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8702 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8703 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8704 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8705 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 8706 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 8707 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8708 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 8709 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8710 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8711 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8712 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8713 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8714 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8715 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 8716 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8717 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8718 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8719 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8720 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8721 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8722 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8723 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8724 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8725 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 8726 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8727 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8728 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8729 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8730 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8731 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8732 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8733 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8734 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 8735 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8736 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8737 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8738 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8739 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8740 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8741 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8742 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 8743 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8744 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8745 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8746 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8747 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8748 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8749 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 8750 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8751 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8752 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8753 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8754 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 8755 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 8756 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8757 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8758 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8759 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8760 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8761 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 8762 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8763 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8764 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8765 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8766 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8767 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8768 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8769 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 8770 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 8771 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8772 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8773 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8774 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8775 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8776 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8777 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8778 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 8779 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 8780 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8781 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 8782 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8783 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8784 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8785 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8786 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8787 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8788 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 8789 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8790 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8791 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8792 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8793 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8794 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8795 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8796 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8797 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8798 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 8799 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8800 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8801 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8802 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8803 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8804 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8805 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8806 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8807 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8808 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8809 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 8810 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8811 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8812 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8813 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8814 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8815 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8816 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8817 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8818 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 8819 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8820 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8821 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8822 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8823 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8824 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8825 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8826 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 8827 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8828 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8829 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8830 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8831 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8832 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 8833 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 8834 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8835 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8836 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8837 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8838 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8839 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8840 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 8841 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8842 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8843 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8844 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8845 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8846 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8847 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8848 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8849 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8850 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 8851 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8852 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8853 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8854 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8855 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8856 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8857 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8858 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8859 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8860 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8861 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8862 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8863 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8864 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8865 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8866 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8867 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8868 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8869 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8870 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8871 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 8872 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8873 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8874 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8875 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8876 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8877 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8878 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8879 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8880 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8881 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8882 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8883 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8884 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8885 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8886 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8887 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8888 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8889 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8890 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8891 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8892 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8893 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8894 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8895 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8896 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8897 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 8898 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8899 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8900 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8901 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8902 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8903 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8904 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8905 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8906 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8907 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8908 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8909 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8910 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8911 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8912 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8913 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 8914 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8915 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8916 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8917 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8918 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8919 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8920 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8921 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8922 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8923 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8924 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8925 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8926 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 8927 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8928 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8929 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8930 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8931 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8932 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8933 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8934 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8935 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 8936 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8937 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 8938 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8939 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8940 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 8941 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8942 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8943 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8944 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 8945 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8946 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8947 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8948 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8949 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8950 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8951 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8952 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8953 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8954 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8955 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 8956 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8957 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8958 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8959 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8960 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8961 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8962 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8963 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8964 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8965 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8966 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8967 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8968 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8969 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8970 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8971 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8972 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 8973 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8974 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 8975 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 8976 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 8977 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8978 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8979 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8980 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8981 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8982 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 8983 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8984 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8985 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8986 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8987 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8988 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 8989 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8990 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8991 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8992 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8993 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8994 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8995 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8996 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8997 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8998 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 8999 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9000 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9001 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9002 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9003 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9004 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9005 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9006 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9007 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9008 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9009 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9010 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9011 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9012 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9013 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 9014 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9015 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9016 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9017 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9018 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9019 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 9020 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 9021 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 9022 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9023 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9024 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9025 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9026 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9027 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9028 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9029 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9030 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9031 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9032 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9033 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9034 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9035 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9036 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9037 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9038 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9039 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9040 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9041 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9042 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9043 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9044 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9045 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9046 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9047 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9048 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9049 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 9050 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 9051 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9052 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9053 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9054 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9055 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9056 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9057 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9058 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9059 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9060 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 9061 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 9062 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9063 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9064 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9065 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 9066 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9067 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9068 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9069 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9070 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9071 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9072 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9073 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9074 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9075 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9076 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9077 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9078 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9079 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9080 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9081 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9082 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9083 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9084 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9085 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9086 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9087 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9088 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9089 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9090 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9091 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9092 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9093 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9094 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9095 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9096 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9097 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 9098 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9099 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9100 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9101 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9102 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 9103 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9104 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9105 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 9106 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9107 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9108 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9109 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9110 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9111 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9112 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9113 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 9114 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9115 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 9116 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9117 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9118 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9119 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9120 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9121 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9122 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9123 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 9124 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 9125 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 9126 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 9127 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 9128 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 9129 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 9130 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 9131 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 9132 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9133 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9134 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9135 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 9136 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9137 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 9138 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9139 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9140 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9141 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9142 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9143 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9144 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9145 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 9146 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 9147 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9148 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9149 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 9150 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9151 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9152 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9153 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9154 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9155 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9156 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9157 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 9158 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 9159 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 9160 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 9161 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 9162 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 9163 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 9164 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 9165 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 9166 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 9167 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9168 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9169 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 9170 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9171 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9172 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9173 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9174 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9175 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9176 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9177 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 9178 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 9179 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 9180 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 9181 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 9182 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9183 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9184 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9185 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9186 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9187 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9188 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9189 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9190 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 9191 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 9192 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 9193 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 9194 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 9195 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9196 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 9197 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 9198 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 9199 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9200 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9201 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9202 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9203 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9204 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9205 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9206 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 9207 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9208 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9209 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 9210 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 9211 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 9212 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 9213 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 9214 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 9215 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 9216 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 9217 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9218 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9219 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9220 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9221 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9222 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9223 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9224 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9225 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9226 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9227 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 9228 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 9229 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 9230 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 9231 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 9232 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 9233 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 9234 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9235 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 9236 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 9237 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 9238 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 9239 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 9240 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 9241 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 9242 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9243 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9244 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9245 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9246 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9247 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9248 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9249 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9250 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9251 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9252 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 9253 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 9254 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9255 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9256 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9257 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 9258 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 9259 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9260 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9261 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9262 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9263 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9264 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9265 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9266 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 9267 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 9268 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 9269 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 9270 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 9271 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 9272 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9273 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9274 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9275 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9276 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9277 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9278 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9279 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9280 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9281 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9282 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9283 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9284 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9285 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9286 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9287 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9288 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9289 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9290 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9291 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9292 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9293 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 9294 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 9295 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 9296 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 9297 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 9298 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 9299 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 9300 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9301 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 9302 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9303 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9304 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9305 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9306 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9307 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 9308 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 9309 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9310 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9311 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 9312 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 9313 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 9314 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 9315 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 9316 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 9317 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9318 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 9319 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 9320 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 9321 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 9322 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 9323 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 9324 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 9325 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 9326 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 9327 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 9328 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 9329 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 9330 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 9331 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9332 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 9333 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 9334 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 9335 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 9336 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 9337 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 9338 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 9339 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9340 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9341 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9342 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9343 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9344 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9345 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9346 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9347 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 9348 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9349 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9350 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9351 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9352 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 9353 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 9354 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 9355 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 9356 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 9357 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 9358 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 9359 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9360 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9361 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9362 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9363 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9364 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9365 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9366 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9367 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9368 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9369 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9370 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 9371 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9372 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 9373 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 9374 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9375 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9376 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9377 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9378 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 9379 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 9380 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 9381 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 9382 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 9383 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 9384 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 9385 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9386 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9387 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9388 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9389 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9390 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9391 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9392 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9393 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9394 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9395 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9396 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9397 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 9398 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9399 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9400 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9401 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 9402 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 9403 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 9404 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9405 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9406 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9407 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 9408 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 9409 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 9410 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 9411 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 9412 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 9413 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 9414 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9415 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 9416 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 9417 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9418 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9419 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9420 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9421 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 9422 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9423 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9424 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9425 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9426 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9427 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9428 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9429 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9430 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9431 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9432 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9433 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 9434 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 9435 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 9436 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 9437 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 9438 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9439 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9440 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 9441 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 9442 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9443 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 9444 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 9445 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 9446 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 9447 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 9448 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 9449 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9450 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 9451 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 9452 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 9453 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9454 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9455 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9456 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9457 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 9458 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9459 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9460 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9461 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9462 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9463 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9464 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9465 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9466 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9467 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9468 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 9469 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 9470 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 9471 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 9472 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9473 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9474 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9475 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 9476 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 9477 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 9478 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 9479 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 9480 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 9481 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 9482 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 9483 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9484 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 9485 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 9486 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 9487 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 9488 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 9489 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9490 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9491 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9492 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9493 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9494 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9495 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9496 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9497 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 9498 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9499 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9500 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9501 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9502 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9503 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9504 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9505 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9506 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9507 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9508 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9509 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9510 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9511 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9512 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9513 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9514 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9515 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9516 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9517 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9518 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9519 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9520 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9521 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9522 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 9523 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 9524 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 9525 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 9526 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9527 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9528 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 9529 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 9530 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9531 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9532 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9533 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9534 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9535 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9536 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9537 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9538 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9539 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9540 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9541 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 9542 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 9543 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 9544 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9545 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9546 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9547 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9548 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9549 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 9550 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9551 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 9552 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9553 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9554 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9555 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9556 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9557 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 9558 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9559 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 9560 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 9561 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 9562 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 9563 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 9564 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9565 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9566 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9567 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9568 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9569 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9570 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9571 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9572 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9573 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9574 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 9575 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 9576 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 9577 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 9578 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 9579 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 9580 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 9581 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 9582 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 9583 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 9584 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 9585 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 9586 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 9587 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 9588 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 9589 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 9590 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 9591 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 9592 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 9593 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 9594 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 9595 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 9596 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 9597 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 9598 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 9599 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 9600 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 9601 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 9602 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 9603 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 9604 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 9605 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 9606 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 9607 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 9608 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 9609 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 9610 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 9611 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 9612 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 9613 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9614 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9615 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9616 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9617 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9618 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 9619 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 9620 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 9621 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 9622 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 9623 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 9624 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 9625 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 9626 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 9627 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 9628 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 9629 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 9630 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 9631 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 9632 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 9633 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 9634 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 9635 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 9636 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 9637 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 9638 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 9639 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 9640 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 9641 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 9642 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 9643 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 9644 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 9645 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 9646 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 9647 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 9648 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 9649 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 9650 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 9651 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 9652 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 9653 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 9654 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 9655 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 9656 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 9657 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9658 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9659 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 9660 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 9661 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 9662 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 9663 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 9664 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 9665 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 9666 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 9667 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 9668 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 9669 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 9670 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 9671 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 9672 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 9673 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 9674 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 9675 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 9676 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 9677 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 9678 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 9679 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 9680 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 9681 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 9682 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 9683 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 9684 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 9685 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 9686 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 9687 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 9688 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 9689 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 9690 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 9691 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 9692 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 9693 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 9694 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 9695 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 9696 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 9697 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 9698 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 9699 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 9700 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 9701 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 9702 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 9703 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 9704 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 9705 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 64, + "source_object_key": "srd-2024_nick-mastery" + }, + "model": "api_v2.crossreference", + "pk": 9706 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 64, + "source_object_key": "srd-2024_topple-mastery" + }, + "model": "api_v2.crossreference", + "pk": 9707 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_acid" + }, + "model": "api_v2.crossreference", + "pk": 9708 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-fire" + }, + "model": "api_v2.crossreference", + "pk": 9709 +}, +{ + "fields": { + "anchor": "Alchemist's Fire", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_alchemists-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9710 +}, +{ + "fields": { + "anchor": "Component Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_component-pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9711 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9712 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9713 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9714 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9715 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_alchemists-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9716 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-proof-against-detection-and-location" + }, + "model": "api_v2.crossreference", + "pk": 9717 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_amulet-of-the-planes" + }, + "model": "api_v2.crossreference", + "pk": 9718 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_animated-shield" + }, + "model": "api_v2.crossreference", + "pk": 9719 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_apparatus-of-the-crab" + }, + "model": "api_v2.crossreference", + "pk": 9720 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-invulnerability" + }, + "model": "api_v2.crossreference", + "pk": 9721 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 9722 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 9723 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 9724 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 9725 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 9726 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 9727 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9728 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9729 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 9730 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 9731 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9732 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9733 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 9734 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 9735 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9736 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9737 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 9738 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 9739 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 9740 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 9741 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 9742 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 9743 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9744 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_armor-of-vulnerability-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9745 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_arrow-catching-shield" + }, + "model": "api_v2.crossreference", + "pk": 9746 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_arrows-20" + }, + "model": "api_v2.crossreference", + "pk": 9747 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-beans" + }, + "model": "api_v2.crossreference", + "pk": 9748 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-devouring" + }, + "model": "api_v2.crossreference", + "pk": 9749 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 9750 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-holding" + }, + "model": "api_v2.crossreference", + "pk": 9751 +}, +{ + "fields": { + "anchor": "Mastiff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mastiff", + "source_content_type": 50, + "source_object_key": "srd-2024_bag-of-tricks" + }, + "model": "api_v2.crossreference", + "pk": 9752 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bolts-20" + }, + "model": "api_v2.crossreference", + "pk": 9753 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_boots-of-levitation" + }, + "model": "api_v2.crossreference", + "pk": 9754 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 9755 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-archery" + }, + "model": "api_v2.crossreference", + "pk": 9756 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_bracers-of-defense" + }, + "model": "api_v2.crossreference", + "pk": 9757 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_brewers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9758 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 9759 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_brooch-of-shielding" + }, + "model": "api_v2.crossreference", + "pk": 9760 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_broom-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 9761 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-firearm-10" + }, + "model": "api_v2.crossreference", + "pk": 9762 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_bullets-sling-20" + }, + "model": "api_v2.crossreference", + "pk": 9763 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9764 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9765 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9766 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9767 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9768 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9769 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9770 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9771 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_burglars-pack" + }, + "model": "api_v2.crossreference", + "pk": 9772 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9773 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_calligraphers-supplies" + }, + "model": "api_v2.crossreference", + "pk": 9774 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 9775 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 9776 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 9777 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_candle-of-invocation" + }, + "model": "api_v2.crossreference", + "pk": 9778 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 50, + "source_object_key": "srd-2024_cape-of-the-mountebank" + }, + "model": "api_v2.crossreference", + "pk": 9779 +}, +{ + "fields": { + "anchor": "Barrel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_barrel", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9780 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9781 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9782 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9783 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9784 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9785 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9786 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_carpenters-tools" + }, + "model": "api_v2.crossreference", + "pk": 9787 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_carpet-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 9788 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_cartographers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9789 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_case-map-or-scroll" + }, + "model": "api_v2.crossreference", + "pk": 9790 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_chime-of-opening" + }, + "model": "api_v2.crossreference", + "pk": 9791 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 50, + "source_object_key": "srd-2024_circlet-of-blasting" + }, + "model": "api_v2.crossreference", + "pk": 9792 +}, +{ + "fields": { + "anchor": "Spider Climb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spider-climb", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 9793 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-arachnida" + }, + "model": "api_v2.crossreference", + "pk": 9794 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 9795 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 9796 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_cloak-of-the-bat" + }, + "model": "api_v2.crossreference", + "pk": 9797 +}, +{ + "fields": { + "anchor": "Climber's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_climbers-kit", + "source_content_type": 50, + "source_object_key": "srd-2024_cobblers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9798 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_component-pouch" + }, + "model": "api_v2.crossreference", + "pk": 9799 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_cooks-utensils" + }, + "model": "api_v2.crossreference", + "pk": 9800 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball" + }, + "model": "api_v2.crossreference", + "pk": 9801 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 9802 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 9803 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 9804 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 9805 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_crystal-ball-of-true-seeing" + }, + "model": "api_v2.crossreference", + "pk": 9806 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9807 +}, +{ + "fields": { + "anchor": "Private Sanctum", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_private-sanctum", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9808 +}, +{ + "fields": { + "anchor": "Resilient Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resilient-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9809 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9810 +}, +{ + "fields": { + "anchor": "Tiny Hut", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tiny-hut", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9811 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_cube-of-force" + }, + "model": "api_v2.crossreference", + "pk": 9812 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 9813 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_cubic-gate" + }, + "model": "api_v2.crossreference", + "pk": 9814 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 9815 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_deck-of-illusions" + }, + "model": "api_v2.crossreference", + "pk": 9816 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-breastplate" + }, + "model": "api_v2.crossreference", + "pk": 9817 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-mail" + }, + "model": "api_v2.crossreference", + "pk": 9818 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-chain-shirt" + }, + "model": "api_v2.crossreference", + "pk": 9819 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-half-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9820 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-hide-armor" + }, + "model": "api_v2.crossreference", + "pk": 9821 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9822 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-padded-armor" + }, + "model": "api_v2.crossreference", + "pk": 9823 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-plate-armor" + }, + "model": "api_v2.crossreference", + "pk": 9824 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-ring-mail" + }, + "model": "api_v2.crossreference", + "pk": 9825 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 9826 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-splint-armor" + }, + "model": "api_v2.crossreference", + "pk": 9827 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 50, + "source_object_key": "srd-2024_demon-studded-leather-armor" + }, + "model": "api_v2.crossreference", + "pk": 9828 +}, +{ + "fields": { + "anchor": "Chest", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chest", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9829 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9830 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9831 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9832 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9833 +}, +{ + "fields": { + "anchor": "Paper", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_paper", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9834 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9835 +}, +{ + "fields": { + "anchor": "Perfume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_perfume", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9836 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_diplomats-pack" + }, + "model": "api_v2.crossreference", + "pk": 9837 +}, +{ + "fields": { + "anchor": "Costume", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_costume", + "source_content_type": 50, + "source_object_key": "srd-2024_disguise-kit" + }, + "model": "api_v2.crossreference", + "pk": 9838 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9839 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9840 +}, +{ + "fields": { + "anchor": "Death Ward", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_death-ward", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9841 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9842 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9843 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9844 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-orb" + }, + "model": "api_v2.crossreference", + "pk": 9845 +}, +{ + "fields": { + "anchor": "Scale Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scale-mail", + "source_content_type": 50, + "source_object_key": "srd-2024_dragon-scale-mail" + }, + "model": "api_v2.crossreference", + "pk": 9846 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 9847 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 9848 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-sprig-of-mistletoe" + }, + "model": "api_v2.crossreference", + "pk": 9849 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 9850 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 9851 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 9852 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-wooden-staff" + }, + "model": "api_v2.crossreference", + "pk": 9853 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 9854 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 9855 +}, +{ + "fields": { + "anchor": "Ranger", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_ranger", + "source_content_type": 50, + "source_object_key": "srd-2024_druidic-focus-yew-wand" + }, + "model": "api_v2.crossreference", + "pk": 9856 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9857 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9858 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9859 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9860 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9861 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9862 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9863 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_dungeoneers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9864 +}, +{ + "fields": { + "anchor": "Dust of Disappearance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dust-of-disappearance", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 9865 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 9866 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_dust-of-sneezing-and-choking" + }, + "model": "api_v2.crossreference", + "pk": 9867 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_dwarven-thrower" + }, + "model": "api_v2.crossreference", + "pk": 9868 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_efreeti-bottle" + }, + "model": "api_v2.crossreference", + "pk": 9869 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9870 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9871 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9872 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9873 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9874 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9875 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9876 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_entertainers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9877 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_eversmoking-bottle" + }, + "model": "api_v2.crossreference", + "pk": 9878 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9879 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9880 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9881 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9882 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9883 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9884 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_explorers-pack" + }, + "model": "api_v2.crossreference", + "pk": 9885 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-charming" + }, + "model": "api_v2.crossreference", + "pk": 9886 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_eyes-of-minute-seeing" + }, + "model": "api_v2.crossreference", + "pk": 9887 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-anchor" + }, + "model": "api_v2.crossreference", + "pk": 9888 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-bird" + }, + "model": "api_v2.crossreference", + "pk": 9889 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-fan" + }, + "model": "api_v2.crossreference", + "pk": 9890 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-swan-boat" + }, + "model": "api_v2.crossreference", + "pk": 9891 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-tree" + }, + "model": "api_v2.crossreference", + "pk": 9892 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_feather-token-whip" + }, + "model": "api_v2.crossreference", + "pk": 9893 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 9894 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ebony-fly" + }, + "model": "api_v2.crossreference", + "pk": 9895 +}, +{ + "fields": { + "anchor": "Lance", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lance", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 9896 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-ivory-goats" + }, + "model": "api_v2.crossreference", + "pk": 9897 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 50, + "source_object_key": "srd-2024_figurine-of-wondrous-power-silver-raven" + }, + "model": "api_v2.crossreference", + "pk": 9898 +}, +{ + "fields": { + "anchor": "Keelboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_keelboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 9899 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 9900 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_folding-boat" + }, + "model": "api_v2.crossreference", + "pk": 9901 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_gem-of-brightness" + }, + "model": "api_v2.crossreference", + "pk": 9902 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_glaive-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 9903 +}, +{ + "fields": { + "anchor": "Magnifying Glass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_magnifying-glass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9904 +}, +{ + "fields": { + "anchor": "Spyglass", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spyglass", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9905 +}, +{ + "fields": { + "anchor": "Vial", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_vial", + "source_content_type": 50, + "source_object_key": "srd-2024_glassblowers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9906 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_gloves-of-missile-snaring" + }, + "model": "api_v2.crossreference", + "pk": 9907 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_goggles-of-night" + }, + "model": "api_v2.crossreference", + "pk": 9908 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_grappling-hook" + }, + "model": "api_v2.crossreference", + "pk": 9909 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_greatsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 9910 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_half-plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 9911 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 9912 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 9913 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-maul" + }, + "model": "api_v2.crossreference", + "pk": 9914 +}, +{ + "fields": { + "anchor": "Thrown", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_thrown-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 9915 +}, +{ + "fields": { + "anchor": "Gauntlets of Ogre Power", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_gauntlets-of-ogre-power", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 9916 +}, +{ + "fields": { + "anchor": "Bane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bane", + "source_content_type": 50, + "source_object_key": "srd-2024_hammer-of-thunderbolts-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 9917 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 9918 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_handy-haversack" + }, + "model": "api_v2.crossreference", + "pk": 9919 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 50, + "source_object_key": "srd-2024_hat-of-disguise" + }, + "model": "api_v2.crossreference", + "pk": 9920 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 9921 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 9922 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 9923 +}, +{ + "fields": { + "anchor": "Prismatic Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prismatic-spray", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 9924 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-brilliance" + }, + "model": "api_v2.crossreference", + "pk": 9925 +}, +{ + "fields": { + "anchor": "Comprehend Languages", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_comprehend-languages", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-comprehending-languages" + }, + "model": "api_v2.crossreference", + "pk": 9926 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 9927 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-telepathy" + }, + "model": "api_v2.crossreference", + "pk": 9928 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 50, + "source_object_key": "srd-2024_helm-of-teleportation" + }, + "model": "api_v2.crossreference", + "pk": 9929 +}, +{ + "fields": { + "anchor": "Antitoxin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_antitoxin", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 9930 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 9931 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 9932 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_herbalism-kit" + }, + "model": "api_v2.crossreference", + "pk": 9933 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger" + }, + "model": "api_v2.crossreference", + "pk": 9934 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-battleaxe" + }, + "model": "api_v2.crossreference", + "pk": 9935 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-blowgun" + }, + "model": "api_v2.crossreference", + "pk": 9936 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-club" + }, + "model": "api_v2.crossreference", + "pk": 9937 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dagger" + }, + "model": "api_v2.crossreference", + "pk": 9938 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-dart" + }, + "model": "api_v2.crossreference", + "pk": 9939 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-flail" + }, + "model": "api_v2.crossreference", + "pk": 9940 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-glaive" + }, + "model": "api_v2.crossreference", + "pk": 9941 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greataxe" + }, + "model": "api_v2.crossreference", + "pk": 9942 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatclub" + }, + "model": "api_v2.crossreference", + "pk": 9943 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 9944 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-halberd" + }, + "model": "api_v2.crossreference", + "pk": 9945 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-hand-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 9946 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-handaxe" + }, + "model": "api_v2.crossreference", + "pk": 9947 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-heavy-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 9948 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-javelin" + }, + "model": "api_v2.crossreference", + "pk": 9949 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-lance" + }, + "model": "api_v2.crossreference", + "pk": 9950 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-crossbow" + }, + "model": "api_v2.crossreference", + "pk": 9951 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-light-hammer" + }, + "model": "api_v2.crossreference", + "pk": 9952 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longbow" + }, + "model": "api_v2.crossreference", + "pk": 9953 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-longsword" + }, + "model": "api_v2.crossreference", + "pk": 9954 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-mace" + }, + "model": "api_v2.crossreference", + "pk": 9955 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-maul" + }, + "model": "api_v2.crossreference", + "pk": 9956 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-morningstar" + }, + "model": "api_v2.crossreference", + "pk": 9957 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-musket" + }, + "model": "api_v2.crossreference", + "pk": 9958 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pike" + }, + "model": "api_v2.crossreference", + "pk": 9959 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-pistol" + }, + "model": "api_v2.crossreference", + "pk": 9960 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-quarterstaff" + }, + "model": "api_v2.crossreference", + "pk": 9961 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-rapier" + }, + "model": "api_v2.crossreference", + "pk": 9962 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 9963 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortbow" + }, + "model": "api_v2.crossreference", + "pk": 9964 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-shortsword" + }, + "model": "api_v2.crossreference", + "pk": 9965 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sickle" + }, + "model": "api_v2.crossreference", + "pk": 9966 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-sling" + }, + "model": "api_v2.crossreference", + "pk": 9967 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-spear" + }, + "model": "api_v2.crossreference", + "pk": 9968 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-trident" + }, + "model": "api_v2.crossreference", + "pk": 9969 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-war-pick" + }, + "model": "api_v2.crossreference", + "pk": 9970 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-warhammer" + }, + "model": "api_v2.crossreference", + "pk": 9971 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-avenger-whip" + }, + "model": "api_v2.crossreference", + "pk": 9972 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 9973 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 9974 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-amulet" + }, + "model": "api_v2.crossreference", + "pk": 9975 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 9976 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 9977 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 9978 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-emblem" + }, + "model": "api_v2.crossreference", + "pk": 9979 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 9980 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 9981 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-symbol-reliquary" + }, + "model": "api_v2.crossreference", + "pk": 9982 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_holy-water" + }, + "model": "api_v2.crossreference", + "pk": 9983 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 9984 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_horn-of-valhalla" + }, + "model": "api_v2.crossreference", + "pk": 9985 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_ink-pen" + }, + "model": "api_v2.crossreference", + "pk": 9986 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 9987 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 9988 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_instant-fortress" + }, + "model": "api_v2.crossreference", + "pk": 9989 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_ioun-stone" + }, + "model": "api_v2.crossreference", + "pk": 9990 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-bands" + }, + "model": "api_v2.crossreference", + "pk": 9991 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 9992 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_iron-flask" + }, + "model": "api_v2.crossreference", + "pk": 9993 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_javelin-of-lightning" + }, + "model": "api_v2.crossreference", + "pk": 9994 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_jewelers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9995 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lamp" + }, + "model": "api_v2.crossreference", + "pk": 9996 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-bullseye" + }, + "model": "api_v2.crossreference", + "pk": 9997 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_lantern-hooded" + }, + "model": "api_v2.crossreference", + "pk": 9998 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 9999 +}, +{ + "fields": { + "anchor": "Case, Map or Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_case-map-or-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10000 +}, +{ + "fields": { + "anchor": "Hide Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hide-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10001 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10002 +}, +{ + "fields": { + "anchor": "Map", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_map", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10003 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10004 +}, +{ + "fields": { + "anchor": "Pouch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pouch", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10005 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10006 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10007 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10008 +}, +{ + "fields": { + "anchor": "Waterskin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_waterskin", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10009 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_leatherworkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10010 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_lock" + }, + "model": "api_v2.crossreference", + "pk": 10011 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_longsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 10012 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_mace-of-disruption" + }, + "model": "api_v2.crossreference", + "pk": 10013 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 50, + "source_object_key": "srd-2024_manacles" + }, + "model": "api_v2.crossreference", + "pk": 10014 +}, +{ + "fields": { + "anchor": "Block and Tackle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_block-and-tackle", + "source_content_type": 50, + "source_object_key": "srd-2024_masons-tools" + }, + "model": "api_v2.crossreference", + "pk": 10015 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_medallion-of-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 10016 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 10017 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 10018 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_mirror-of-life-trapping" + }, + "model": "api_v2.crossreference", + "pk": 10019 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-bagpipes" + }, + "model": "api_v2.crossreference", + "pk": 10020 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-drum" + }, + "model": "api_v2.crossreference", + "pk": 10021 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-dulcimer" + }, + "model": "api_v2.crossreference", + "pk": 10022 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-flute" + }, + "model": "api_v2.crossreference", + "pk": 10023 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-horn" + }, + "model": "api_v2.crossreference", + "pk": 10024 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lute" + }, + "model": "api_v2.crossreference", + "pk": 10025 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-lyre" + }, + "model": "api_v2.crossreference", + "pk": 10026 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-pan-flute" + }, + "model": "api_v2.crossreference", + "pk": 10027 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-shawm" + }, + "model": "api_v2.crossreference", + "pk": 10028 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_musical-instrument-viol" + }, + "model": "api_v2.crossreference", + "pk": 10029 +}, +{ + "fields": { + "anchor": "Sage", + "document": "srd-2024", + "reference_content_type": 25, + "reference_object_key": "srd-2024_sage", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10030 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10031 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10032 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10033 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10034 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10035 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_mysterious-deck" + }, + "model": "api_v2.crossreference", + "pk": 10036 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 10037 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10038 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10039 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10040 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10041 +}, +{ + "fields": { + "anchor": "Shining Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shining-smite", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10042 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_necklace-of-prayer-beads" + }, + "model": "api_v2.crossreference", + "pk": 10043 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_needles-50" + }, + "model": "api_v2.crossreference", + "pk": 10044 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 10045 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_net" + }, + "model": "api_v2.crossreference", + "pk": 10046 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 10047 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 50, + "source_object_key": "srd-2024_oil" + }, + "model": "api_v2.crossreference", + "pk": 10048 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 10049 +}, +{ + "fields": { + "anchor": "Ammunition", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_ammunition-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-sharpness" + }, + "model": "api_v2.crossreference", + "pk": 10050 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 10051 +}, +{ + "fields": { + "anchor": "Grease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_grease", + "source_content_type": 50, + "source_object_key": "srd-2024_oil-of-slipperiness" + }, + "model": "api_v2.crossreference", + "pk": 10052 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 10053 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_painters-supplies" + }, + "model": "api_v2.crossreference", + "pk": 10054 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-proof-against-poison" + }, + "model": "api_v2.crossreference", + "pk": 10055 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_periapt-of-wound-closure" + }, + "model": "api_v2.crossreference", + "pk": 10056 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_plate-armor-of-etherealness" + }, + "model": "api_v2.crossreference", + "pk": 10057 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_pole" + }, + "model": "api_v2.crossreference", + "pk": 10058 +}, +{ + "fields": { + "anchor": "Bag of Holding", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bag-of-holding", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 10059 +}, +{ + "fields": { + "anchor": "Handy Haversack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handy-haversack", + "source_content_type": 50, + "source_object_key": "srd-2024_portable-hole" + }, + "model": "api_v2.crossreference", + "pk": 10060 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-animal-friendship" + }, + "model": "api_v2.crossreference", + "pk": 10061 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 10062 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-diminution" + }, + "model": "api_v2.crossreference", + "pk": 10063 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 10064 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 10065 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-growth" + }, + "model": "api_v2.crossreference", + "pk": 10066 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 10067 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-heroism" + }, + "model": "api_v2.crossreference", + "pk": 10068 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-mind-reading" + }, + "model": "api_v2.crossreference", + "pk": 10069 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 10070 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 10071 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-poison" + }, + "model": "api_v2.crossreference", + "pk": 10072 +}, +{ + "fields": { + "anchor": "Haste", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_haste", + "source_content_type": 50, + "source_object_key": "srd-2024_potion-of-speed" + }, + "model": "api_v2.crossreference", + "pk": 10073 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 10074 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_potions-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 10075 +}, +{ + "fields": { + "anchor": "Jug", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_jug", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 10076 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_potters-tools" + }, + "model": "api_v2.crossreference", + "pk": 10077 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10078 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10079 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10080 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10081 +}, +{ + "fields": { + "anchor": "Rations", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rations", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10082 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10083 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_priests-pack" + }, + "model": "api_v2.crossreference", + "pk": 10084 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_rapier-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 10085 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 10086 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 10087 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-animal-influence" + }, + "model": "api_v2.crossreference", + "pk": 10088 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10089 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10090 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10091 +}, +{ + "fields": { + "anchor": "Create or Destroy Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-or-destroy-water", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10092 +}, +{ + "fields": { + "anchor": "Earthquake", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_earthquake", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10093 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10094 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10095 +}, +{ + "fields": { + "anchor": "Fire Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10096 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10097 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10098 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10099 +}, +{ + "fields": { + "anchor": "Stone Shape", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stone-shape", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10100 +}, +{ + "fields": { + "anchor": "Stoneskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stoneskin", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10101 +}, +{ + "fields": { + "anchor": "Tsunami", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tsunami", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10102 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10103 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10104 +}, +{ + "fields": { + "anchor": "Wall of Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-stone", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10105 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10106 +}, +{ + "fields": { + "anchor": "Wind Wall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-wall", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10107 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-elemental-command" + }, + "model": "api_v2.crossreference", + "pk": 10108 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-jumping" + }, + "model": "api_v2.crossreference", + "pk": 10109 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 10110 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-shooting-stars" + }, + "model": "api_v2.crossreference", + "pk": 10111 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-three-wishes" + }, + "model": "api_v2.crossreference", + "pk": 10112 +}, +{ + "fields": { + "anchor": "Water Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-walk", + "source_content_type": 50, + "source_object_key": "srd-2024_ring-of-water-walking" + }, + "model": "api_v2.crossreference", + "pk": 10113 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 10114 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 10115 +}, +{ + "fields": { + "anchor": "Daylight", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_daylight", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-eyes" + }, + "model": "api_v2.crossreference", + "pk": 10116 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-stars" + }, + "model": "api_v2.crossreference", + "pk": 10117 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10118 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10119 +}, +{ + "fields": { + "anchor": "Pole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pole", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10120 +}, +{ + "fields": { + "anchor": "Potions of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potions-of-healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10121 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10122 +}, +{ + "fields": { + "anchor": "Rowboat", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rowboat", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10123 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10124 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10125 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 50, + "source_object_key": "srd-2024_robe-of-useful-items" + }, + "model": "api_v2.crossreference", + "pk": 10126 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 10127 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 10128 +}, +{ + "fields": { + "anchor": "Detect Poison and Disease", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-poison-and-disease", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 10129 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 10130 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-alertness" + }, + "model": "api_v2.crossreference", + "pk": 10131 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 10132 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 10133 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 10134 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 10135 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 50, + "source_object_key": "srd-2024_rod-of-lordly-might" + }, + "model": "api_v2.crossreference", + "pk": 10136 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-climbing" + }, + "model": "api_v2.crossreference", + "pk": 10137 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_rope-of-entanglement" + }, + "model": "api_v2.crossreference", + "pk": 10138 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 50, + "source_object_key": "srd-2024_scarab-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 10139 +}, +{ + "fields": { + "anchor": "Backpack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_backpack", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10140 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10141 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10142 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10143 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10144 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10145 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10146 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10147 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 50, + "source_object_key": "srd-2024_scholars-pack" + }, + "model": "api_v2.crossreference", + "pk": 10148 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_scimitar-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 10149 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-of-missile-attraction" + }, + "model": "api_v2.crossreference", + "pk": 10150 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-1" + }, + "model": "api_v2.crossreference", + "pk": 10151 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-2" + }, + "model": "api_v2.crossreference", + "pk": 10152 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_shield-plus-3" + }, + "model": "api_v2.crossreference", + "pk": 10153 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 50, + "source_object_key": "srd-2024_shortsword-of-life-stealing" + }, + "model": "api_v2.crossreference", + "pk": 10154 +}, +{ + "fields": { + "anchor": "Ball Bearings", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ball-bearings", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10155 +}, +{ + "fields": { + "anchor": "Bucket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bucket", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10156 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10157 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10158 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10159 +}, +{ + "fields": { + "anchor": "Grappling Hook", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_grappling-hook", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10160 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10161 +}, +{ + "fields": { + "anchor": "Pot, Iron", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pot-iron", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10162 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10163 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10164 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 50, + "source_object_key": "srd-2024_smiths-tools" + }, + "model": "api_v2.crossreference", + "pk": 10165 +}, +{ + "fields": { + "anchor": "Oil", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10166 +}, +{ + "fields": { + "anchor": "Oil of Etherealness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10167 +}, +{ + "fields": { + "anchor": "Oil of Slipperiness", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_oil-of-slipperiness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10168 +}, +{ + "fields": { + "anchor": "Universal Solvent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_universal-solvent", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10169 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10170 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 50, + "source_object_key": "srd-2024_sovereign-glue" + }, + "model": "api_v2.crossreference", + "pk": 10171 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 50, + "source_object_key": "srd-2024_spellguard-shield" + }, + "model": "api_v2.crossreference", + "pk": 10172 +}, +{ + "fields": { + "anchor": "Portable Hole", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_portable-hole", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 10173 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 50, + "source_object_key": "srd-2024_sphere-of-annihilation" + }, + "model": "api_v2.crossreference", + "pk": 10174 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 10175 +}, +{ + "fields": { + "anchor": "Light Hammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-hammer", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 10176 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_spikes-iron" + }, + "model": "api_v2.crossreference", + "pk": 10177 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 10178 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 10179 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-fire" + }, + "model": "api_v2.crossreference", + "pk": 10180 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 10181 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 10182 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 10183 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-frost" + }, + "model": "api_v2.crossreference", + "pk": 10184 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 10185 +}, +{ + "fields": { + "anchor": "Lesser Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lesser-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 10186 +}, +{ + "fields": { + "anchor": "Mass Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mass-cure-wounds", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-healing" + }, + "model": "api_v2.crossreference", + "pk": 10187 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10188 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10189 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10190 +}, +{ + "fields": { + "anchor": "Globe of Invulnerability", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_globe-of-invulnerability", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10191 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10192 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10193 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10194 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10195 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10196 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-power" + }, + "model": "api_v2.crossreference", + "pk": 10197 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-striking" + }, + "model": "api_v2.crossreference", + "pk": 10198 +}, +{ + "fields": { + "anchor": "Giant Insect", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_giant-insect", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 10199 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 10200 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-swarming-insects" + }, + "model": "api_v2.crossreference", + "pk": 10201 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10202 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10203 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10204 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10205 +}, +{ + "fields": { + "anchor": "Conjure Elemental", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_conjure-elemental", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10206 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10207 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10208 +}, +{ + "fields": { + "anchor": "Enlarge/Reduce", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_enlargereduce", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10209 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10210 +}, +{ + "fields": { + "anchor": "Flaming Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flaming-sphere", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10211 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10212 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10213 +}, +{ + "fields": { + "anchor": "Knock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_knock", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10214 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10215 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10216 +}, +{ + "fields": { + "anchor": "Passwall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_passwall", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10217 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10218 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10219 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10220 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10221 +}, +{ + "fields": { + "anchor": "Web", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_web", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-magi" + }, + "model": "api_v2.crossreference", + "pk": 10222 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10223 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10224 +}, +{ + "fields": { + "anchor": "Awaken", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_awaken", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10225 +}, +{ + "fields": { + "anchor": "Barkskin", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_barkskin", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10226 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10227 +}, +{ + "fields": { + "anchor": "Locate Animals or Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-animals-or-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10228 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10229 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10230 +}, +{ + "fields": { + "anchor": "Speak with Plants", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-plants", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10231 +}, +{ + "fields": { + "anchor": "Wall of Thorns", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-thorns", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-the-woodlands" + }, + "model": "api_v2.crossreference", + "pk": 10232 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-thunder-and-lightning" + }, + "model": "api_v2.crossreference", + "pk": 10233 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_staff-of-withering" + }, + "model": "api_v2.crossreference", + "pk": 10234 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 10235 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 50, + "source_object_key": "srd-2024_sun-blade" + }, + "model": "api_v2.crossreference", + "pk": 10236 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-pure-good" + }, + "model": "api_v2.crossreference", + "pk": 10237 +}, +{ + "fields": { + "anchor": "Sphere of Annihilation", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sphere-of-annihilation", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-the-sphere" + }, + "model": "api_v2.crossreference", + "pk": 10238 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 50, + "source_object_key": "srd-2024_talisman-of-ultimate-evil" + }, + "model": "api_v2.crossreference", + "pk": 10239 +}, +{ + "fields": { + "anchor": "Candle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_candle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 10240 +}, +{ + "fields": { + "anchor": "Lamp", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lamp", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 10241 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 50, + "source_object_key": "srd-2024_tinderbox" + }, + "model": "api_v2.crossreference", + "pk": 10242 +}, +{ + "fields": { + "anchor": "Bell", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bell", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10243 +}, +{ + "fields": { + "anchor": "Flask", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flask", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10244 +}, +{ + "fields": { + "anchor": "Hunting Trap", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hunting-trap", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10245 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10246 +}, +{ + "fields": { + "anchor": "Manacles", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_manacles", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10247 +}, +{ + "fields": { + "anchor": "Mirror", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mirror", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10248 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10249 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10250 +}, +{ + "fields": { + "anchor": "Shovel", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shovel", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10251 +}, +{ + "fields": { + "anchor": "Signal Whistle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_signal-whistle", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10252 +}, +{ + "fields": { + "anchor": "Tinderbox", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tinderbox", + "source_content_type": 50, + "source_object_key": "srd-2024_tinkers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10253 +}, +{ + "fields": { + "anchor": "Dominate Beast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-beast", + "source_content_type": 50, + "source_object_key": "srd-2024_trident-of-fish-command" + }, + "model": "api_v2.crossreference", + "pk": 10254 +}, +{ + "fields": { + "anchor": "Sovereign Glue", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sovereign-glue", + "source_content_type": 50, + "source_object_key": "srd-2024_universal-solvent" + }, + "model": "api_v2.crossreference", + "pk": 10255 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-glaive" + }, + "model": "api_v2.crossreference", + "pk": 10256 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-greatsword" + }, + "model": "api_v2.crossreference", + "pk": 10257 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-longsword" + }, + "model": "api_v2.crossreference", + "pk": 10258 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 50, + "source_object_key": "srd-2024_vorpal-scimitar" + }, + "model": "api_v2.crossreference", + "pk": 10259 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 10260 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-binding" + }, + "model": "api_v2.crossreference", + "pk": 10261 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-fireballs" + }, + "model": "api_v2.crossreference", + "pk": 10262 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-lightning-bolts" + }, + "model": "api_v2.crossreference", + "pk": 10263 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-detection" + }, + "model": "api_v2.crossreference", + "pk": 10264 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-magic-missiles" + }, + "model": "api_v2.crossreference", + "pk": 10265 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 10266 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 10267 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-web" + }, + "model": "api_v2.crossreference", + "pk": 10268 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10269 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10270 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10271 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10272 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10273 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10274 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10275 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10276 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_slow", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10277 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 50, + "source_object_key": "srd-2024_wand-of-wonder" + }, + "model": "api_v2.crossreference", + "pk": 10278 +}, +{ + "fields": { + "anchor": "Basket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_basket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10279 +}, +{ + "fields": { + "anchor": "Bedroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_bedroll", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10280 +}, +{ + "fields": { + "anchor": "Blanket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blanket", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10281 +}, +{ + "fields": { + "anchor": "Net", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_net", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10282 +}, +{ + "fields": { + "anchor": "Padded Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_padded-armor", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10283 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10284 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10285 +}, +{ + "fields": { + "anchor": "Sack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sack", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10286 +}, +{ + "fields": { + "anchor": "String", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_string", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10287 +}, +{ + "fields": { + "anchor": "Tent", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_tent", + "source_content_type": 50, + "source_object_key": "srd-2024_weavers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10288 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 50, + "source_object_key": "srd-2024_wind-fan" + }, + "model": "api_v2.crossreference", + "pk": 10289 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_winged-boots" + }, + "model": "api_v2.crossreference", + "pk": 10290 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 50, + "source_object_key": "srd-2024_wings-of-flying" + }, + "model": "api_v2.crossreference", + "pk": 10291 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10292 +}, +{ + "fields": { + "anchor": "Greatclub", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatclub", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10293 +}, +{ + "fields": { + "anchor": "Ink", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10294 +}, +{ + "fields": { + "anchor": "Ink Pen", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ink-pen", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10295 +}, +{ + "fields": { + "anchor": "Musket", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_musket", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10296 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10297 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10298 +}, +{ + "fields": { + "anchor": "Sling", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sling", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10299 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 50, + "source_object_key": "srd-2024_woodcarvers-tools" + }, + "model": "api_v2.crossreference", + "pk": 10300 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 70, + "source_object_key": "srd-2024_athletics" + }, + "model": "api_v2.crossreference", + "pk": 10301 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_breath-weapon" + }, + "model": "api_v2.crossreference", + "pk": 10302 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10303 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 63, + "source_object_key": "srd-2024_dragonborn_draconic-flight" + }, + "model": "api_v2.crossreference", + "pk": 10304 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10305 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_dwarf_stonecunning" + }, + "model": "api_v2.crossreference", + "pk": 10306 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10307 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10308 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10309 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10310 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10311 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10312 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10313 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10314 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10315 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10316 +}, +{ + "fields": { + "anchor": "Misty Step", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_misty-step", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10317 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10318 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_elf_elven-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10319 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10320 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10321 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10322 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10323 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10324 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_gnome_gnomish-lineage" + }, + "model": "api_v2.crossreference", + "pk": 10325 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_goliath_giant-ancestry" + }, + "model": "api_v2.crossreference", + "pk": 10326 +}, +{ + "fields": { + "anchor": "Skilled", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_skilled", + "source_content_type": 63, + "source_object_key": "srd-2024_human_versatile" + }, + "model": "api_v2.crossreference", + "pk": 10327 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 10328 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_adrenaline-rush" + }, + "model": "api_v2.crossreference", + "pk": 10329 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_orc_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10330 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_darkvision" + }, + "model": "api_v2.crossreference", + "pk": 10331 +}, +{ + "fields": { + "anchor": "Chill Touch", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chill-touch", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10332 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10333 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10334 +}, +{ + "fields": { + "anchor": "Fire Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-bolt", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10335 +}, +{ + "fields": { + "anchor": "Hellish Rebuke", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hellish-rebuke", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10336 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10337 +}, +{ + "fields": { + "anchor": "Poison Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_poison-spray", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10338 +}, +{ + "fields": { + "anchor": "Ray of Enfeeblement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-enfeeblement", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10339 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_fiendish-legacy" + }, + "model": "api_v2.crossreference", + "pk": 10340 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 63, + "source_object_key": "srd-2024_tiefling_otherworldly-presence" + }, + "model": "api_v2.crossreference", + "pk": 10341 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 47, + "source_object_key": "srd-2024_alert_1_initative-proficiency" + }, + "model": "api_v2.crossreference", + "pk": 10342 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_2" + }, + "model": "api_v2.crossreference", + "pk": 10343 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 47, + "source_object_key": "srd-2024_boon-of-the-night-spirit_3" + }, + "model": "api_v2.crossreference", + "pk": 10344 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_defense_1" + }, + "model": "api_v2.crossreference", + "pk": 10345 +}, +{ + "fields": { + "anchor": "Two-Handed", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_two-handed-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 10346 +}, +{ + "fields": { + "anchor": "Versatile", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_versatile-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_great-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 10347 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 10348 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 10349 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 10350 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 47, + "source_object_key": "srd-2024_magic-initiate_1" + }, + "model": "api_v2.crossreference", + "pk": 10351 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 47, + "source_object_key": "srd-2024_two-weapon-fighting_1" + }, + "model": "api_v2.crossreference", + "pk": 10352 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10353 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10354 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10355 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10356 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 10357 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 33, + "source_object_key": "srd-2024_acolyte_feat" + }, + "model": "api_v2.crossreference", + "pk": 10358 +}, +{ + "fields": { + "anchor": "Crowbar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_crowbar", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10359 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10360 +}, +{ + "fields": { + "anchor": "Alert", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_alert", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_feat" + }, + "model": "api_v2.crossreference", + "pk": 10361 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 33, + "source_object_key": "srd-2024_criminal_tool-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 10362 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10363 +}, +{ + "fields": { + "anchor": "Parchment", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_parchment", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10364 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10365 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10366 +}, +{ + "fields": { + "anchor": "Magic Initiate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_magic-initiate", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 10367 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 33, + "source_object_key": "srd-2024_sage_feat" + }, + "model": "api_v2.crossreference", + "pk": 10368 +}, +{ + "fields": { + "anchor": "Healer's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_healers-kit", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10369 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10370 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10371 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_equipment" + }, + "model": "api_v2.crossreference", + "pk": 10372 +}, +{ + "fields": { + "anchor": "Savage Attacker", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_savage-attacker", + "source_content_type": 33, + "source_object_key": "srd-2024_soldier_feat" + }, + "model": "api_v2.crossreference", + "pk": 10373 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 72, + "source_object_key": "srd-2024_charmed" + }, + "model": "api_v2.crossreference", + "pk": 10374 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 72, + "source_object_key": "srd-2024_exhaustion" + }, + "model": "api_v2.crossreference", + "pk": 10375 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_paralyzed" + }, + "model": "api_v2.crossreference", + "pk": 10376 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 72, + "source_object_key": "srd-2024_petrified" + }, + "model": "api_v2.crossreference", + "pk": 10377 +}, +{ + "fields": { + "anchor": "Critical Hits", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_critical-hits", + "source_content_type": 72, + "source_object_key": "srd-2024_unconscious" + }, + "model": "api_v2.crossreference", + "pk": 10378 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 10379 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10380 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10381 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10382 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10383 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10384 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10385 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 10386 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 10387 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10388 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 10389 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10390 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10391 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10392 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10393 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10394 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10395 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 10396 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10397 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10398 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10399 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10400 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10401 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10402 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10403 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10404 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10405 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 10406 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10407 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10408 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10409 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10410 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10411 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10412 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10413 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10414 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 10415 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10416 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10417 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10418 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10419 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10420 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10421 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10422 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 10423 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10424 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10425 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10426 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10427 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10428 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10429 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 10430 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10431 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10432 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10433 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10434 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 10435 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 10436 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10437 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10438 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10439 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10440 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10441 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 10442 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10443 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10444 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10445 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10446 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10447 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10448 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10449 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_adult-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 10450 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 10451 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10452 +}, +{ + "fields": { + "anchor": "Acid Arrow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_acid-arrow", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10453 +}, +{ + "fields": { + "anchor": "Create Undead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-undead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10454 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10455 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10456 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10457 +}, +{ + "fields": { + "anchor": "Vitriolic Sphere", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vitriolic-sphere", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-black-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10458 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 10459 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_cloaked-flight" + }, + "model": "api_v2.crossreference", + "pk": 10460 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10461 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_sonic-boom" + }, + "model": "api_v2.crossreference", + "pk": 10462 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10463 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10464 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10465 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10466 +}, +{ + "fields": { + "anchor": "Sending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sending", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10467 +}, +{ + "fields": { + "anchor": "Shatter", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shatter", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-blue-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10468 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_blazing-light" + }, + "model": "api_v2.crossreference", + "pk": 10469 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10470 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10471 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10472 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10473 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10474 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10475 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10476 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10477 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-brass-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10478 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 10479 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10480 +}, +{ + "fields": { + "anchor": "Control Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-water", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10481 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10482 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10483 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10484 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10485 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10486 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10487 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10488 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-bronze-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10489 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_mind-jolt" + }, + "model": "api_v2.crossreference", + "pk": 10490 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10491 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10492 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10493 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10494 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10495 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10496 +}, +{ + "fields": { + "anchor": "Project Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_project-image", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10497 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-copper-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10498 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_guiding-light" + }, + "model": "api_v2.crossreference", + "pk": 10499 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10500 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10501 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10502 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10503 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10504 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10505 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-gold-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10506 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_mind-invasion" + }, + "model": "api_v2.crossreference", + "pk": 10507 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10508 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10509 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10510 +}, +{ + "fields": { + "anchor": "Mind Spike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-spike", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10511 +}, +{ + "fields": { + "anchor": "Modify Memory", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_modify-memory", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-green-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10512 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_commanding-presence" + }, + "model": "api_v2.crossreference", + "pk": 10513 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_fiery-rays" + }, + "model": "api_v2.crossreference", + "pk": 10514 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10515 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10516 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10517 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10518 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10519 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-red-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10520 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_chill" + }, + "model": "api_v2.crossreference", + "pk": 10521 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10522 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10523 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10524 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10525 +}, +{ + "fields": { + "anchor": "Ice Knife", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-knife", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10526 +}, +{ + "fields": { + "anchor": "Ice Storm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ice-storm", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10527 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10528 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10529 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-silver-dragon_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10530 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_ancient-white-dragon_frightful-presence" + }, + "model": "api_v2.crossreference", + "pk": 10531 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10532 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10533 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10534 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10535 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10536 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10537 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10538 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10539 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10540 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10541 +}, +{ + "fields": { + "anchor": "Mind Blank", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mind-blank", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10542 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10543 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10544 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 38, + "source_object_key": "srd-2024_archmage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10545 +}, +{ + "fields": { + "anchor": "Light Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_light-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10546 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_assassin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10547 +}, +{ + "fields": { + "anchor": "Whip", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_whip", + "source_content_type": 38, + "source_object_key": "srd-2024_balor_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10548 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10549 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_bandit-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10550 +}, +{ + "fields": { + "anchor": "Glaive", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_glaive", + "source_content_type": 38, + "source_object_key": "srd-2024_bearded-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10551 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_black-pudding_dissolving-pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 10552 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10553 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_bugbear-stalker_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10554 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10555 +}, +{ + "fields": { + "anchor": "Pike", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pike", + "source_content_type": 38, + "source_object_key": "srd-2024_centaur-trooper_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10556 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10557 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10558 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10559 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10560 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10561 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10562 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10563 +}, +{ + "fields": { + "anchor": "Telekinesis", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_telekinesis", + "source_content_type": 38, + "source_object_key": "srd-2024_cloud-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10564 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10565 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10566 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10567 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10568 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10569 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10570 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10571 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10572 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_couatl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10573 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10574 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10575 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10576 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_cultist-fanatic_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10577 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 38, + "source_object_key": "srd-2024_darkmantle_darkness-aura" + }, + "model": "api_v2.crossreference", + "pk": 10578 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10579 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10580 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10581 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10582 +}, +{ + "fields": { + "anchor": "Shapechange", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shapechange", + "source_content_type": 38, + "source_object_key": "srd-2024_deva_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10583 +}, +{ + "fields": { + "anchor": "Create Food and Water", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_create-food-and-water", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10584 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10585 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10586 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10587 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10588 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10589 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10590 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10591 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10592 +}, +{ + "fields": { + "anchor": "Wind Walk", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wind-walk", + "source_content_type": 38, + "source_object_key": "srd-2024_djinni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10593 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_doppelganger_read-thoughts" + }, + "model": "api_v2.crossreference", + "pk": 10594 +}, +{ + "fields": { + "anchor": "Animal Messenger", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-messenger", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10595 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10596 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10597 +}, +{ + "fields": { + "anchor": "Longstrider", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_longstrider", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10598 +}, +{ + "fields": { + "anchor": "Moonbeam", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_moonbeam", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10599 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 38, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10600 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10601 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10602 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10603 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10604 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10605 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_dryad_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10606 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_dust-mephit_sleep-1-day" + }, + "model": "api_v2.crossreference", + "pk": 10607 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10608 +}, +{ + "fields": { + "anchor": "Elementalism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_elementalism", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10609 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10610 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10611 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10612 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10613 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10614 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_efreeti_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10615 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_entangling-rope" + }, + "model": "api_v2.crossreference", + "pk": 10616 +}, +{ + "fields": { + "anchor": "Rope", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rope", + "source_content_type": 38, + "source_object_key": "srd-2024_erinyes_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10617 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_ettercap_web-strand" + }, + "model": "api_v2.crossreference", + "pk": 10618 +}, +{ + "fields": { + "anchor": "Battleaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_battleaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10619 +}, +{ + "fields": { + "anchor": "Morningstar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_morningstar", + "source_content_type": 38, + "source_object_key": "srd-2024_ettin_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10620 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_ghost_etherealness" + }, + "model": "api_v2.crossreference", + "pk": 10621 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10622 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10623 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-owl_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10624 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_giant-spider_web" + }, + "model": "api_v2.crossreference", + "pk": 10625 +}, +{ + "fields": { + "anchor": "Confusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_confusion", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10626 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10627 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10628 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10629 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10630 +}, +{ + "fields": { + "anchor": "Power Word Stun", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-stun", + "source_content_type": 38, + "source_object_key": "srd-2024_glabrezu_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10631 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10632 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_gladiator_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10633 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10634 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 38, + "source_object_key": "srd-2024_goblin-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10635 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_gray-ooze_pseudopod" + }, + "model": "api_v2.crossreference", + "pk": 10636 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10637 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10638 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10639 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10640 +}, +{ + "fields": { + "anchor": "Ray of Sickness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-sickness", + "source_content_type": 38, + "source_object_key": "srd-2024_green-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10641 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10642 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 38, + "source_object_key": "srd-2024_guard-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10643 +}, +{ + "fields": { + "anchor": "Clairvoyance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_clairvoyance", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10644 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10645 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10646 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10647 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10648 +}, +{ + "fields": { + "anchor": "True Seeing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-seeing", + "source_content_type": 38, + "source_object_key": "srd-2024_guardian-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10649 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_hill-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10650 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10651 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_hobgoblin-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10652 +}, +{ + "fields": { + "anchor": "Wall of Ice", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-ice", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_ice-wall" + }, + "model": "api_v2.crossreference", + "pk": 10653 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-devil_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10654 +}, +{ + "fields": { + "anchor": "Fog Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fog-cloud", + "source_content_type": 38, + "source_object_key": "srd-2024_ice-mephit_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 10655 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 10656 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_imp_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 10657 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10658 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10659 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10660 +}, +{ + "fields": { + "anchor": "Hypnotic Pattern", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hypnotic-pattern", + "source_content_type": 38, + "source_object_key": "srd-2024_incubus_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10661 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10662 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_knight_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10663 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10664 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10665 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10666 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10667 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lamia_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10668 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_frightening-gaze" + }, + "model": "api_v2.crossreference", + "pk": 10669 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10670 +}, +{ + "fields": { + "anchor": "Chain Lightning", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chain-lightning", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10671 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10672 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10673 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10674 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10675 +}, +{ + "fields": { + "anchor": "Finger of Death", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_finger-of-death", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10676 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10677 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10678 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10679 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10680 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10681 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10682 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10683 +}, +{ + "fields": { + "anchor": "Scrying", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scrying", + "source_content_type": 38, + "source_object_key": "srd-2024_lich_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10684 +}, +{ + "fields": { + "anchor": "Cone of Cold", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cone-of-cold", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10685 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10686 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10687 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10688 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10689 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10690 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10691 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10692 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_mage_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10693 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_dread-command" + }, + "model": "api_v2.crossreference", + "pk": 10694 +}, +{ + "fields": { + "anchor": "Animate Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animate-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10695 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10696 +}, +{ + "fields": { + "anchor": "Harm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_harm", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10697 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10698 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_mummy-lord_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10699 +}, +{ + "fields": { + "anchor": "Dream", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dream", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 10700 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 10701 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_nightmare-haunting" + }, + "model": "api_v2.crossreference", + "pk": 10702 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10703 +}, +{ + "fields": { + "anchor": "Etherealness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_etherealness", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10704 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10705 +}, +{ + "fields": { + "anchor": "Phantasmal Killer", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_phantasmal-killer", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10706 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_night-hag_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10707 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10708 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10709 +}, +{ + "fields": { + "anchor": "Gaseous Form", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gaseous-form", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10710 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_oni_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10711 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10712 +}, +{ + "fields": { + "anchor": "Pistol", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_pistol", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10713 +}, +{ + "fields": { + "anchor": "Rapier", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_rapier", + "source_content_type": 38, + "source_object_key": "srd-2024_pirate-captain_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10714 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10715 +}, +{ + "fields": { + "anchor": "Hold Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-monster", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10716 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_hellfire-spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10717 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_pit-fiend_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10718 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10719 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10720 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10721 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10722 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 38, + "source_object_key": "srd-2024_planetar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10723 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10724 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10725 +}, +{ + "fields": { + "anchor": "Spirit Guardians", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_spirit-guardians", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10726 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10727 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10728 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_priest-acolyte_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10729 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 10730 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_quasit_shape-shift" + }, + "model": "api_v2.crossreference", + "pk": 10731 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10732 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10733 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10734 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10735 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10736 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10737 +}, +{ + "fields": { + "anchor": "Major Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_major-image", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10738 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10739 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_rakshasa_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10740 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 38, + "source_object_key": "srd-2024_roper_tentacle" + }, + "model": "api_v2.crossreference", + "pk": 10741 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 38, + "source_object_key": "srd-2024_rust-monster_antennae" + }, + "model": "api_v2.crossreference", + "pk": 10742 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 38, + "source_object_key": "srd-2024_salamander_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10743 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10744 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 38, + "source_object_key": "srd-2024_scout_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10745 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 38, + "source_object_key": "srd-2024_sea-hag_illusory-appearance" + }, + "model": "api_v2.crossreference", + "pk": 10746 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10747 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10748 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10749 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10750 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 38, + "source_object_key": "srd-2024_solar_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10751 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10752 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10753 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10754 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10755 +}, +{ + "fields": { + "anchor": "Locate Object", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_locate-object", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10756 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10757 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10758 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10759 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10760 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10761 +}, +{ + "fields": { + "anchor": "Tongues", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_tongues", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-lore_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10762 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10763 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10764 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10765 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10766 +}, +{ + "fields": { + "anchor": "Heroes' Feast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroes-feast", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10767 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10768 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 38, + "source_object_key": "srd-2024_sphinx-of-valor_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10769 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10770 +}, +{ + "fields": { + "anchor": "Detect Thoughts", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-thoughts", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10771 +}, +{ + "fields": { + "anchor": "Dimension Door", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dimension-door", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10772 +}, +{ + "fields": { + "anchor": "Hold Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hold-person", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10773 +}, +{ + "fields": { + "anchor": "Lightning Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_lightning-bolt", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10774 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10775 +}, +{ + "fields": { + "anchor": "Minor Illusion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_minor-illusion", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10776 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 38, + "source_object_key": "srd-2024_spirit-naga_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10777 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 38, + "source_object_key": "srd-2024_sprite_invisibility" + }, + "model": "api_v2.crossreference", + "pk": 10778 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 38, + "source_object_key": "srd-2024_stone-giant_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10779 +}, +{ + "fields": { + "anchor": "Control Weather", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_control-weather", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10780 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10781 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 38, + "source_object_key": "srd-2024_storm-giant_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10782 +}, +{ + "fields": { + "anchor": "Dominate Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dominate-person", + "source_content_type": 38, + "source_object_key": "srd-2024_succubus_charm" + }, + "model": "api_v2.crossreference", + "pk": 10783 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10784 +}, +{ + "fields": { + "anchor": "Warhammer", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_warhammer", + "source_content_type": 38, + "source_object_key": "srd-2024_tough-boss_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10785 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_shimmering-shield" + }, + "model": "api_v2.crossreference", + "pk": 10786 +}, +{ + "fields": { + "anchor": "Calm Emotions", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_calm-emotions", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10787 +}, +{ + "fields": { + "anchor": "Detect Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10788 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10789 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10790 +}, +{ + "fields": { + "anchor": "Entangle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_entangle", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10791 +}, +{ + "fields": { + "anchor": "Pass without Trace", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_pass-without-trace", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10792 +}, +{ + "fields": { + "anchor": "Word of Recall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_word-of-recall", + "source_content_type": 38, + "source_object_key": "srd-2024_unicorn_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10793 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire_beguile" + }, + "model": "api_v2.crossreference", + "pk": 10794 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 38, + "source_object_key": "srd-2024_vampire-familiar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10795 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 38, + "source_object_key": "srd-2024_vrock_spores" + }, + "model": "api_v2.crossreference", + "pk": 10796 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10797 +}, +{ + "fields": { + "anchor": "Heavy Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_heavy-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_warrior-veteran_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10798 +}, +{ + "fields": { + "anchor": "Handaxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_handaxe", + "source_content_type": 38, + "source_object_key": "srd-2024_werebear_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10799 +}, +{ + "fields": { + "anchor": "Javelin", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_javelin", + "source_content_type": 38, + "source_object_key": "srd-2024_wereboar_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10800 +}, +{ + "fields": { + "anchor": "Hand Crossbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_hand-crossbow", + "source_content_type": 38, + "source_object_key": "srd-2024_wererat_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10801 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_weretiger_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10802 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 38, + "source_object_key": "srd-2024_werewolf_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10803 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 38, + "source_object_key": "srd-2024_young-brass-dragon_multiattack" + }, + "model": "api_v2.crossreference", + "pk": 10804 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_black-pudding_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 10805 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 39, + "source_object_key": "srd-2024_chuul_sense-magic" + }, + "model": "api_v2.crossreference", + "pk": 10806 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_djinni_wishes" + }, + "model": "api_v2.crossreference", + "pk": 10807 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_efreeti_wishes" + }, + "model": "api_v2.crossreference", + "pk": 10808 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 10809 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-frog_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 10810 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_giant-toad_standing-leap" + }, + "model": "api_v2.crossreference", + "pk": 10811 +}, +{ + "fields": { + "anchor": "Mending", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mending", + "source_content_type": 39, + "source_object_key": "srd-2024_gray-ooze_corrosive-form" + }, + "model": "api_v2.crossreference", + "pk": 10812 +}, +{ + "fields": { + "anchor": "Dispel Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-evil-and-good", + "source_content_type": 39, + "source_object_key": "srd-2024_guardian-naga_celestial-restoration" + }, + "model": "api_v2.crossreference", + "pk": 10813 +}, +{ + "fields": { + "anchor": "Holy Water", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_holy-water", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 10814 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 39, + "source_object_key": "srd-2024_lemure_hellish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 10815 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_lion_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 10816 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 39, + "source_object_key": "srd-2024_mummy-lord_undead-restoration" + }, + "model": "api_v2.crossreference", + "pk": 10817 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 39, + "source_object_key": "srd-2024_saber-toothed-tiger_running-leap" + }, + "model": "api_v2.crossreference", + "pk": 10818 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 39, + "source_object_key": "srd-2024_spirit-naga_fiendish-restoration" + }, + "model": "api_v2.crossreference", + "pk": 10819 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-bats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10820 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-crawling-claws_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10821 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-insects_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10822 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-piranhas_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10823 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-rats_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10824 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-ravens_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10825 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 39, + "source_object_key": "srd-2024_swarm-of-venomous-snakes_swarm" + }, + "model": "api_v2.crossreference", + "pk": 10826 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 39, + "source_object_key": "srd-2024_tarrasque_reflective-carapace" + }, + "model": "api_v2.crossreference", + "pk": 10827 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10828 +}, +{ + "fields": { + "anchor": "Path of the Berserker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_path-of-the-berserker", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_barbarian-subclass" + }, + "model": "api_v2.crossreference", + "pk": 10829 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 10830 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10831 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10832 +}, +{ + "fields": { + "anchor": "Greataxe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greataxe", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10833 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10834 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10835 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10836 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10837 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike" + }, + "model": "api_v2.crossreference", + "pk": 10838 +}, +{ + "fields": { + "anchor": "Brutal Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_brutal-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_improved-brutal-strike-enhanced" + }, + "model": "api_v2.crossreference", + "pk": 10839 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_instinctive-pounce" + }, + "model": "api_v2.crossreference", + "pk": 10840 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_persistent-rage" + }, + "model": "api_v2.crossreference", + "pk": 10841 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_primal-knowledge" + }, + "model": "api_v2.crossreference", + "pk": 10842 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 10843 +}, +{ + "fields": { + "anchor": "Rages", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rages", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_rage" + }, + "model": "api_v2.crossreference", + "pk": 10844 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_relentless-rage" + }, + "model": "api_v2.crossreference", + "pk": 10845 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 10846 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery-count", + "source_content_type": 35, + "source_object_key": "srd-2024_barbarian_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 10847 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10848 +}, +{ + "fields": { + "anchor": "College of Lore", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_college-of-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 10849 +}, +{ + "fields": { + "anchor": "Bardic Die", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-die", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_bardic-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 10850 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10851 +}, +{ + "fields": { + "anchor": "Entertainer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_entertainers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10852 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10853 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10854 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10855 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10856 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10857 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_font-of-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 10858 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_jack-of-all-trades" + }, + "model": "api_v2.crossreference", + "pk": 10859 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 10860 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 10861 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_magical-secrets" + }, + "model": "api_v2.crossreference", + "pk": 10862 +}, +{ + "fields": { + "anchor": "Bard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10863 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10864 +}, +{ + "fields": { + "anchor": "Color Spray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_color-spray", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10865 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10866 +}, +{ + "fields": { + "anchor": "Dissonant Whispers", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dissonant-whispers", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10867 +}, +{ + "fields": { + "anchor": "Healing Word", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_healing-word", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10868 +}, +{ + "fields": { + "anchor": "Vicious Mockery", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_vicious-mockery", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10869 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10870 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_superior-inspiration" + }, + "model": "api_v2.crossreference", + "pk": 10871 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 10872 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 10873 +}, +{ + "fields": { + "anchor": "Power Word Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-heal", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 10874 +}, +{ + "fields": { + "anchor": "Power Word Kill", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_power-word-kill", + "source_content_type": 35, + "source_object_key": "srd-2024_bard_words-of-creation" + }, + "model": "api_v2.crossreference", + "pk": 10875 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10876 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 10877 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 10878 +}, +{ + "fields": { + "anchor": "Life Domain", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_life-domain", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_cleric-subclasses" + }, + "model": "api_v2.crossreference", + "pk": 10879 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10880 +}, +{ + "fields": { + "anchor": "Chain Shirt", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-shirt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10881 +}, +{ + "fields": { + "anchor": "Mace", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_mace", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10882 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10883 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10884 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10885 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10886 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_divine-order" + }, + "model": "api_v2.crossreference", + "pk": 10887 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10888 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10889 +}, +{ + "fields": { + "anchor": "Divine Intervention", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_divine-intervention", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 10890 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_greater-divine-intervention" + }, + "model": "api_v2.crossreference", + "pk": 10891 +}, +{ + "fields": { + "anchor": "Blessed Strikes", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_blessed-strikes", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 10892 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_improved-blessed-strikes" + }, + "model": "api_v2.crossreference", + "pk": 10893 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 10894 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 10895 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_preserve-life" + }, + "model": "api_v2.crossreference", + "pk": 10896 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_life-domain_supreme-healing" + }, + "model": "api_v2.crossreference", + "pk": 10897 +}, +{ + "fields": { + "anchor": "Cleric Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_cleric-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10898 +}, +{ + "fields": { + "anchor": "Bless", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_bless", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10899 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10900 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10901 +}, +{ + "fields": { + "anchor": "Guiding Bolt", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guiding-bolt", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10902 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10903 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10904 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10905 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10906 +}, +{ + "fields": { + "anchor": "Thaumaturgy", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_thaumaturgy", + "source_content_type": 35, + "source_object_key": "srd-2024_cleric_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10907 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_cutting-words" + }, + "model": "api_v2.crossreference", + "pk": 10908 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 10909 +}, +{ + "fields": { + "anchor": "Bard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_bard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 10910 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 10911 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 10912 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_magical-discoveries" + }, + "model": "api_v2.crossreference", + "pk": 10913 +}, +{ + "fields": { + "anchor": "Bardic Inspiration", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_bard_bardic-inspiration", + "source_content_type": 35, + "source_object_key": "srd-2024_college-of-lore_peerless-skill" + }, + "model": "api_v2.crossreference", + "pk": 10914 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10915 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_archdruid" + }, + "model": "api_v2.crossreference", + "pk": 10916 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_beast-spells" + }, + "model": "api_v2.crossreference", + "pk": 10917 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 10918 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_lands-aid" + }, + "model": "api_v2.crossreference", + "pk": 10919 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natural-recovery" + }, + "model": "api_v2.crossreference", + "pk": 10920 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-sanctuary" + }, + "model": "api_v2.crossreference", + "pk": 10921 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_circle-of-the-land_natures-ward" + }, + "model": "api_v2.crossreference", + "pk": 10922 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10923 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10924 +}, +{ + "fields": { + "anchor": "Herbalism Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_herbalism-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10925 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10926 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10927 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10928 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10929 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10930 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10931 +}, +{ + "fields": { + "anchor": "Circle of the Land", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_circle-of-the-land", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druid-subclass" + }, + "model": "api_v2.crossreference", + "pk": 10932 +}, +{ + "fields": { + "anchor": "Speak with Animals", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-animals", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_druidic" + }, + "model": "api_v2.crossreference", + "pk": 10933 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 10934 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10935 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10936 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10937 +}, +{ + "fields": { + "anchor": "Elemental Fury", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_elemental-fury", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_improved-elemental-fury" + }, + "model": "api_v2.crossreference", + "pk": 10938 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_primal-order" + }, + "model": "api_v2.crossreference", + "pk": 10939 +}, +{ + "fields": { + "anchor": "Druid Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druid-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10940 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10941 +}, +{ + "fields": { + "anchor": "Animal Friendship", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_animal-friendship", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10942 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10943 +}, +{ + "fields": { + "anchor": "Druidcraft", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_druidcraft", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10944 +}, +{ + "fields": { + "anchor": "Faerie Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_faerie-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10945 +}, +{ + "fields": { + "anchor": "Produce Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_produce-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 10946 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 10947 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-companion" + }, + "model": "api_v2.crossreference", + "pk": 10948 +}, +{ + "fields": { + "anchor": "Wild Shape", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_wild-shape", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-resurgence" + }, + "model": "api_v2.crossreference", + "pk": 10949 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 10950 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 10951 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_druid_wild-shape" + }, + "model": "api_v2.crossreference", + "pk": 10952 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10953 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_champion_additional-fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 10954 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10955 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10956 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10957 +}, +{ + "fields": { + "anchor": "Flail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_flail", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10958 +}, +{ + "fields": { + "anchor": "Greatsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_greatsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10959 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10960 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10961 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10962 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10963 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10964 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10965 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10966 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10967 +}, +{ + "fields": { + "anchor": "Boon of Combat Prowess", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-combat-prowess", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10968 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10969 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10970 +}, +{ + "fields": { + "anchor": "Champion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_champion", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighter-subclass" + }, + "model": "api_v2.crossreference", + "pk": 10971 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 10972 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 10973 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_second-wind" + }, + "model": "api_v2.crossreference", + "pk": 10974 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 10975 +}, +{ + "fields": { + "anchor": "Sap", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_sap-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 10976 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-master" + }, + "model": "api_v2.crossreference", + "pk": 10977 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-mind" + }, + "model": "api_v2.crossreference", + "pk": 10978 +}, +{ + "fields": { + "anchor": "Second Wind", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_second-wind", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_tactical-shift" + }, + "model": "api_v2.crossreference", + "pk": 10979 +}, +{ + "fields": { + "anchor": "Weapon Mastery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_weapon-mastery", + "source_content_type": 35, + "source_object_key": "srd-2024_fighter_weapon-mastery" + }, + "model": "api_v2.crossreference", + "pk": 10980 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 10981 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_acrobatic-movement" + }, + "model": "api_v2.crossreference", + "pk": 10982 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10983 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10984 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10985 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10986 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 10987 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-attacks" + }, + "model": "api_v2.crossreference", + "pk": 10988 +}, +{ + "fields": { + "anchor": "Deflect Attacks", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_deflect-attacks", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_deflect-energy" + }, + "model": "api_v2.crossreference", + "pk": 10989 +}, +{ + "fields": { + "anchor": "Boon of Irresistible Offense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-irresistible-offense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10990 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 10991 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 10992 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 10993 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_heightened-focus" + }, + "model": "api_v2.crossreference", + "pk": 10994 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 10995 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 10996 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts-dice", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_martial-arts" + }, + "model": "api_v2.crossreference", + "pk": 10997 +}, +{ + "fields": { + "anchor": "Warrior of the Open Hand", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warrior-of-the-open-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monk-subclass" + }, + "model": "api_v2.crossreference", + "pk": 10998 +}, +{ + "fields": { + "anchor": "Defense", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_defense", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 10999 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 11000 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_monks-focus" + }, + "model": "api_v2.crossreference", + "pk": 11001 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 11002 +}, +{ + "fields": { + "anchor": "Uncanny Metabolism", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_uncanny-metabolism", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_perfect-focus" + }, + "model": "api_v2.crossreference", + "pk": 11003 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_superior-defense" + }, + "model": "api_v2.crossreference", + "pk": 11004 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-defense" + }, + "model": "api_v2.crossreference", + "pk": 11005 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_unarmored-movement" + }, + "model": "api_v2.crossreference", + "pk": 11006 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 11007 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_uncanny-metabolism" + }, + "model": "api_v2.crossreference", + "pk": 11008 +}, +{ + "fields": { + "anchor": "Focus Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_focus-points", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 11009 +}, +{ + "fields": { + "anchor": "Monk", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_monk", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_quivering-palm" + }, + "model": "api_v2.crossreference", + "pk": 11010 +}, +{ + "fields": { + "anchor": "Martial Arts", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_monk_martial-arts", + "source_content_type": 35, + "source_object_key": "srd-2024_monk_warrior-of-the-open-hand_wholeness-of-body" + }, + "model": "api_v2.crossreference", + "pk": 11011 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11012 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 11013 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_abjure-foes" + }, + "model": "api_v2.crossreference", + "pk": 11014 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-expansion" + }, + "model": "api_v2.crossreference", + "pk": 11015 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 11016 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_aura-of-courage" + }, + "model": "api_v2.crossreference", + "pk": 11017 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 11018 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_channel-divinity" + }, + "model": "api_v2.crossreference", + "pk": 11019 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11020 +}, +{ + "fields": { + "anchor": "Chain Mail", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_chain-mail", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11021 +}, +{ + "fields": { + "anchor": "Longsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longsword", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11022 +}, +{ + "fields": { + "anchor": "Priest's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_priests-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11023 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11024 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11025 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11026 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11027 +}, +{ + "fields": { + "anchor": "Find Steed", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-steed", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_faithful-steed" + }, + "model": "api_v2.crossreference", + "pk": 11028 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11029 +}, +{ + "fields": { + "anchor": "Cleric", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_cleric", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11030 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11031 +}, +{ + "fields": { + "anchor": "Sacred Flame", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sacred-flame", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11032 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 11033 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_aura-of-devotion" + }, + "model": "api_v2.crossreference", + "pk": 11034 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 11035 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_holy-nimbus" + }, + "model": "api_v2.crossreference", + "pk": 11036 +}, +{ + "fields": { + "anchor": "Channel Divinity", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_cleric_channel-divinity", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_sacred-weapon" + }, + "model": "api_v2.crossreference", + "pk": 11037 +}, +{ + "fields": { + "anchor": "Aura of Protection", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_aura-of-protection", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 11038 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_smite-of-protection" + }, + "model": "api_v2.crossreference", + "pk": 11039 +}, +{ + "fields": { + "anchor": "Paladin", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_paladin", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11040 +}, +{ + "fields": { + "anchor": "Aid", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_aid", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11041 +}, +{ + "fields": { + "anchor": "Beacon of Hope", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_beacon-of-hope", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11042 +}, +{ + "fields": { + "anchor": "Commune", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_commune", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11043 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11044 +}, +{ + "fields": { + "anchor": "Flame Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flame-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11045 +}, +{ + "fields": { + "anchor": "Freedom of Movement", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_freedom-of-movement", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11046 +}, +{ + "fields": { + "anchor": "Guardian of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guardian-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11047 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11048 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11049 +}, +{ + "fields": { + "anchor": "Shield of Faith", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield-of-faith", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11050 +}, +{ + "fields": { + "anchor": "Zone of Truth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_zone-of-truth", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_oath-of-devotion_spells" + }, + "model": "api_v2.crossreference", + "pk": 11051 +}, +{ + "fields": { + "anchor": "Oath of Devotion", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_oath-of-devotion", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladin-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11052 +}, +{ + "fields": { + "anchor": "Divine Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divine-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_paladins-smite" + }, + "model": "api_v2.crossreference", + "pk": 11053 +}, +{ + "fields": { + "anchor": "Lay On Hands", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_lay-on-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_restoring-touch" + }, + "model": "api_v2.crossreference", + "pk": 11054 +}, +{ + "fields": { + "anchor": "Paladin Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_paladin_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11055 +}, +{ + "fields": { + "anchor": "Heroism", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heroism", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11056 +}, +{ + "fields": { + "anchor": "Searing Smite", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_searing-smite", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11057 +}, +{ + "fields": { + "anchor": "Symbol", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_symbol", + "source_content_type": 35, + "source_object_key": "srd-2024_paladin_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11058 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 11059 +}, +{ + "fields": { + "anchor": "Rage Damage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage-damage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 11060 +}, +{ + "fields": { + "anchor": "Reckless Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_reckless-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_frenzy" + }, + "model": "api_v2.crossreference", + "pk": 11061 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 11062 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_intimidating-presence" + }, + "model": "api_v2.crossreference", + "pk": 11063 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 11064 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_path-of-the-berserker_mindless-rage" + }, + "model": "api_v2.crossreference", + "pk": 11065 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11066 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11067 +}, +{ + "fields": { + "anchor": "Explorer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_explorers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11068 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11069 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11070 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11071 +}, +{ + "fields": { + "anchor": "Scimitar", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scimitar", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11072 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11073 +}, +{ + "fields": { + "anchor": "Studded Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_studded-leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11074 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11075 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11076 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11077 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_deft-explorer" + }, + "model": "api_v2.crossreference", + "pk": 11078 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11079 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11080 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11081 +}, +{ + "fields": { + "anchor": "Favored Enemy", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_favored-enemy-uses", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 11082 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 11083 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_favored-enemy" + }, + "model": "api_v2.crossreference", + "pk": 11084 +}, +{ + "fields": { + "anchor": "Fighting Style", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_fighter_fighting-style", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11085 +}, +{ + "fields": { + "anchor": "Druid", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_druid", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11086 +}, +{ + "fields": { + "anchor": "Guidance", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_guidance", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11087 +}, +{ + "fields": { + "anchor": "Starry Wisp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_starry-wisp", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_fighting-style" + }, + "model": "api_v2.crossreference", + "pk": 11088 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 11089 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_foe-slayer" + }, + "model": "api_v2.crossreference", + "pk": 11090 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_hunters-lore" + }, + "model": "api_v2.crossreference", + "pk": 11091 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_hunter_superior-hunters-prey" + }, + "model": "api_v2.crossreference", + "pk": 11092 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 11093 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_precise-hunter" + }, + "model": "api_v2.crossreference", + "pk": 11094 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_ranger-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11095 +}, +{ + "fields": { + "anchor": "Hunter", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_hunter", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 11096 +}, +{ + "fields": { + "anchor": "Hunter's Mark", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hunters-mark", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_relentless-hunter" + }, + "model": "api_v2.crossreference", + "pk": 11097 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11098 +}, +{ + "fields": { + "anchor": "Ranger Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_ranger_spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11099 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11100 +}, +{ + "fields": { + "anchor": "Ensnaring Strike", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ensnaring-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11101 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_ranger_tireless" + }, + "model": "api_v2.crossreference", + "pk": 11102 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11103 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11104 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11105 +}, +{ + "fields": { + "anchor": "Burglar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_burglars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11106 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11107 +}, +{ + "fields": { + "anchor": "Quiver", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quiver", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11108 +}, +{ + "fields": { + "anchor": "Shortbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortbow", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11109 +}, +{ + "fields": { + "anchor": "Shortsword", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_shortsword", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11110 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11111 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11112 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11113 +}, +{ + "fields": { + "anchor": "Poisoner's Kit", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_poisoners-kit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 11114 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 11115 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 11116 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 11117 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_devious-strikes" + }, + "model": "api_v2.crossreference", + "pk": 11118 +}, +{ + "fields": { + "anchor": "Boon of the Night Spirit", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-the-night-spirit", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11119 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11120 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 11121 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_improved-cunning-strike" + }, + "model": "api_v2.crossreference", + "pk": 11122 +}, +{ + "fields": { + "anchor": "Thief", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_thief", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_rogue-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11123 +}, +{ + "fields": { + "anchor": "Finesse", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_finesse-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 11124 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack-column-data", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_sneak-attack" + }, + "model": "api_v2.crossreference", + "pk": 11125 +}, +{ + "fields": { + "anchor": "Thieves' Tools", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_thieves-tools", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_fast-hands" + }, + "model": "api_v2.crossreference", + "pk": 11126 +}, +{ + "fields": { + "anchor": "Cunning Strike", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_cunning-strike", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_supreme-sneak" + }, + "model": "api_v2.crossreference", + "pk": 11127 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thief_use-magic-device" + }, + "model": "api_v2.crossreference", + "pk": 11128 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 35, + "source_object_key": "srd-2024_rogue_thieves-cant" + }, + "model": "api_v2.crossreference", + "pk": 11129 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11130 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 11131 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 11132 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_arcane-apotheosis" + }, + "model": "api_v2.crossreference", + "pk": 11133 +}, +{ + "fields": { + "anchor": "Dungeoneer's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dungeoneers-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11134 +}, +{ + "fields": { + "anchor": "Spear", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11135 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11136 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11137 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-resilience" + }, + "model": "api_v2.crossreference", + "pk": 11138 +}, +{ + "fields": { + "anchor": "Sorcerer", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_sorcerer", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11139 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11140 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11141 +}, +{ + "fields": { + "anchor": "Charm Monster", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-monster", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11142 +}, +{ + "fields": { + "anchor": "Chromatic Orb", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_chromatic-orb", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11143 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11144 +}, +{ + "fields": { + "anchor": "Dragon's Breath", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dragons-breath", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11145 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11146 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11147 +}, +{ + "fields": { + "anchor": "Legend Lore", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_legend-lore", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11148 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_draconic-spells" + }, + "model": "api_v2.crossreference", + "pk": 11149 +}, +{ + "fields": { + "anchor": "Summon Dragon", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_summon-dragon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-companion" + }, + "model": "api_v2.crossreference", + "pk": 11150 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 11151 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_draconic-sorcery_dragon-wings" + }, + "model": "api_v2.crossreference", + "pk": 11152 +}, +{ + "fields": { + "anchor": "Boon of Dimensional Travel", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-dimensional-travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11153 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11154 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11155 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 11156 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 11157 +}, +{ + "fields": { + "anchor": "Spell Slots", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_spell-slots", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_font-of-magic" + }, + "model": "api_v2.crossreference", + "pk": 11158 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 11159 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic" + }, + "model": "api_v2.crossreference", + "pk": 11160 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 11161 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 11162 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_metamagic-options" + }, + "model": "api_v2.crossreference", + "pk": 11163 +}, +{ + "fields": { + "anchor": "Draconic Sorcery", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_draconic-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerer-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11164 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcerous-restoration" + }, + "model": "api_v2.crossreference", + "pk": 11165 +}, +{ + "fields": { + "anchor": "Innate Sorcery", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_innate-sorcery", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 11166 +}, +{ + "fields": { + "anchor": "Metamagic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 11167 +}, +{ + "fields": { + "anchor": "Metamagic Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_metamagic-options", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 11168 +}, +{ + "fields": { + "anchor": "Sorcery Points", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcery-points", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_sorcery-incarnate" + }, + "model": "api_v2.crossreference", + "pk": 11169 +}, +{ + "fields": { + "anchor": "Sorcerer Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_sorcerer_sorcerer-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11170 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11171 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11172 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11173 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11174 +}, +{ + "fields": { + "anchor": "Shocking Grasp", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shocking-grasp", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11175 +}, +{ + "fields": { + "anchor": "Sorcerous Burst", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sorcerous-burst", + "source_content_type": 35, + "source_object_key": "srd-2024_sorcerer_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11176 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11177 +}, +{ + "fields": { + "anchor": "Contact Other Plane", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_contact-other-plane", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_contact-patron" + }, + "model": "api_v2.crossreference", + "pk": 11178 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_light-wp", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11179 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11180 +}, +{ + "fields": { + "anchor": "Leather Armor", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_leather-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11181 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11182 +}, +{ + "fields": { + "anchor": "Sickle", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_sickle", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11183 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11184 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11185 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11186 +}, +{ + "fields": { + "anchor": "Book", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_book", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11187 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11188 +}, +{ + "fields": { + "anchor": "Alter Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alter-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11189 +}, +{ + "fields": { + "anchor": "Arcane Eye", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-eye", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11190 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11191 +}, +{ + "fields": { + "anchor": "Disguise Self", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disguise-self", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11192 +}, +{ + "fields": { + "anchor": "False Life", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_false-life", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11193 +}, +{ + "fields": { + "anchor": "Find Familiar", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_find-familiar", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11194 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11195 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11196 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11197 +}, +{ + "fields": { + "anchor": "Levitate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_levitate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11198 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11199 +}, +{ + "fields": { + "anchor": "Silent Image", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_silent-image", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11200 +}, +{ + "fields": { + "anchor": "Speak with Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_speak-with-dead", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11201 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11202 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocation-options" + }, + "model": "api_v2.crossreference", + "pk": 11203 +}, +{ + "fields": { + "anchor": "Eldritch Invocations", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-count", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 11204 +}, +{ + "fields": { + "anchor": "Eldritch Invocation Options", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_eldritch-invocation-options", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-invocations" + }, + "model": "api_v2.crossreference", + "pk": 11205 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_eldritch-master" + }, + "model": "api_v2.crossreference", + "pk": 11206 +}, +{ + "fields": { + "anchor": "Boon of Fate", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-fate", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11207 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11208 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 11209 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_dark-ones-blessing" + }, + "model": "api_v2.crossreference", + "pk": 11210 +}, +{ + "fields": { + "anchor": "Warlock", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_warlock", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11211 +}, +{ + "fields": { + "anchor": "Burning Hands", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_burning-hands", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11212 +}, +{ + "fields": { + "anchor": "Command", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_command", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11213 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11214 +}, +{ + "fields": { + "anchor": "Fire Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fire-shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11215 +}, +{ + "fields": { + "anchor": "Geas", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_geas", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11216 +}, +{ + "fields": { + "anchor": "Insect Plague", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_insect-plague", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11217 +}, +{ + "fields": { + "anchor": "Scorching Ray", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_scorching-ray", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11218 +}, +{ + "fields": { + "anchor": "Shield", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_shield", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11219 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11220 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11221 +}, +{ + "fields": { + "anchor": "Wall of Fire", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-fire", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_fiend-spells" + }, + "model": "api_v2.crossreference", + "pk": 11222 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_fiend-patron_hurl-through-hell" + }, + "model": "api_v2.crossreference", + "pk": 11223 +}, +{ + "fields": { + "anchor": "Pact Magic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_pact-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_magical-cunning" + }, + "model": "api_v2.crossreference", + "pk": 11224 +}, +{ + "fields": { + "anchor": "Slot Level", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_slot-level", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11225 +}, +{ + "fields": { + "anchor": "Warlock Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_warlock_warlock-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11226 +}, +{ + "fields": { + "anchor": "Charm Person", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_charm-person", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11227 +}, +{ + "fields": { + "anchor": "Eldritch Blast", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_eldritch-blast", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11228 +}, +{ + "fields": { + "anchor": "Hex", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hex", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11229 +}, +{ + "fields": { + "anchor": "Prestidigitation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_prestidigitation", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_pact-magic" + }, + "model": "api_v2.crossreference", + "pk": 11230 +}, +{ + "fields": { + "anchor": "Fiend Patron", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_fiend-patron", + "source_content_type": 35, + "source_object_key": "srd-2024_warlock_warlock-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11231 +}, +{ + "fields": { + "anchor": "Ability Score Improvement", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_ability-score-improvement", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_ability-score-improvement" + }, + "model": "api_v2.crossreference", + "pk": 11232 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11233 +}, +{ + "fields": { + "anchor": "Robe", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_robe", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11234 +}, +{ + "fields": { + "anchor": "Scholar's Pack", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_scholars-pack", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11235 +}, +{ + "fields": { + "anchor": "Scholar", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_scholar", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11236 +}, +{ + "fields": { + "anchor": "Skill Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_skill-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11237 +}, +{ + "fields": { + "anchor": "Saving Throw Proficiencies", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_proficiency_saving-throw-proficiencies", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_core-traits" + }, + "model": "api_v2.crossreference", + "pk": 11238 +}, +{ + "fields": { + "anchor": "Boon of Spell Recall", + "document": "srd-2024", + "reference_content_type": 46, + "reference_object_key": "srd-2024_boon-of-spell-recall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11239 +}, +{ + "fields": { + "anchor": "Epic Boon", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_epic-boon", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_epic-boon" + }, + "model": "api_v2.crossreference", + "pk": 11240 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_empowered-evocation" + }, + "model": "api_v2.crossreference", + "pk": 11241 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_evocation-savant" + }, + "model": "api_v2.crossreference", + "pk": 11242 +}, +{ + "fields": { + "anchor": "Wizard", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_wizard", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 11243 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_evoker_overchannel" + }, + "model": "api_v2.crossreference", + "pk": 11244 +}, +{ + "fields": { + "anchor": "Spell Scroll", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_spell-scroll", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11245 +}, +{ + "fields": { + "anchor": "Wizard Spell List", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_wizard_wizard-spell-list", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11246 +}, +{ + "fields": { + "anchor": "Detect Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_detect-magic", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11247 +}, +{ + "fields": { + "anchor": "Feather Fall", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_feather-fall", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11248 +}, +{ + "fields": { + "anchor": "Identify", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_identify", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11249 +}, +{ + "fields": { + "anchor": "Light", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_light", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11250 +}, +{ + "fields": { + "anchor": "Mage Armor", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-armor", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11251 +}, +{ + "fields": { + "anchor": "Mage Hand", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_mage-hand", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11252 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11253 +}, +{ + "fields": { + "anchor": "Ray of Frost", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_ray-of-frost", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11254 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_spellcasting" + }, + "model": "api_v2.crossreference", + "pk": 11255 +}, +{ + "fields": { + "anchor": "Evoker", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_evoker", + "source_content_type": 35, + "source_object_key": "srd-2024_wizard_wizard-subclass" + }, + "model": "api_v2.crossreference", + "pk": 11256 +}, +{ + "fields": { + "anchor": "Druidic", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_druid_druidic", + "source_content_type": 34, + "source_object_key": "srd-2024_circle-of-the-land" + }, + "model": "api_v2.crossreference", + "pk": 11257 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_champion" + }, + "model": "api_v2.crossreference", + "pk": 11258 +}, +{ + "fields": { + "anchor": "Rage", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_barbarian_rage", + "source_content_type": 34, + "source_object_key": "srd-2024_path-of-the-berserker" + }, + "model": "api_v2.crossreference", + "pk": 11259 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 34, + "source_object_key": "srd-2024_warrior-of-the-open-hand" + }, + "model": "api_v2.crossreference", + "pk": 11260 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_animal-shapes" + }, + "model": "api_v2.crossreference", + "pk": 11261 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_arcane-eye" + }, + "model": "api_v2.crossreference", + "pk": 11262 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 11263 +}, +{ + "fields": { + "anchor": "Heal", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_heal", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 11264 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_befuddlement" + }, + "model": "api_v2.crossreference", + "pk": 11265 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_calm-emotions" + }, + "model": "api_v2.crossreference", + "pk": 11266 +}, +{ + "fields": { + "anchor": "Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 11267 +}, +{ + "fields": { + "anchor": "See Invisibility", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_see-invisibility", + "source_content_type": 55, + "source_object_key": "srd-2024_clairvoyance" + }, + "model": "api_v2.crossreference", + "pk": 11268 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_cloudkill" + }, + "model": "api_v2.crossreference", + "pk": 11269 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_contact-other-plane" + }, + "model": "api_v2.crossreference", + "pk": 11270 +}, +{ + "fields": { + "anchor": "Water Breathing", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_water-breathing", + "source_content_type": 55, + "source_object_key": "srd-2024_contingency" + }, + "model": "api_v2.crossreference", + "pk": 11271 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_darkness" + }, + "model": "api_v2.crossreference", + "pk": 11272 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_daylight" + }, + "model": "api_v2.crossreference", + "pk": 11273 +}, +{ + "fields": { + "anchor": "Hallow", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_hallow", + "source_content_type": 55, + "source_object_key": "srd-2024_detect-evil-and-good" + }, + "model": "api_v2.crossreference", + "pk": 11274 +}, +{ + "fields": { + "anchor": "Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 11275 +}, +{ + "fields": { + "anchor": "True Resurrection", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_true-resurrection", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 11276 +}, +{ + "fields": { + "anchor": "Wall of Force", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wall-of-force", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 11277 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_disintegrate" + }, + "model": "api_v2.crossreference", + "pk": 11278 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_false-life" + }, + "model": "api_v2.crossreference", + "pk": 11279 +}, +{ + "fields": { + "anchor": "Alarm", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_alarm", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 11280 +}, +{ + "fields": { + "anchor": "Glyph of Warding", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_glyph-of-warding", + "source_content_type": 55, + "source_object_key": "srd-2024_find-traps" + }, + "model": "api_v2.crossreference", + "pk": 11281 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_flesh-to-stone" + }, + "model": "api_v2.crossreference", + "pk": 11282 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_fog-cloud" + }, + "model": "api_v2.crossreference", + "pk": 11283 +}, +{ + "fields": { + "anchor": "Gate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gate", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 11284 +}, +{ + "fields": { + "anchor": "Plane Shift", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_plane-shift", + "source_content_type": 55, + "source_object_key": "srd-2024_forbiddance" + }, + "model": "api_v2.crossreference", + "pk": 11285 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_foresight" + }, + "model": "api_v2.crossreference", + "pk": 11286 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 11287 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_gaseous-form" + }, + "model": "api_v2.crossreference", + "pk": 11288 +}, +{ + "fields": { + "anchor": "Travel", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_exploration_travel", + "source_content_type": 55, + "source_object_key": "srd-2024_gate" + }, + "model": "api_v2.crossreference", + "pk": 11289 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 11290 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 11291 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_geas" + }, + "model": "api_v2.crossreference", + "pk": 11292 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 55, + "source_object_key": "srd-2024_gentle-repose" + }, + "model": "api_v2.crossreference", + "pk": 11293 +}, +{ + "fields": { + "anchor": "Dancing Lights", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dancing-lights", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11294 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11295 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11296 +}, +{ + "fields": { + "anchor": "Magic Mouth", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-mouth", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11297 +}, +{ + "fields": { + "anchor": "Stinking Cloud", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_stinking-cloud", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11298 +}, +{ + "fields": { + "anchor": "Suggestion", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_suggestion", + "source_content_type": 55, + "source_object_key": "srd-2024_guards-and-wards" + }, + "model": "api_v2.crossreference", + "pk": 11299 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_heroes-feast" + }, + "model": "api_v2.crossreference", + "pk": 11300 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_heroism" + }, + "model": "api_v2.crossreference", + "pk": 11301 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 11302 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_imprisonment" + }, + "model": "api_v2.crossreference", + "pk": 11303 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_incendiary-cloud" + }, + "model": "api_v2.crossreference", + "pk": 11304 +}, +{ + "fields": { + "anchor": "Lock", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 11305 +}, +{ + "fields": { + "anchor": "Arcane Lock", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_arcane-lock", + "source_content_type": 55, + "source_object_key": "srd-2024_knock" + }, + "model": "api_v2.crossreference", + "pk": 11306 +}, +{ + "fields": { + "anchor": "Flesh to Stone", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_flesh-to-stone", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 11307 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_locate-creature" + }, + "model": "api_v2.crossreference", + "pk": 11308 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 11309 +}, +{ + "fields": { + "anchor": "Protection from Evil and Good", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_protection-from-evil-and-good", + "source_content_type": 55, + "source_object_key": "srd-2024_magic-jar" + }, + "model": "api_v2.crossreference", + "pk": 11310 +}, +{ + "fields": { + "anchor": "Wish", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_wish", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 11311 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_mind-blank" + }, + "model": "api_v2.crossreference", + "pk": 11312 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 11313 +}, +{ + "fields": { + "anchor": "Remove Curse", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_remove-curse", + "source_content_type": 55, + "source_object_key": "srd-2024_modify-memory" + }, + "model": "api_v2.crossreference", + "pk": 11314 +}, +{ + "fields": { + "anchor": "Polymorph", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_polymorph", + "source_content_type": 55, + "source_object_key": "srd-2024_moonbeam" + }, + "model": "api_v2.crossreference", + "pk": 11315 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_nondetection" + }, + "model": "api_v2.crossreference", + "pk": 11316 +}, +{ + "fields": { + "anchor": "Magic Circle", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-circle", + "source_content_type": 55, + "source_object_key": "srd-2024_planar-binding" + }, + "model": "api_v2.crossreference", + "pk": 11317 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_polymorph" + }, + "model": "api_v2.crossreference", + "pk": 11318 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 11319 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_private-sanctum" + }, + "model": "api_v2.crossreference", + "pk": 11320 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_raise-dead" + }, + "model": "api_v2.crossreference", + "pk": 11321 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_ray-of-enfeeblement" + }, + "model": "api_v2.crossreference", + "pk": 11322 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_resilient-sphere" + }, + "model": "api_v2.crossreference", + "pk": 11323 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 55, + "source_object_key": "srd-2024_resurrection" + }, + "model": "api_v2.crossreference", + "pk": 11324 +}, +{ + "fields": { + "anchor": "Divination", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_divination", + "source_content_type": 55, + "source_object_key": "srd-2024_sequester" + }, + "model": "api_v2.crossreference", + "pk": 11325 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_shapechange" + }, + "model": "api_v2.crossreference", + "pk": 11326 +}, +{ + "fields": { + "anchor": "Magic Missile", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_magic-missile", + "source_content_type": 55, + "source_object_key": "srd-2024_shield" + }, + "model": "api_v2.crossreference", + "pk": 11327 +}, +{ + "fields": { + "anchor": "Club", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_club", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 11328 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 55, + "source_object_key": "srd-2024_shillelagh" + }, + "model": "api_v2.crossreference", + "pk": 11329 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_silence" + }, + "model": "api_v2.crossreference", + "pk": 11330 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_sleep" + }, + "model": "api_v2.crossreference", + "pk": 11331 +}, +{ + "fields": { + "anchor": "Gust of Wind", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_gust-of-wind", + "source_content_type": 55, + "source_object_key": "srd-2024_stinking-cloud" + }, + "model": "api_v2.crossreference", + "pk": 11332 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_sunburst" + }, + "model": "api_v2.crossreference", + "pk": 11333 +}, +{ + "fields": { + "anchor": "Fear", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fear", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 11334 +}, +{ + "fields": { + "anchor": "Sleep", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_sleep", + "source_content_type": 55, + "source_object_key": "srd-2024_symbol" + }, + "model": "api_v2.crossreference", + "pk": 11335 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 55, + "source_object_key": "srd-2024_tiny-hut" + }, + "model": "api_v2.crossreference", + "pk": 11336 +}, +{ + "fields": { + "anchor": "Temporary Hit Points", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_temporary-hit-points", + "source_content_type": 55, + "source_object_key": "srd-2024_true-polymorph" + }, + "model": "api_v2.crossreference", + "pk": 11337 +}, +{ + "fields": { + "anchor": "Disintegrate", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_disintegrate", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 11338 +}, +{ + "fields": { + "anchor": "Dispel Magic", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_dispel-magic", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-force" + }, + "model": "api_v2.crossreference", + "pk": 11339 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-ice" + }, + "model": "api_v2.crossreference", + "pk": 11340 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wall-of-stone" + }, + "model": "api_v2.crossreference", + "pk": 11341 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 11342 +}, +{ + "fields": { + "anchor": "Immunity", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_immunity", + "source_content_type": 55, + "source_object_key": "srd-2024_wind-walk" + }, + "model": "api_v2.crossreference", + "pk": 11343 +}, +{ + "fields": { + "anchor": "Greater Restoration", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_greater-restoration", + "source_content_type": 55, + "source_object_key": "srd-2024_wish" + }, + "model": "api_v2.crossreference", + "pk": 11344 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10602" + }, + "model": "api_v2.crossreference", + "pk": 11345 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 56, + "source_object_key": "10603" + }, + "model": "api_v2.crossreference", + "pk": 11346 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 60, + "source_object_key": "srd-2024_d20-tests" + }, + "model": "api_v2.crossreference", + "pk": 11347 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 60, + "source_object_key": "srd-2024_proficiency" + }, + "model": "api_v2.crossreference", + "pk": 11348 +}, +{ + "fields": { + "anchor": "Push", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_push-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 11349 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 11350 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_bonus-dont-stack" + }, + "model": "api_v2.crossreference", + "pk": 11351 +}, +{ + "fields": { + "anchor": "Caltrops", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_caltrops", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 11352 +}, +{ + "fields": { + "anchor": "Ladder", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_ladder", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 11353 +}, +{ + "fields": { + "anchor": "Quarterstaff", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_quarterstaff", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 11354 +}, +{ + "fields": { + "anchor": "Torch", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_torch", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_adventuring-equipment" + }, + "model": "api_v2.crossreference", + "pk": 11355 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 11356 +}, +{ + "fields": { + "anchor": "Movement and Position", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_combat_movement-and-position", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_the-order-of-combat" + }, + "model": "api_v2.crossreference", + "pk": 11357 +}, +{ + "fields": { + "anchor": "D20 Tests", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_d20-tests", + "source_content_type": 59, + "source_object_key": "srd-2024_the-six-abilities_ability-modifiers" + }, + "model": "api_v2.crossreference", + "pk": 11358 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_saving-throw" + }, + "model": "api_v2.crossreference", + "pk": 11359 +}, +{ + "fields": { + "anchor": "Jump", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_jump", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 11360 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_skill-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 11361 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_social-interaction_ability-checks" + }, + "model": "api_v2.crossreference", + "pk": 11362 +}, +{ + "fields": { + "anchor": "Darkness", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkness", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 11363 +}, +{ + "fields": { + "anchor": "Darkvision", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_darkvision", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_vision-and-light" + }, + "model": "api_v2.crossreference", + "pk": 11364 +}, +{ + "fields": { + "anchor": "Creation", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_creation", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 11365 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 11366 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_d20-tests_attack-rolls" + }, + "model": "api_v2.crossreference", + "pk": 11367 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_saving-throw-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 11368 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_interacting-with-objects" + }, + "model": "api_v2.crossreference", + "pk": 11369 +}, +{ + "fields": { + "anchor": "Fly", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fly", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_movement-and-position" + }, + "model": "api_v2.crossreference", + "pk": 11370 +}, +{ + "fields": { + "anchor": "Blowgun", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_blowgun", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_damage-rolls" + }, + "model": "api_v2.crossreference", + "pk": 11371 +}, +{ + "fields": { + "anchor": "Proficiency", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_proficiency", + "source_content_type": 59, + "source_object_key": "srd-2024_proficiency_equipment-proficiencies" + }, + "model": "api_v2.crossreference", + "pk": 11372 +}, +{ + "fields": { + "anchor": "Dagger", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_dagger", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 11373 +}, +{ + "fields": { + "anchor": "Sneak Attack", + "document": "srd-2024", + "reference_content_type": 35, + "reference_object_key": "srd-2024_rogue_sneak-attack", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 11374 +}, +{ + "fields": { + "anchor": "Rogue", + "document": "srd-2024", + "reference_content_type": 34, + "reference_object_key": "srd-2024_rogue", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_critical-hits" + }, + "model": "api_v2.crossreference", + "pk": 11375 +}, +{ + "fields": { + "anchor": "Fireball", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_fireball", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_saving-throws-and-damage" + }, + "model": "api_v2.crossreference", + "pk": 11376 +}, +{ + "fields": { + "anchor": "Slow", + "document": "srd-2024", + "reference_content_type": 64, + "reference_object_key": "srd-2024_slow-mastery", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 11377 +}, +{ + "fields": { + "anchor": "Combat", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_combat", + "source_content_type": 59, + "source_object_key": "srd-2024_exploration_travel" + }, + "model": "api_v2.crossreference", + "pk": 11378 +}, +{ + "fields": { + "anchor": "Longbow", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_longbow", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_ranged-attacks" + }, + "model": "api_v2.crossreference", + "pk": 11379 +}, +{ + "fields": { + "anchor": "Teleport", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_teleport", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_melee-attacks" + }, + "model": "api_v2.crossreference", + "pk": 11380 +}, +{ + "fields": { + "anchor": "Potion of Healing", + "document": "srd-2024", + "reference_content_type": 50, + "reference_object_key": "srd-2024_potion-of-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 11381 +}, +{ + "fields": { + "anchor": "Cure Wounds", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_cure-wounds", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_healing" + }, + "model": "api_v2.crossreference", + "pk": 11382 +}, +{ + "fields": { + "anchor": "Damage and Healing", + "document": "srd-2024", + "reference_content_type": 60, + "reference_object_key": "srd-2024_damage-and-healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 11383 +}, +{ + "fields": { + "anchor": "Healing", + "document": "srd-2024", + "reference_content_type": 59, + "reference_object_key": "srd-2024_damage-and-healing_healing", + "source_content_type": 59, + "source_object_key": "srd-2024_combat_underwater-combat" + }, + "model": "api_v2.crossreference", + "pk": 11384 +}, +{ + "fields": { + "anchor": "Raise Dead", + "document": "srd-2024", + "reference_content_type": 55, + "reference_object_key": "srd-2024_raise-dead", + "source_content_type": 59, + "source_object_key": "srd-2024_damage-and-healing_dropping-to-zero-hit-points" + }, + "model": "api_v2.crossreference", + "pk": 11385 } ] diff --git a/scripts/crossreference/core.py b/scripts/crossreference/core.py index 1591dcb4..23467656 100644 --- a/scripts/crossreference/core.py +++ b/scripts/crossreference/core.py @@ -103,26 +103,26 @@ def build_object_url(content_type: ContentType, object_key: str) -> str: CHILD_CHILD_MODEL_NAMES = ["CreatureActionAttack"] # Models that can be mentioned in descriptions (reference targets for text-matching). +# CHILD_*, CHILD_CHILD_*, and any model with "Description" in the name are excluded (see get_reference_models_and_filters_for_document). REFERENCE_MODEL_NAMES = [ "Spell", "Item", "Condition", - "ConditionDescription", "Feat", "Rule", "RuleSet", "WeaponProperty", - "DamageTypeDescription", - "AbilityDescription", - "SkillDescription", - "AlignmentDescription", - "CreatureTypeDescription", "Language", "Environment", "Background", "Species", "CharacterClass", "ClassFeature", + "DamageType", + "Alignment", + "CreatureType", + "Ability", + "Skill", ] @@ -135,6 +135,7 @@ def get_reference_models_and_filters_for_document(doc): """ Return (model, filter_kwargs) for all api_v2 models that are in REFERENCE_MODEL_NAMES, have a name field, and belong to the given document. + Child and grandchild models (CHILD_*) and any model whose name includes "Description" are excluded as references. """ result = [] for model in apps.get_models(): @@ -142,6 +143,10 @@ def get_reference_models_and_filters_for_document(doc): continue if model.__name__ not in REFERENCE_MODEL_NAMES: continue + if model.__name__ in CHILD_MODEL_NAMES or model.__name__ in CHILD_CHILD_MODEL_NAMES: + continue + if "Description" in model.__name__: + continue if not _model_has_name(model): continue @@ -204,7 +209,6 @@ def get_source_models_and_filters_for_document(doc, model_name: str | None = Non """ Return a list of (model, filter_kwargs) for all api_v2 models that have HasDescription (desc field) and belong to the given document. - doc: Document instance. model_name: If set, only include this model (e.g. 'Spell', 'Item'). @@ -510,6 +514,7 @@ def identify_crossreferences_from_text( src_url = build_object_url(src_ct, pk_str) key_src = (src_ct.id, pk_str) seen_refs = set() + seen_ref_names_per_source: dict[tuple[int, str], set[str]] = {} parents_to_skip = _get_parent_keys_to_skip(obj) for ref_ct, ref_key, ref_name, pattern in ref_candidates: @@ -541,6 +546,13 @@ def identify_crossreferences_from_text( key_ref = (ref_ct.id, ref_key) if (key_src, key_ref) in seen_refs: continue + # Only one link per distinct reference name per source (e.g. one "Proficiency" from acid) + ref_name_lower = ref_name.lower() + if key_src not in seen_ref_names_per_source: + seen_ref_names_per_source[key_src] = set() + if ref_name_lower in seen_ref_names_per_source[key_src]: + continue + seen_ref_names_per_source[key_src].add(ref_name_lower) seen_refs.add((key_src, key_ref)) ref_url = build_object_url(ref_ct, ref_key) diff --git a/server/vector_index.pkl b/server/vector_index.pkl deleted file mode 100644 index e87fc063f6e703e1ab48d444bbaac2b063643200..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12093162 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

iaxH}$q^IOHVvyzP9;`>BbJgrv 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 ^;tB{f#iO)Xn7cO1%sY z&Vh%<>|G?t#?SuiYdm}{i-Y4_Gi_AaM6Pq~ z3N2PZ|64{?`Ub?t|#+;E`9IDwdGjjPc_1h(%*Odt;j+dW63*h_Xp)7l8?-Ou<%s- z9o$I1M{LkOm-&3{vi2B~ugU`jhpng37Y-Kd3zszk3%Li#smVh2JemU%FMO7ySe$&& zW%SdG42T`SfOghc8>c^pzL_I(UEds0N96rJRr^2N2M+>FVc~@)k%@^IveddbH30c==O-L{9 z^*jmvu4e{TewNQ7UD)qdE z?mwoV#~9Cf^t%`RKS4YHppSDI!zba>-CQ?||2{Jr`@uM3lgyp8<-5l}C}UJr(jpzQ3(CMS zHPCSmZApvdV@p~@c9P#NV;OZw{gEE6@U4tf#5#Q=z5s*Ue`~pQMpKkG4E( zF7bD)+whFC<;~ax=2zy1Ug?7V^8d$p&0;LdnLgx&ec%H$e3ACt4-tJ5r(6e+j{1^_ zYrBn+Cv%0hT6w--1)c9?Y(DGNvv0e@Fa4Ywn9m;E)0Z)5^S%f#Uqn8ihPI=o;(yZ5 zA+#0xg?8#)@;C&;; zx;AYz^(MCry}krLGR7gudOapJlB?1e58aZNXoU_X4YjS#D;O5t%bI5LL|NC2O;z^F z+@`T{d`vMJS(xXxR@K8`h95UE#zk-u6Y_D3Jz`UUN6 z)(5pmt_%9?C+V+W<9P*QhFEJJ&vTBX^MTOiA!JyLHRcyneO9VvY>mQk0{FKzx z#%3o+Y8-mu?yGe`xi53cS=Tp?O8lv;$0iL#Ha!3BFy`i=6`LK zd%vam4hL5D-WW4AN}d@ht$$1#PxfZ)1K|fW^I3e!neNRvuAE-Uxb-8RJ?c8QJeb$L z@&``t%Kc#7cacl$1+1HMU#j$JgN01Vp1vRb0B$ap!`X^7QU46TA90!Efn{o z1Hq)^>Bh-h=0Bf4)QLv>fq%q&%*Vy|Pj0~6o4i{B?Pha-&b(4b%$bVoo(r3^`krHM zsUb55_QWJ?%H#@nzRGp3oArcO*3Nwa9{UW`-ssDl=+*iBKZJJMGmh_}8`8HeyeMVd zy%?coYt!mHOZ*4@sM3FsR?2ccy~GapPdInyEH*e_^ZTX0AogYr=}Ktg`k*yrGx_Y^ zSm(DrbMo2J?uFcq_tHI4YXx|#GKhvLi%wd~DSNO6UG_ekKAMSAyQGu0 zyR_Nn4`Z|SeWD-A;?<1VI%DzIT21$$+qZq~&79TmzP+$h*s4bQo4lp<0%E8Aiid6K zoqnkH#+)l?*G?P%x;AYNVNK*@XeV$9ddve)j$o|2Gv~-g<{O`{kzW&kxfOZ_ z$5+`$bhVU|(ncn)uO4I`SsSd^h14uq_gBWJ+Ra8aHCZ1#nt3W;$qT7BVtZ=6TwgJM zbstdT6zc)a+nO72jo)=x&$oO9-iYhQt*+0TQ@o!3U4Lz%AJ@&Tdq0eO-$lN=a!qI2 z|0DOs=g>wr;&130pCk5B{FSEKKY6Ns%esc^3EKZR`E5VieG?w46HoBn7~8no=Rv&A z??-U$35d`6VYuk{C;eeIHj*IF1cUH zdRub=bGiNw+Bauue02@?yh~rb_-|i$VNOL{&<7m@{Z>q*UFPT6Kdu?iMK)XyD4$2! zxjXdSA0L@^kiC=ZFWsfuTkjqrYkJ;7zc$#JKE}Zlbm=(0p94R>#(ldnuSUEm z{f=N@qj*_flrci7C#7vEV};lka|7y*IGUJ29EpEo%wRmGPa+>&TQSzsR@Carnpv-d zzS@b=&|(Pk=X#!JKAS5x#&QkbXDzu;*g7t4zP`S3t+mhY-}Cv+yJ8=t-Tl+K4u0&; z_uY8Sfsf*AbRc*kJ}Pq=e_~3A?hb?&~ zwvC0JKBL}Tg>hT>$j4Ro-WX0jGG_sa+kJ`lwD;!MTpu%Tc74dTS@ZrcGDho>&EL8| zZ*6#J4#G8X{is{;yUj^jPi!r*IoW#|$1QyR{`TlJ^0FH~$443S55eKt==6{H{~B;@ zul;C;Hn*q!l0R)>R`?SiOx}o5>V@(W8ydQXrsgD#kHsUVyJ}q}etGhe=J>T0)+Y>W zdT-2Oz9BKkEZUHMPb15o$&|WC_fMMVF(+wl_Y7#aY0oMzIhS^=-M$eSy&m3mL^jRy zzY3k!$Aqo42R6PMT(`&Exy+Oqh- z+BEIBe32*Gw)+^1e9*?}rz*43T>R0_Nmuub9s*x{&XxAgTAmHy*%0vO6VS6G*t|co zb_Vjb4KmsYd!=J3N6AU5;~8^w+4#<}s;`l$tm&6)cCMjl+iq^I?3uX~?U^<@_^HhF z*{;H--}i1;J7?8(Blj0(t;q97#Z=chFXg}Ztgpe>PoPJ?V&3|zKC65@ytxQG?z%NP z3oYOLH^wP5(Vy6v_!hym`dBV@MICa!<|raR+6eW;^SIiQ1leT})JR9-1UQWa7a_)2BMQTD?ktgfq)Tze@Ky$`cVmn>d*6T}r(ZyGtFfo3+O~FUzE1jjWIXYP1FurS4N4~t7YiWNr_h`SD z@?Cpi&fomC{=a(z%$pcDd3LBiRWR&9KDRKgo#3tdC5G(@FTcJIc{t>KuI(~;d8SQ2 zm21T`_jRj>J58&6C;i|RjC~*aTWg0Zujez1_oZFegFR>AbI7UB=+hted<6HV+`-&; z>kHl?SFOm)kzBjqB*qWFmyHEGnZwCkzkMHMo9`!JSI(rJMm&$4oAYbL?~>Q*xx6-i zA+KLS{^WP^eDb-p<6=P8AB@-aNy77TOG-{4jHKed6+6_#K&DK)dcqvWD(f_>tNn zV;p^HYxA>Cy|M`&pm(dDkH`JS{##Bbcf)wBneog@>xQgbn!7o6=Yrv~R zpvg;&XDM_$g7(HE>&I<`p3%;w%;my~04PpnmOJLT|8gJ{cW2g?-w%H$LRCx zjM062)+p@Vt6jUT+mpLS_D}1EE;G*_%w;3mZ{nrRte-<83~q%c&P6%Y=IFnOzmc~x zx2zwp4buO$M#Ow#;z8v?d9a4k*wt|^;Q!FGv7-)Oq_Ej9OzkdsS`8~4x zg%0Qpzo+)FJ+!cnsN9pM>|X$uDE}`byV|7lnbRKhVGYAc1M!*YH?^Y1`)jvUKGV19 z=UncY56-zq?>AiA2brG-Pu%1GIsNUerTMap==*HO)PinU zXK&4?{_tPm*Uq%v1g2cjot9=%*_*`|f0PwLkpleI44p9=(r` z)(8jVkEu8Dll8;2Vd7cjDsiDa+6J8tZ;aiuPL~|KF?xJ6*FdGE^_|-Gnb7kAbm7xo znKS(PHm?n6(=%<1_w@N+W4?DG?=NAi*4>Pp^bYK!VJxM*Cg)aPUlt$O`E;T$^E~ddD1V_CW;06V#Yq%Yj2*|8nb@Wu~XO^Ys{=8Q{Ov6_ZIN2 znfZ0%^Lmq!1MKKa@XE2*>wI)9V^){6FVbFJRu|0Yiuuwuw%ORi8k_8kpUFJ?bKf{* z>di^-rBnKp_l+>75neiu_`wT3I7I=30s}l33RHL`NOFwMW+8 zC+2Yc#;hA{v3d^rde)s}?D~0;DdpVUjWNEw(xmHcQGH&_wsqHo@>(qS@RhvUt`RD8SA>rDfj#k zUH%+%am=M%RK`l*F=KC}KhYiK%`v;i_Z&1yoMeu3zX_{jCG+n38rE)KO~2ZvQ@|GO zkn4EnC%?|Pu0_7?=H=P8>dirX_Swyz>FfCcKI6c%nGff`uQRWmY3uTh!OsrZWn>~U zXPzr^SLO|BzQ%qPZf5OL9w=YhZt*fPin%~*0IjvKc1gQRm$flF-edS|J?P8ae;c~) zxi`kEuQ84p*f;C0PHDnNV*EZA%RJFd-QYKk{F!?;SdV#6hiBaPE_29uqwB#;b$kwe zMTVq(aj9#l?i*6(zk>`v$miFwotH8$_imZbTF?tV zLf@P(Rxcyb;oy4YrObbnai+3U<`uFwsN9q}TX~=#rR`P6wY_KX-TCMTS*syNCEu64 zo_=ibN^CYqq8&C5Ztl~yaBEFnf8BLLr59Jzbq{!QGxJ}@YXh$RJoNd{0LI!Ip9LM7 zP8+B2K7;p_(4(F=^|ck{8klod&)d_kaaDB1n96x8Yx=O(sj27A^SAV6-r2mRYqs;6 zk>z!(wHND=t&?;P)*D~XOWqwoKi00VcrSWW>I(-)Tp1k%@ z+SOmN_QCx$_Th8ve7^k{`g$H3JjYm^>j&ku>v@$q%a`~f?-z5F&o2=hlu>Dc2(8N5 zEr(yRpW2?tq!_J#IE!nwKNt3aw&U>CTdMre9pJ)9_|~8IG5q$<2=EMZZ$O8)`ynS>>)h*ktp5|8j2_Bg<9+9w^>$@Yf55r8p5{IgZMx4#HkMrj zSv+*=YFUc>%TskfeU!d+881bj?MF;4{SIk23SPeeO^o@a-EF*L@67GHx2n^>>E^mu znX@;JcW;%s!#ALv=O-Qs&66uM7HI{k{o8>Hhta1w!%6gW2>+Wm+!*X$w;TEg zUG!(Q<=1ijfymhUL$E_!yD@#7J_!6o-gbjdH^YllVf?)Qw88Z+!=KokdRrQdtmjGW zs<WbQ*zR^FulcX`+Txz^=#&pl({Gqm+# z+F3O0y|hU@qs+!8i<{D+wTbz)a35nR?VIwW&c$bqeKWu3dbal28r6lc**vVi`J0U0 zeH}i#*8PvhWIm7dY}$6LJ{RJC=44HTc$Fk7+5c*P5$MMjEC2sxNbk> z;ou2i-iB?@E4I7D+fqkbnWy|N@i6&?FpU6mmmwCO|ueSeHWP-Gle$yLe`p*E&BS?blQavm+)GLdtc@I z79G*?KFBcqk4-CODE6f-Jqyl<=D|QQKe;C9tUhUvO3VtK_07dd&tkVOPrBwj#?&Xe zKAAXbHguA1){wduxsdPHpBQgj7gpMc#3s)nch(#k?>@^l((egm+dQN-D#j<~nmfTS z>FFApc-8|QyLQ`Z@60Em^{f2%N943S{z@a;&M{yUR<^n-_Ypg%sJ zO22=fNW6mHUCJxCTH2mqr#uYr9Is^-*xyp0Q=4G?5t=8DuK%T8i+}MKl|gYZ z@|QK-#KYD^rH0&`q4MZDi1DL%DUDnQac>h%x9iHdd|uU%p{v)yJ^SDD_g$A$r+?aQ zbzVHR*3$(NG#2@2TcXrXv4G6pMb{3pyT-MNN_=4yOq~r(A;M_eFGWa7@D{T z{4D6d1R4Am*Y?@~I{=R!1v5T57~cu3yqR(D-9+9TnHbMFFQvVIfJqySBL?L22r#=N z^Blu<3;4X?L&Uj^;VSfLN9Z)0@$W|;{pha~y0|X%_@jMc3r}K955uoU_!2Cy&nX4J zW2>~!%3|r$nu{|obIs6oQP(rH%Qw=$ys_?FeOZGsYPVb`?7(j`nP&?$ciqVP{JXot zcWmzd{BEA%Tg>A}eEu+VKLFY^(hwv<=8d(Rvqr(&X5 zs1H1wYjR$hc|(2MtA`Ogp+m#Khfna`8bp0seFJ06FT#uK7`NvKtlzDQcmKc~#zBWo zTaXjxu0K#>dA+|Rj?bZQ$6Bvvj$1twyMp8OV~<{SU_4?(Y@6#wVuk*C@IowhAEVE@ zu*O&%7K1NhtTX9LKVdO4r<_J+8qJ}!|2e1MdB_Ln657Z2lLv{vO4}5fD(6&UM{rtv z7Av$<;zO{(*g3hF%v*UI1K;G~K*kdL6Pt4h*lvxyXGVFhkk7yL9K(|t`}g|dFY&6E zyAl)Slk=+iHTzZZZpNuS5!)PV_G^f3`mcWi3r^)_ZcjcfWNgV%yPhYHe2$4SH+Lfb{>E6(qmBEJ+b@kI9^l$vAdBY@0t>i*5wFZazr9`t%lYUx zIG6Uck$B$y>#>*m zN#E|76mQ)he&P0DD*V5N>#pQ;7p@xv&7NUiUj`q)3=O4E8Plkv@!OSUWmxR%MBmaQ zHrcg^$Y}U277oV8i7Xn|izVT2p1tb&tb0Xkb#>6yxZhe3>vc}&vv?wwxF*r9D|};& z8zb+JK%;J3f3V-9t&Uul@l_dH=}*W{b?Ozyt?W&MPB*}-z4&iU^#84<57z$@$I6_` zR*XBbd2m^sDX}fKr3pQhzL7Qk2*;<-pib!<$*XgM`ltG& z)~~p3E(W+(ZjRIERrqWQpGo1_GJ7Hm);OL=zdwPut_^PqEv$zVC(K3p3`p0xj-#!I z=*!%vvA4POZzE?upJ^`lx4<`RMy=JkY9e;8H}-lcc?bHN)Qhz!#=8OS*JEpZ{ODyX z^om}plkzhDR`P81JT*s}9FuuB{a527_0pO_>0#ZZHP4=z;o7KsyARv5(!FueaTxRR z%$$Dor|wz%VNIa1jddO)kkQ{ln=atR8qn$y+Px9EAIN_{lt&w@!I%OO56FDESKlyEFx)HQ`lzVrERv&^N!|C%X{_6%E?|@#{(PoKf zL*UK(#Y%|K^F95OWaf6OFBm`-Dj_jiry=m*^4UPd){Qu*$W>^d4)u) zY*zePYd-a##87jA;;8cM`lajPWlcyh)jdQDX)Aj?v~|`{TkEbKd)ArH+_;3_vd_bM z-g(eVAIvkLeHNC_oAS&Q{a>+oJall4Zy9`Xt$Zmw^K8CN;lat>D!jS~KBacVoP%|w z){9tgy(SaXuTy6>--)=IKFs5~x83t2a(3e)cs__Rd;!_HfO~i0zjvAYQ{a$$-#ycP z#3XQ!@ek;Xj11&EGW<5bd-k?_;g5w6uFD!r|C+JhLpwXs*X`W@9N%w;o+Ag48yN+xM>Y*Bs%w z{h>X4|MWQ4y}PnL3cn73mVLSR5_EHmKGpmZLpJg&GB2?|dZy2p^^mrFzOmq_Hp#Wz zZz2Q6;^LUTlk*hEjP>*_w5y(Zu8%IZdme+ioA|UV;dduwS>M+6L;YLN-ZBo;x1G)B zU6K0%w7D_#`#Uo8-{4DW`|8iU{ZF5_V@+bYUq-yQKGAxo&@KL$`O!|0Fn);i)D8rn zT${chz9GS{9rZ!M4hY`I^} zTv70?QB7lNfAoQacjoC*2d51e_gn`{JzR1x^4|I&>mEI;T}({eugr^y=7X(WaW7PI z!o~tC`2S+&!SvdVLiU^Bxp^FGB**rmKd!fq?kQx$XIjr|Mpn>&^D5d*@$_JLpbzW$ zI_^>N*;wC2U(TKYe$w}gG@di|t+jj#88d(A8D7>Uxu<0%?PuSSdlu<>6$V>FYYzG~ z8133q&b&Jwoi%56J$+iklzkb!XnR~w@DAJ+myNI88zU|or;g!1*Ph>LVw~W?sGT^2 zg)#UnErwpR_0!?&lJ)V47}wX}iF;c9&I;G z#~z`B*;gahyYG7e?frx6wugrLOkaeCw+zBhhbEpk?K5e7R&oD+&>Fex0gpVp<6H3l zsm{!oF?#;Nm%)IonUBx)@th%_``|fHo+0C&MAwY;^~LAWwAsQvkMrN#qp5L#p4-98 zwYX+B{P;LDdK&uvhTr=z&u6*zq^G-7wpPx`g)Ra&0@Y6 zPh;$i^9k;|nm&4giT5)1FGH8x`TxWGcPtEjl0JeZ!O7TzG7k`6Pn;}$R|r!*=C1x?^e*fBm9k@TiOZdo!pIcPrk++LFU@XMra>$ z=E{7=>Y7{UVO35*%(8AqUrPK~%G`%FA$x!8zspF>9aQC*j!z z8*@)zzml7| ztaD|*4j4_$3%xf$7rxE^k+J$1Has`~MP)>GvvQ@o}YhX-7)A ziw$w@U_SgzjYjggu@%V?cm|8|DAsr8C6C-gv9R5HWz+RL`4ySG5&ns>)}UR>96S$H zEYzpDiQi{(zj=an(cSx?+wY)@&p%xZjqd0BRB-D7-doU-7Uph!+RNzYJM{4ky8dN! z`1JphmXY1k&bO6&G~Q4aR>gA2c;dNo9ne_L_(J{GZYST8{DO3j&nIp5`HX?J$L5ui zhcP$qdUtH5^!4mOb1~|^XRj(>`b*X*{T5s_1|AE2++(etdxn+kiXG8^&mOQQ)_s&G zF)p9q<6g=)>BBm4b2Fdq1D-NI&-yqCEd0h$@R%~;y$zRz}lA;kU_sAeuc4`YmLTTPav1t_TGGVpQU-B!@Khz zG;&|7XY$qRE#Zy+`>tGjJ9J&bwXbr|1IR_s!S7G65_>-=Zyw*YlwJK!V-okFiB~zJ z#@gcKJC#p!5Bi1&V3YONTsI3HtT!|F5ScUg;#{5M6z;JO=rhQ{Rs*YCr+F!J>B`QI z<9MORpBf20n0sVH3~URR>+566_@usskvUWA72LBU_US|Bxjfe6>4RMZ{_P~5L8s3_i=&&sLFiSh zA4cDIfF7gJ@pkBXkG8iEq2HJ} zE#9W$-_M%~Gx^>1ThE+#Z2E<_@Uqr@8}9o8{ggavq{H?6$(bPXrj)(lrejqO8}T51 zL%FZw3dUR7G<^uMRDZ!a8ZU^Au|2P#Z{|`)qkGoX>Mwi}UaSKHtqswSwjR~IhigH{ zFcj-T9%cT=({@k(`(uaq&inmj^ZjxIrM<4lsPIlZqOTa=DRZrl|6)tzv2mYkDdiqV z>0$h)OlG}b*-S3VeP^#CN%-eD}0lAJ&8PzXRKFq{}AMU3b^XIHrA3EFPO(r{?B9le}e84 z`2T!9e~5m+&i|*k;Ljnaqv7KhyS$e#jpQ->DE%evL3xg(G8lRrcdI+%p?eatuUmR* z2aI`--VRzLvx#}rvw2&e73J9m=4YkRc8#lq)+(>kcQE?tK9g7RB==JuChJ2fw_uj?M} zukwBZbkq0J?wecHza5C2oz;c8!H?6B6Mfp9;IYr5aNosd$iw;kzZc_Ow-a$KGPMLu z-jmNjbfMha&zEo{A_JQD{Yjv+VMtqf_-A0<5m|RgO`ZNDvUGN z?s}cMrufIk9%8@ib)JX!FrQs7H(qoOE9p~g+5>(VFY2pY4By^GXTJ=syK#?ech)Vr zr|1=QkQpFn$*{pDW=6Ba?wH;{qv zG3HI_*Ld-Fj9Xn_!MLqmcHf6%!&^bAaaxGt3avk42u*SmHJ`RKC(%{zSD%Wf6rugXdWq&}w z;-Rs!XW*IdoyL@{jn^NsmPfr=z_!n^eax~y_w%4H=mSSs`Yb~@5D9nrApkD`DF2DJX-S8TtIYjZ7#Xw zt$BNW3v)8Hd4cde^;`9y&(T$HFNVLagBT92te>k>-sPV5cxfM#?=_Yffh^d&XYCGwkfRQa-Mx*)>aoyd9%FQk{TDf>2Xl8{V{Q16(Ao9b=0@GO z-*q15I*qA+#9U@@pF4Q}!hXz`@pr@yPTz-dbImuP*KDPcGH?_4 zw?D#o)3sD$`T=|o>kH~6_m;8lt6sG>usSrfFW#KLIsR1`hj!53h}*c1dvcp=8v@^s z;+S{%-5TR}8NgNC_XTM4CUXh4Rum(J=ZVj2X{$YoFJ97BnGC3LhYBOi|7Rj7l zXO?-oUP5fB@5VBZ-!g|+k<-q|rSXJ4n@izi`yGgV`*Uq%c1?aS{fWp(<{}R>59gpC zAXIf8MzHDt>e9+NrgWt%2ZFKk@@)&^3y)n1{XY zK2zB-{*?cvVLdr0eZ|N@>HC(tMGOo@cIA5u^l;s(I#GU`lk5fVw0ruJ=Hc{b?fq%O zzj5Ce{l!O+dGl_+;WzhY*^1*j!{eqku{jOc1g`xzev5uwnJ-f6N&TXh#x~zbJ-!gy z>W?@FaZ&mqWlg)xtr=&h9+7xTA4K1>j19#-q;KVszE`k+9y-pvM%IKFyQJQ%e`YR2 zpWB>}JvK|YhIT}K;CfT*$L=e6HT<$x_AI}tH?8p+!yU$P_9D2is`me2{&!8SeSU}V zS^zGlF`jdfDSJDO*EiXyiZ!E0KinVR7JI(iXfOmew&8kz$1nW`_H#3MX>IiHYoX^E z$GKd`x@KSabSFG+&pGai7ygv?EAdC^^VjCiBdcZpDY$F(A>mh<6IBP-+O@>>@ej1q zi3y^YC?`$Ab06nLIrBKMs0+1g|#bb2sMvRmK~d z#xDsyOC4AG+T3=TebS$n4#BQ6+7Dejj4>If+6S?yiFxpycKaOeZ%yF8(P`6}pZ?)w zu(UhZxfcGqcZmIRr*NGO(SiLr_G8X3b#cZgzoSRO-{_6fhN?f5JN+wjFv^qqLtdm$ zEzgM457+N@?bHtN$UL<^?gn7+K)$b~RrId+&srDtf%H=EmUqb8OuDie$#=3eRypV1l_sLin`1JS9*49bA9 zw=$dDe&m3u*NqjFkMs_zXU)M_qdx+yxHrc%&Qo^2*W8wyF>k$jpZ}91^v-LHG4@Y6 z((bJRz1&aSJqq+4w}Hm?5FZWSd@k0reC{+F{l;&X!Pl>EyJA_2-YR{x&?>qsdP|yU zQ>20NVlA@FSL&BJ$Npf*KC*WipE*DC0oo1caV$F8XNz0I_Srd?fTcUYP5kv>J3Lp$ zGd6ui$C7%!{p+!5`Xlkj)Tdb=Zj3BV&21Qe*qicK=rt4CUxNIZN06@jG9PnX`fTQi z&GCP+6Y>e}_vlN`fZsQRSMI@MKKN+ncu!-6$@yDz@8_{M z(bX%%wDSyx<0r4NeWkY<#xgsnK6CzwZDa3JgVO%1+tk&E0L(HrlV^!n#H=xk`cD7N z`iVK)hry+}BJHI z9Ct3)8HHYY5<3$5uAG|-bd9$;4)++BkJen$4`v)GFR$!V@iA+Z z>^XXx>)JEvzQ697EU$bH^+WL3{c+^k;m~mvj$6ci<kKKAG~z^^W!` z%9mB4|8vmx=>cGhb4T#|9~s}}@L(Qe>CAP;aQ{yuqxEc#_C|TtXP55Ahovk^^Y~3Z zm%Ww7yR_*f`{>MvOl52jF=n69;Cce(;?IorYINhK%)vDy=TAiTptn5=J~Q%J=y=K6 z%>6US6R+Xp@Ts`oP|lsl@spTaFOJ!O?}qW+rC{jmyzeyu8v=bl-KacR#8_aRx#(cm~o0l zF*vZXs$1O8XGEwqA8j3c0W`A*$QWGx;@WuQ6ytH%C2hpZyz+URBOYh+ZXDpgKgKck z`Rbny1|!BZdvUGn&;jDm7{NS^`oi^cZ!q>p!Rkin2J^^!j>fLRKlj@m1wH3-&-0te z{c)YOIPVu6H<+<(#ChKW7Z<~?s~O`jhB1eYmY4t9zD{l6N!&MhYmF5@U)hIN+;N@w zGTMjuGsgDD?$T0U&%CC7iTfI7c5e{sfn6l@V(l*|SVuYism*-awX&G0)>T>urBz%+lHC z3tMNiH(@OI9|f;=WL%}pPC%vxFqf6-PJNx=IL~b;vFw#J zER%eI{iOP;`c26Nh?Ut~(>j^0H_ zPXY&*Gp2*lCG7@K>p{NUH^x3J*MQqQV84oX!`?}sz5D^+Ekb7O&7TX_UE6sV_-NoJ zK(w`o&%SAUSx#fz_S$dC7+o**edK>YBRL!HrBC2~+2$o~?Mp3%>lve*GP#m%eS&S# zJ;p50GH%z2x>j4P-Nk+8a*fj%(>;7Xi+hcOHhVO1t&Y{Yr*_c%8SeFd6YnG0^I&J< z;r@)5?+@+3`gP>HPgi=Zk+;V=_biT?!+3taCs<#fxo?Wi+W|S@{u{!p1*HSO5hm}e3CdSmk`qkwGq{H7IL##)NxwZu?#pzs!B=i~WH4x<=|T#$+vjEc5tm59ZEz^smfkjOTjp zo!<$}_#9DtX6zwe$T_cbol%@~C;y)ct-c8lyMURO_tq-}rF!oA0a1EjM%39Iu$dGkUYeaiNOEE4@^#Rn6y_=x}m@y{Vs2{Qe zW?Vb>O|CHm9PQ578=>jNeAmMN?{3Hc6PDMX_2^d5-xOCZ&@VBHm`a=yY}qqc=9+8! z3Cp-Uet>(qwc09p8(mn&Hu_P<;Fm#5F{)2xJRaR=EUw-wbzX8e+B=`~l^ERkdm6_Y zd+Xzzr75xNtiM7`m@N7%4 zuMYW;>$;Az564`}{~I$G@tWF{_|(3aIjqpnb=&G@^XT@kStGaa$2!M2$1+DGFFP@x+*_H@e#KVFpYJjM@JHFOF0EXsFOowu-|AjR%7;9u zt)Wgt-lV(sCA2qpDDCxut>>6Cux~&fj6yeE$nW&>r+jaPHll_jBG|8+8Vst%)1Et7dKMygM$GPW)@O>xlyCb~3 zk@p`m-@ifo716fzjpbo{;uh``e%j+xyXL6$0o1$VyB~88ErV-mXdEuB?9<4eWdphX zLgYZ4N}GAm%(chbL-TOjH)93+XWd7%1M_T#M?Qi|Ya4FY&7JN;C4mUvO70t1p zeM!Gq<`^H(xHEGTFZwdkq2?vhzv4WDmkj}(>rfeHYfhr|xsS}bl;zTYQI>t)Nqcm! z^(Om3v*!B|Xkre^y>jetu{QrF=4Z^BXE^Jtn3wjs8~1Ep^`bR%O=E=P`CePr9Xfsv zzv1GJmCyfvS84+5ffKIfUPMd4*NGhaZRRu?TE5VSJQg@wH~~Ku{klGM=mjQgX^3tR{SwjjMSYSAGqw z4Cz+c>~FP4-Z{^{4Rx9}P=K2KJ?6nbc3GF`s zx9@==d*Scnw~1itA+UG{_v|_VKZbK&gDyMr|Moq>2G@P5A9|B(|AzDa08Ky3Ii)Wj zTNM4JjFrCois;tDy`)_|{~U-dTjQH}Nqa9{W9yYe<4|Q$`ijxWq4q^u8^g!;Ywwj! zZN2(S`Am+)J*A(6My_dfze#;0@#Q|ci9_w%F&A^160Wfw-*$Sb*{GDU^ zT+I7KH@naOzmSK^k+~k=$Gy9L3qHk&V|<+VZrtNVbkXL`e9w2=Tfc}I|&{~FJ=^eheU{`X(tlZtk6NE4exVpqpXr0B z&%{Y-1NE8JWn#o$B6FTkHGkF{`hxIUrJpinQVlX~op{Nd|1an26V z=w5K`-kGbQU-YFOOf`;{v(Bu&)i#-Z`aq{&^- zPF-#MZ;ZKwIrZa}wK+eBDM#_!cFd&_JrSIkBNgLij>K^XC&7lcSl+8kW1mW_EB}ef zgZub4;$PW69op%?BuBcqsq!P;ce$*QD;xUw>7mia#Lu6~oaC!{DEF9lUuO4C(09{s zbT83+d*a(bXZQ24UYq?b_Wongbwo0ecIIvV%fZ0?2h>XbDGu!Ug2e4*uHP$9rFPCcbj0p)gk5p zT<1TMIlF&V6Te#nF#d7PO7i}vASdJb|7K*OH6DU))&aCz)&jnRa>)0oA>{0MdECggrgGoAx&Ai?K%;(O5Psam_f5?88SKf|dF{=(?p_Pr@cX?x z;dj8FYbW7HGoG2yYBa}xf!}6w-;cX8KhFIn6F80k`Pgn>#?k_<4`i+%@c(Q<-*)c`bG+)G>^0$@66U`q zfe&rCy@<-eHsdN=eh&2O%{_fi^&dv#dw`Y8`M)=EJF0nkT1G$B`W~hI4lNTeB@X=? z_pQ~@p`|)m42hrUrhkBS>13~aaxmJJ#Z47{j4xdu9Nny5+5}8SH)p-D@%_J$Uwh2- ziBE){r)&pC`QAL%EHJeI+Dw6#u8TjB-)4eOd&{PA%~!$OCfw@*Xn4zDXoTGA=g#DM zhjZPR`Mf%KeVpIgH&VmlT2r~^ZSc0lVKAsZ*N)ZFsa3}Ig9gk=`HC-_y0Cfw&`Vq9 zn#|;rlS46=71=9ovi|He<`;XcePh_IdnZ~O&@VAZC9RT&u!iFEP}H^hf$M`g`|U@A z32E_DfzAgWqym@4mN6Kti;Gx%rX8){555*oNIgy=b8MF^K+&iCXG#uW! zF5NoW7k9*W=lwin{tCW}O{&!~E5nf(QqQQj(F&VYJpU-2=(}#;lRJ zE-SI5@uM-qOpZI0>#DP^?ojoWZO8c3Q`$zcZ{6|>(EhufE5GNPdl3(#=Wl>-cW_=e zcy|TY`wZXBf;L;PfnUPC{>0p^Wjx2LH`h80-hBvvR_}s8%XzD!(|*&0|HNw;_k4fD zibvs3{D$N>gL(CQ>6fd=)KBISLpS$WH1DHc($BQ^pr0+RE?F1sFeb5QuFyTo+v5yDw`76ABz%jv983&aO_NKJT!T$JVjLW{QYxsQ^=5Eep7smZhew(}= z`jY!>)d~8;FZGoAb47KaPtsHB)5J#6Q73_&Pl}o4(;C~i$q2())=wV$vm)J8>St|t z?2a*&K92F9evP@h)TDbtr}@x9-L1W`ELa-xGW;6XHD}a>yqUk# zuN#DZI0icSEP3}Q`=}8;2VUG~X0r|OXL!GNPhO1i%@I}nGru1`5`65*J>6%<{YM9L zk4?bsMtpZ2uWxg$wHfR4$l5Qt-b;+-Qt<3Pt%q~J(~!TznA4g3e>&s0-qC`-_Ss=C zP9lfM{9k~t);uqPC+|bsGq`?pPmW`LTk_oj@b?tr-`|S?{D|YZ=4;S#;5NhvT=Pr( z-!u_Abz?jne+}oI$+&*f8+(J?%w)_B@O&2Ix^oP)<$k}1HYYLG$aFpam$EJIqn9A( zzv=(P%3@jjnjDa^OfX;$TWssk+lMIswV&yqGB4?aue$p)>echnH&wT5KBAl46dL{H|Vc4Jpuphy9|!3|CoRM4fHc_Xn%!kZ)fqcuW~1NB%Z{QcE_BG&snjip|5^D z-%UoQjBDI?#aPgO*JttL)D`ZD73u=P)){=bQ#X(%pob(drVO_}@f%O6Ro4p*p z<9@Rv;r+oJyAIbhH{!ma?g{Sxe)h5(|7d%UhmUJ;?xh>?J_f&o_eZ#PH|V=9=WWbb zM)Ubt?sX6H^j+w97<~B0L@*}f{!?F`0pEc!n2vONp6`x@TP91}kqTjhD4Q=t8} zjI*@81E6ch9AEI0{1oR=%58F(&MA54u_lL7wG&0K0gg#M?s4nIOYwm72CO@{6Lu-kcP@&>bS{gt;k2N#iY56*qh|#jVZOg z$(x$D(SMe<=4;Fmw&uF}RM^wc&`vzXoDSmHso)7{FMCdu`}552j_#aZ`$wGkMYItoU~) zF*fOMUd-I5vJ{;pt)-asW%oe zpD{#VYNvt)b)`7Sn8ZRkF8MESwJ*xCdFnt8){yrZydvv(3#A6)m z^HH3?Yb4~+1r6YdvEIRWX7+7pK#E@cig^r@wda&aiM2;YpK z!?&r-NjjM43Gc?D_ng~#eD8V*bMoO~InGjlUpcDMUE!np>qK6THTkJd+$%mtcpABm zEXVgZ{xgpnJ$4oR(`U3+ld)^_^xLgx*jWAecZ^LHb%d_w!coFS8T=S4X^a^ z${1Fj>FdSMgY>O^3g*G}^R%z#!{zDXrZ&0!3%YP1bd8@JA31)p`qgJnnd9-nObi#_wp*dKO26}g|_-Fp=ZhClBT6i6YJvKoVRsMeHLxkD%|^~tt&enyChw# z3HVGPW7OHuPHZ=Ks^ZT@Ye6IEXME}U;OD^kbjItrKLbWyhj$I?SLXjN?>B*?nOw8P z=O>N5w9UzF>U*_7v*h?A&#igA{qP0Ws4&AYm*slOIg6dhxN}!G#UGOniJQbua1+~{ zI*L7tVkiBr?xUbS@5eor_3N2yYH6-@v?oNHYj3Om@F0%Wx7iX}>HA*9cXx8~9lSOk zfbQeBz2L9)*v0VWE_iSwn3@MaO8TuV{)$Y=|Kx*{3odCGpRSdDj3apyd#9vf^kZVM zTK^|BG)|C?*@LNE+hSf-|3{2PKC=!ic$41l_4WpH1Wv8{CB6jBl3OuG(=RUlqk8N1 zALbg$wsG6^4XZqz{*U5D+*JEE?^P(Pq7hfXlAD3{PewFdeQ(Y@R zTiI{uT-C(Ph3R8`k>BiVdJtK#o|BxPeJ{;m#k~;C+2q+4>WPOrc0Sj60=#qwBV#*M zy@Re_Q)j%vI9(sB9UOxlH}~uF-iCADrHsqI827iZkJbIgUDI|B^D)<>zw9$9u7vJ0 z@rlG(dtQe!PJ5E989l;yzs_+xa2@5={@305b1h`I8NHy*G0!-X`~9#N*X>4Km}?)+ zb@pf=C&Kuy;QFg^4Qs8&55pM8k^KG>#{bNk;GMDm8a!Xf7}n>zqc=o$yKsN5{W9mA z#69=m_$N8P!cdta*?v?sMX z!CId&t~j(uS*$7V+6vczh$n5nHI06Z$sAo`fA#(C@XzOcNZ(&Gx7){(^BhOMn{#~@ z>6Og$_>u6F?~Y(Tleo`N=zId-oehmjxi0mh{#LoZ#W^Nt5`Q$gleyftR$im)qUT~O zjp-wo<~R>Q=#1}`Py55ncS;NEAIf8`4phcc53xU4+Dzj(^8n^Lt@~&{)Q#4alPhtp zxH{4`iOSE_9HVSlUw*k$)q7xn%Z6Y>nXm@(60h{P+{U=gYo3BFagF#F8Q-cSkY(hq zA97`0#a=M`?(XJZ?gM!?d^rHTUd6cdfuDd!d+^ zDDcQ@ZC;x*j?*}%GoSC^_sL*&PsS}KjhD;#CH|FsQs36$nq}=lz9e_2ACtVZ zafJ1U^d`suG^e~pSL74FpdatXgYiH0Iju7v+<>lP9QG)?_RhFM-O_O~c6~gw*a!a( zy|^>izqcoTG1u(Nu|v@ZuX5~W(DuI=@8!_y>b;>U*Vq7>z07Z0A)8-=#yxm{lk@K5 z{QWvEkK<2cpOV+CN3T+bea4e=JP`Q_-nI3{9p)ZlpW@pj4iW$MPMDKOzCZCuxgVDF zHy<+|OiF)cBXY3~*oc2r8@pQvh+h!fqi<01NqKm8QkzWZPe(5756JWB_61+*uT0NC z>`&qf?U3>#Z{LC*`k+};qtD@9TB!}#D`qdxH9OH;4&Urgb)D1OeD`PMDE(ud8Jm0a zUCQ;uh3lX6SG6aulRkl$&#$pYYhT$GT*thneycSD_Zfe4KX3v+K45GQa6S8b^<}Ih zDtj}a=^e&IA@dfY$djx9@W7Mf;PJ*qv*0?kL9gL&ne>nw-lRYwd}0 z8y{0Fialjje@C1so9aemR_i+bQHti$ALKsoaolGat3AGBnxQrNeiHZTx^0_0tSJ78 zpH|9&I>Y;`-^IGVm^cr{59)=Ca&7&s;8wrYJYulwSW~ky2GXxmhug$>W4mpUSdaGY(2!B zi@ogb^RVMC=w8M+fopEh=biZeVa78a+PTin-u8Q$t3JZ__-;pdwmsMSGRKtmF?}4- zwTTfsVSluLp;K(1KC1jnEUyiB{>r7cX&`!E{n-qr|2m=a<^Bkb+&e%UV}DcTVmEL^{aoj>EqJ||vF?UHqYRGO5dRZiJ;ivt!H0jg$F4$; zYX`T{I+!i>xc*2PUzRai>4U{b369m>t-V-`rM4fd?5{0t;yCn*7~hz2mVIwx-FU*a z^3lzl<&PW32h8uO9;sk%!WciO-@=cJB^#ad&WGO;G)7|CauXwI1Vu zCD6`1tF>9<|M$?v>fa{r{Ws{VKa=%9`t|m7bx@xnLyM4&nec2W_gdOi#nG-CP~Vyh z(ue;i_q_-FsBhnIsC2G--l%8Sf#K?#O_Aw4_zZ@vJJuHm}&Ph8X!+s!f71J#*J`ECZ+@R@z;PwVmfK_~Yqat%;>c>Ox>SMlA~ z7|$W_?#o>7I(YjK7&(aFJ3^1eT>oyqzZp7ogFpWb7E7I5tGA*D)WNY`$*XFsuH z_Or?>{VLa=3?&E&7 zgQ34`eq96bIDF^@J@@4pu^By(aq#>d^5!OI%8e z*lcx}{$=*9j?ZuWrM|LP(zRyhL#Ff627KCli26-mMW581-eNGI-4plbuZ_`y_4_;H zSAmtv-nCNAa6IpsZ17`>pW;!`A(t+^=H_pY2!O7JkdO-I>pWy!)&W zd;J~*6Ru@$Kn{G)@;NbkrC)_uD_W1$M%->f#@l1ne{+%TW&5A-MYtp%*(uwF|YffxPJHYcGzlUTiu|}x8K)2 z_HKfory&nBke&OWbLLsv>&!Fq8l4<`mw8lebTDn6RQyKAM!#mSb?vb+l0J!eh3x<4 zn=ERoa&9G_mT+8r%jDCi@}2qgE1;Emv@avi<^$$}`E8l6`BV1{kiaLFJz_EWA!i~ZOWQ(bU`rC(g>EprZ%cIm&A3W z3mV}itXf95T3uj|%BR7Mcrh;3PqjWKP47pis{{1k4~5s#IC-f{p@p%C@@@Z8Y?{xT ziak@d^5r_(#|S_r3TI<8z<(7r>qC zmLK8TM}fIn&_(+(19~5{FY?LptM@|}LzH*8=5Q22a2fquVzM6H#isST(A)SYITL+i zajA@H?^|o^+|S;g^zKSKbNBY~NE>@K%}Z(Hwe9xtT+BTci+Y|ew0OQ2nevwCwa{pQkF7GL^7@qx^1L=N?b zBYWBp@sXYa?T7MLuICgh=Fy$McuD_&ai8@(bK&B{J_75m`nlrc_`a3zG6$Z0iHEC`|SiDx^le_8mfH28Ju%6*K&=*+I;>MW4<4` zKAro0xDoH1b18JGNB`LR=)KTAxw*tCk?S?!Z)6(?FXxB0=9ZvY_+e}!KeXk>BW3!(q_rm30`3i;T%&U(lY9fr$RGE{`fN{P3SMV& zuIojX!1tp@Lx1iyz908SHcsU84vgLX7u{#jeBj3X-^lA*+ueMhEAlg?z4|1*Y5F$FahgxD7d||A1^IreD>MXu;@Ca^jf2c1Y2%HT)hF5>bNrXW z3iFRYgV(^Q-3gr63E6m(`MdYOeUdkTw_~}6`RQ+?1MG*qhTo3nJ8eyLud-jpC;Il% zR$op$NgHV)rV^7Vw>vX_Q@}wh2MY9|G|&rj=qYX3eOV{yJwVRH-6G5 zP!`l3#!K%q2IEhCDc30d6a2o#c;+G3M>b-&`E2jcIq2ED7<=wp+w1bXe+L2^H=Ic*K?Y~avg>9a32A4jjo*$BTLt{X;Myc_sXM$9M8YO3t6b!7b#>&5o< zyDx%y_cfu_sqow0yhWd*#)yoHH)G(7d0&^;k9qxzxnBZ4e#-SO;{W${Z=1WkE`8v7 zGUEJ=ds075T%WmT&Y7$8bd9!pL0w><;%w&TeCG~jE`x~epohG4KHGu|Uu3*if28j1oV69H3mebr%k*PB`ZDR2 z4^7OaN*8lA(!hL;I^Vt*`zPi!RrCK**GdoB*Z5`TVy#MjW@V4)%MQR+j}TDZNfYe~m2Hsya& z6ES&n<;NQ1Ym;{C*k+U5N8CEgAEC4R!_3DQvscb~i#}}nBh7n{XFk@CthwAb3ICYa zL@;FEzx5SsE3Y%o7QUYhO>Sst<8LW9v8$yo7X5G%WK28|UaJ2S3vi28IZ6y#@>8EQ zJx|&@Wk~rkF4IP*UM#<#VxH#kYHgsgz@pw&d}>lx6)lYs z++SC{Y9EpP&gxd5J$EAa5j!1`k=h<1dw;~vKR=<8-~v zEPhLWgLz49jC~IF-s$)2KWZoS70w)mY;e8X_7WA+!z`;QtcJt6<~M;}EG`0Uoh(1H4)-Jt8|`&6;pBjEI1_|cVPuH(M7^N;Mr zraE8cLyTwa>N0cE#$@h&Af6qwKB;+5^G@04M}3fdXP(KMz6JM$+8HdHz}$l#eH}5(Yi8^F5JiQZ;jsD9NoAT?`tuq>zLn)<`EgI)zQu? z{^{JVm94SgaxV8vPPX1W9z#c3_f%)=mu4-F{4qDUkolW?(EmJTB(E%%#*9k(tuoL}w^JEy$vM zvDWsm?!g@LESLV!@(Jc+zVy+K)w&epv`vwhDO`K)RfwUXpSIi{$ydRNHK60*$B#Fx z>OA}My>;p1(8Di*v!6ou&ohVXd4HLEJvA1az}!!VUQ^LwH*!q9SU<8aed80?#xd$- z^+4!uOl=OudXD-)-7H=b(`mco_m+OYzK$|v{mhz<`S*U<1~Mnt zvyS8VU-3Q)epxS=2(8u|LQJasG5_^if9b^AL*VmdU4stGTJs@yFvj<=_2%NORZQuK48n^Z zdsjUr_VKC5%t`43_$)E^2U(>L@{R3rzo6ar1VdobJwf(i9RJ)*Pdg(z&wA}WLvd&>`TN?Wuo=rwq@^>z{ zG_Kf^`5nn|_RzTh<9i*j+04mjKe>;h`zOxe^E=>eXJ~RhJgL<`v0a&0bWvi9PMjm& z)G-;iy2jW_-%mYb%|Jg&zt_CBy2X0kL-4?ykZTI8zw6`b+sbqId$iPMl4KqG=Ue0MW*Nlv5 z%bcJ5F>b8&`D^W2_+_kQ?}KwUXJ%~V{Iys5UFuzPFR@qFuk2McMzRM-zN%}DnIU7f z7MgSJ=Ce8G(uOs|&(e5p{MK4rL*{Re}mt1{71-%G;>X=G`k(zxKF+7iN&O~zj0jav0bpQ z>l0UUjgoeuTRnftJWOOrI$0BLY5aGamfU!4?cG=_vAXmL=Ij%cF27IXEG-gA3{G}U%}j;>jCtu%%2*Y7$b`hbI96sV`A5PUB}$q zPwCeEnH#)mgytWC3)gj@#c$S`4rgB1!v80rwfd>l>G7k~ONr-Cf)>h``bYY!yT^81 zdEbh>a6ZbBvSY5?byE64^2C~seEBNZ9?o^;kL%{-je1%8B_GV^Zo+ZyDd5`thZwv1 zp^T+6=Fq#;snHMmcE(ci6G|Vi)S1>u#gaXv#)pnyIoIAQ)9$SxAFRiGiQnzTGN)p{ z(awx>SLnMg^PCGmq_z98OmD(Z;Mid!D_pN^?C}k1eV$;ZrLoNpWG?ok@d>lh-JClzwG(%?##cZSzg$`w`=^ z7yj4Ce)gVJe@sUY9KgH2q<+y5u6HwIIG1zxtQ&gjzhs6X=CBZH`g zA(QHXmElvFs@InnI*Hf#@GI)G3f;tP?7(I1Dj!kZZvIuQ>X(bt-I0Iwh&3zm>T^R} z=b@kQc=sy4?aiEBGu4ytE(d$BK!-EA#slE!I52h$pWWN>4(7VSX!ytcf5SD#@m~6k zE5mj@jKr68{;9`i{+Xw96d&fbj9<)wBsblHjF>lwKGFt?8T+HnIUd1z`p)7+dnZ=( z14d3ju6N`ZUgnFIKtJ=5gNLAlI9}a*0ywj0$lP8N$D5bUex~-nYrEVh?osrBvB)8e z(_XR%!Ki&f_N`ADTjl%KL?)%D&y+uf>-I(7R_}sM9fq#p*qRk&^ll+qK{;qK6TIZiMJET(w}+RD^cc1T%XcPyRQ5O_QjGhjXr$xCFT|W0`K)N#g#P=eJ1@S`@d&3 zVXJyzBcZ2xNS`--`}+7yVD%T!*B)ejCFNB8WgcP*W3eCEI-~0yPv-vG8~5GNFS5V! zMCLGsIapiIvstV={+eU0NB`C62?_Wo@eNOOI{6BzW zztN8v1pNGtvA)5*`!dGYc>fi@EB7n1$FarQ0r?tR93FD(WieHFrX5q(m2Z7paclk7 zcuHQaD3+?XZa(qVB51As?m51y=`x*GIk(Pa>}d=oz0LQ`M>g%pox*sZ=D5A!>G$E& zI0pL>-~WlR+|In$Zw7Be;Tu?}hxz#a^=xB_`IESZ@*4UipA$PNje>J+zP-0)jHEv% zz0B=s`_+xoO}tCH(uSsgvR=I|J(aEl%o>u`Sg8-X6fEfPh+}Puew;r36}+DdUhM7o zJ@`!B!?n3t|7>sNb^QJ|@A^m9@#ZrJ`=P|Hy-+jx-}U^5au1)kZV$b+lK4^TQ=c)S zP1=aLy#U?!*%Dun@k~X (c1E%Z0e4-Tbsaxf<{_TbU@J~U46S?p?PDjxOIrDuFy z^@P2U($n}evFG9@#)F)yBW~uiKA5&x{HY_7VAyf5rh=?8Q8haq1x zIse5*#t%=_6<2eeJjck|jJ}OAmAQU>I(=$mB=gi$ppCxWHOzA|e%@mK-xPYA51Ys} z$8l}fB#z_v+c@VHWc!|G__7Xqh2K{u*ZQo%b%|x^8~d#f6FCokrLEZ2Ulq4v)!I(E z#x3?q+Dg+hUy>ZZexEc}CrjgZCsp(V@9L|j{{d1=Z zljci4V(#|v91k7L^_y!no|?}w&#edU7{9$7($*fdKQj-XKXC#0eVTiIpRv5nz21VJ z-{;tEI^w5-ksCN>FU}ducRiuAd2sjoTOD5Y>I)B$k2$;_HWF;{~d4YKgm^?yK(%=&nn<~ z5j=EH6ZO(_(8_wA>(H!`Plm38;fFPeS@6VK-U_+yyU3!L|Jcsv4q z;`3bJ2ix|>wj06s95WI9zBzLC0RQj9=Ta_ed62m#@8#UYern~;QC}r>8DkyiXMWxO zY3nNUcCPHc&s|&OT=?xY=Iq$dM)yr^TwdRmc{=GY7BY?&j#c03JC$?}F1&y8wE91e z#c|9+?u;L_12;ES{*7x4#Et%ox=1=7#j*CbIL33KU&d)3-u3dZyR~O@4s<*Vy?-zZ@H?&R0jJ zmQ-(jZu-hx2dMsXy@D~S^t4{0u6lSw_{qC9CvCyS(8hePcEDU)@{#(C)=!K{=5YL6 zURkSapNw`_`kPbJ2E51r#v|r0^%vD^=P~{t4y*K=`;uC_Kd!M_b8G%mEZxsN?K`#y zNq_KxUC>dz&>8SYj3zGCr4iDG%zV^m&WL*jo9ZO)z$2ddvBG zrER^Bv8(%y<6K{y1d(`BAyMK~^F;H{vEIpNT< zd_G|65%v1>VrR=7Q7Pl`qxAvpW0hXYv$T>%?p>4E`6qn&fMeV@uRoZ3cMQG-JURp11taxxWSLK? z_fwx!&y=_?>8V~x%|!hYKfYGqt80?KPVM9?=v;NYxq;*!lRw&n@lRi~zAmzN+MLp2 z<}VJ9hc?t3*5oRVzX42K28MlJ_i*ssvmd<0PdN*n)r_o%&cTYlL1a-{p2RiPEw!>JUA3Xn zC&7iZ)F0P=i39t>-0xdm;n*HTUIz1hhaM}(=;ZOpDLP=;^_i=BUpcp*$vla4N`1+` zfo-6t_xLLMTz#|EPSrhPr%GL0`atmyaxZbBA0|GOJF)J)l|AjZd{?)~Q)9Se8Y>%J z@=y5;54E|2;O`UtsydAE*AV!x-3`xnD|St(E)OV&x=0QSIE7kF2?g{}Z1lx;Al`zD($mHA9<0pPQl2 z@$kYPp`G@}uV&tJ_%3uZp4D$Tn7Pd2d-Gey8S2~U*xAt6e3bFiDbV>^jyVc>xQyd7 z_h47O5Z&e+TR2|cW^Vei_9eIaU+`6Xw*`E-za2FX#`#7k@X7z_$rekOjN{&n!9AQO zL6dXfN2$X@=iFC$slBhXRG(;{yub7^9yP{yU5q`V-vA%37Z}~4y1#4nwrBi*E}+rPk3#;MSi=#*MDu-CL7ipnz@#_bMu@&Tlzxit*)Clw(`T~f`@NGi>2Jd z^%CO4y;rBSLob32X)>D6YjckK1NfYY-pyc}`y2s{ zr^&t``tsUWb32KTk~dSw+81x`OpImkG4;yR%vG$JuT9>}xZnDOu~OnBYnu8>_9M8T z*NeV|jI`ZUbc+r{bJjLgaIc5;=7xLR$$o)E;`v%t>%eW3@ehBf|%B z&;FcyUNhhG`~Pt6YRKY)%yYE{d`mF!znpu-SoA4aS(WcD;h0B|l`l=Kuan|emOO5O z2Jw#~=iGK#ZqxdR_D&sdjwSkXXK-e%Or6=8mpXkQ*Rmd@&!-Mkj(>))+rYS#$?Zo2M18Q`X}hp`C*~oVr09Zlk|Sc`f71(r%Z!%Q=;pHE&e5_y?cdqC>U+2k`c4KH?tgL? z^mJXi`@;Mjx-MXBuYLxabG<8}{|4aVZv4UvdT?*(Gmp8&W|lE%N#FPi>cIF3$%mT@ zkDM#l`g)P+jiH&coES_w);>r(X=Zq;Z7$F})$yUC->z zcm`B4kF{3w+~Uj_;|}O-J>k+_I2S&=2R*FWxIU;mys>6B3_KqO-P{M#9wK8A<9p-0 z7U*m~d{1=8Ans!im(L<|EyE;!bB~_I%*|&lx}M=lcKo@+LS2H--ocD%t=sNBjU%VdnBg^4SE!LG~ zZBdEqa-SZbzoI3EkEJ zZJGC({C^Y}8wVW^0zIMdQN#acPD+y+Kn~e$C1lmR+%qxtKZ{34BB+%J~rJRAmci7OzA5z zZW{w_>;*7>8^`~D=Un49pH(vx+F8@O9J})?@bw~CeSz0PUhiVNRz$~ozDzJuuV+FU zW0xc>*cn~o}lno83|7#8}Z%cX&IZ# zL;d%6k^RJR<}~D)dfMIw>8$R}p1j7gBN{5-d=5H&BWP+Ltj~0GE!2GGaTc_49~@(S zX=C2lHT#3R!c#u?hF0I}g8tw-z52i_>|kHMTMeD^F8ZHs;r`}&^bdn8bIaQO+Prd0W1B8sE?3C7g1J(koW`}| zE0i%oJ)Kz>S-}+{9LcEOWo~W8~PpcRV>R}dqJYlYxjwg-})ly<0<<^ z;*;19mbfFn$rs>Ra>@4hn9G|6pVHrBEE3%>W~|*9%%{8NCD@n`=APm@ z>Zk)dRC?;0{JtuBL%pOA<8u>!%zRwyYn&oZTzjOwc7JR8f7Dg(-=#09ZTTGMyoik2 zKjCv%xLmu9!IJjIXV5L+cxBc&+Go)zv)cFvp{I7JJNMESS<`SI-Jh*NJsz304s-+G zyASYt;C6`^M|PBP_oe(Py723a>uiqoIjyH~zaQ}Zp5WA+#WQ?Ajj?|SuY5-Cf=15e zn#XL*_{ZTBGUi6EcRbg54qlGubuRpx%dxL8mY155J!ED&*nhb@{NVndMsL*mwb7j| z+&}(ptxr`i-mi!0mDx;nZTghNX>6wWG`1-Hjnl!$8(;{QwCe#qOI*fhb4^ISKBf_z zCth!9s(d=JXup~LBeS`l{rRq8o5SzwD{-j3T*7Z+QT*AbV~?_XTz3ZtuCYl!Sp)c0 z&mYEl_Kvx>T+G-%W`1sIPjdUr?;59TR4AH=6@u7Ul*IP zBggzFc2NH&xeEQlN6JihL(Phx0)Fbg{jA68ou@&-2J24A6)9=%V zHWy*tOq=0eQ1MO7dFh)-XZxZ`TQHUHq`SWNeE4HO)XvD>U!nDTd}n?^8k^%X2C)~< zeNtZQO`ON82XgU+{>aaeHu@#5tM?47GT&9^1f*qTV40u2UsVH2jokId@hKt$Wq*0> zZAoMMccim%b#!=YM#hSfhtyOq1M{Uk=zmN1^rV&Y5IrsC?c0?f+U?;SKWi*H7L2Kv z^~2?fbzk+db#(o5a~Af8lzdVzD--g`ny_-=x|Py~%QNfiS96@bZCNj_+@zmPeXU&| z#QW!vHS@_2!8d!aB2VV`K7ghd@tySmpOLjH{IoyQ{jk;3VqjI2fqMF5Xk#ya2e5Gr zI#gWj!`NKccpo}by?r&mKf~|tS80ERzUaN1kVEDg=Fg|V=c#-)C-pSf|0+D#1UhX7 zE$sPnoy+mak#fUyE^yz2md#LlV_muM(d)Nn9nwR zcNVX!HX>)sySh1k$*1*kOZiqO>t6(iVzBfrBIBi>r_PNpU@wN4iVV9(pj@+&J~7up zwDvMWFV{E4Znx^pu9bf$HX^_F%A1EUo{;zMO?X~A?h78Zv-0P8u4#Yw--nTZ7}F-B zpG1$?s#+OsX{`L+$f)|RltpE)q=Wu$bLv2fBH+Tb)~OFTIgGd&GeLf$am_r^|=4d@N^0P?=%XX#(l0q zX7+~%7jWI}pkHjm|1Y|gG_#(uBD#fU=J8iVt5PR@l8yefbabzmSTPwlIg|98L>HTnDs81Y_ikRwnR_qTgQDN7&ucCvKJ5XGZ8mcc z#{N6#a|=4@gmGXB9c!P)d0i?SdNSX=1Ac=o?dAZ+{AqJkiI#OtJPKA z;g7bm%$=s!Ab3k`u6;BQZQns+8GRDvRNCr?1b?nUQ)cZG)E=5Ui9Ixy)ee?@#l|Dn zWA#nOar`T5wDlId?)q+Q(5}044d~?F^KW$`PUZ6~#$t}u{Hi@=Pa_*mjHwIf&jTMj zaGzPc?CCZ>5yPYS{BEymt-kpbpPRDTMC2ZS^W<(-51PFU);#SM9JWIh!??Guw(w1O zHXLke3&p!Nm(8)2_L3N@T#s!sSMIYUZ{peqGVWXVukz;h-`bzGBjf!R*gYS+=YEha z9D6$SwMO$e*ViWQ%DlTmi$2U}e7`EkZeQ+)%%?*~d;!LDFylFf@y+1;wZPtmlgI}% z_NRE=3Y`b_p=JbM*5SGbF!yO-d^*?OhijbA`vD`N71y{8{C48~pIm<)_O}bPoXdF| zGRL|2%_s8zcagcxnRhp6`yu>%nD;ID|83^;OUC)Lb;)^8fPT#5Zsg)_aACjp0UP1F zFy51}O^r}r z8T%V2J+eiGe{<937qc!wJ)%z-yR9C{8Z9wi=3SFB6yMtI^wOwDjC=IIt-AQ@6moNHM>K%2?XlT3;tjZVjA0wc%cF+8n z&&ab6-x{s?kL1j)gWKyAo7c#(_L5x=4$k1WJhS^`aCSKK`ZJh1lkbn<)quX(rx(0K zW_pYuj|*<>={OtSABa4Eo6kG1i7a!@GsxZ*6|2T5UinAB&r+Je54KmslR?x6S6**jVGz__9;^ zK6%N5;X^Z^GA2ztWBqInV|W04VvO=x#%)aEdcW|(SVVn{>TLH`BQgn(w?*eE8;5PT zd>rtf*xB0rWNB~f=4%*tsfUagq<5`MBqxv>S$x1!9+C^NKOwoA_{ipJj3d-d`ZU^J z{k!A`Qwx&r*~d>`Sz8<2&w!q@n)nVHUC8(5{jwK=`$fC=`Qh#1AFrk0*52f!z^b(* z`xM;!z_tD6``r8B3Fv<4K9w$0Rz`y1E4aTr(q_KK_3hKWgLAZ-=J#CJeF69WDKv5q zgr~WN_Rh5^=Q6Gi&{MnR^A3F;nR^*@mFdIMrbK?!g^?L^J1deKebJJC(Q~mS>a@#Xy?X6R^mh1ZemM3eHR{MyspCqS zQn%TI64^5EW3RNfXFuM}wI#<884I5yXV#;XHT9gi-mHaF$3@2ex?$xry#=o1>r(i! zIy`!2FLdezcmN;2!b_fphcE03zq&&UslUt6%4w;0fm~}{KKfVswdM%gG( zcWY{!Fn=*6?fwp~Ts!*VdYl7|_3OS3Egwf-u7md7;K#bWUS~{yVk}+w{4uis!TR;- zRa>)-Kal4a$A+ojvc93Vz82q4xoed z^JiXe3CBg>ny(cP@nOuz+Dj@uW^$a*meNjM4V~^pcYGfHevbK^#XWxrK5pnzt;^hi zXiWAqep?78d?w&PKHmoY+~+5KJ+HN=*9yCM8ho6Oj(e5=4;%yyneXb% z7UkR6}zr+&W_nl~Vm@l(uY zox3GA0lJ&Z5|hSU+OvK5tS>(wEVv)jWAOQ0?y*M$c;&Yj`haifFa^GB$TipJwK=bK zhE}vycLjUOm^2bwsq@6A&fM+gdzSH84+v&fA4zVB|JUsWKDg(7dm>-hnqWV1-hbl9 z*7CEA@ydF7WWLm!wY&{aN5BhfE9q-+9aLiIvZuDJf2%WU{TgkzzKyx?C*iaEPcLq2 z^JUE+DR0@^$o#Kz=N@48&&S`frf6KD4zeG#l*ik_kozF#xw@`hp9jWm5pFZzT zum#q#9~e%Z6P!(KtZI}SgRQaf-8~R}9&=wX{UZGT7x(%I|93O)aUS#9652e^b)N=X z|Kk0VWZJr0X-9*FdEBRkdzZSg*57jdm3p$oLs@rQk?hxEMBQq*fX3GTU*(wbJHy`**mB;dz|X#`@EzBjH?U3a>ctZF1L>E9rurkwkaUw~ z+Lz?4)9)7@XO3Eb-~9oTKRpVbrq^8CdOG7f0$jK52Z$cBe^;!!4{72s*M_=hzy6r> zbxpj!g|_8U@H7?tnP2o7YR_@6{lH8k*Yf$Z&i!HN*pqvl#(1J*N`FlM!u}`qntp=1 zBRa#}P%r|-m-$@II~XWqTI1M5k?+X4eyM(xdfi^-_ZYXa$wJ0{1@~GD+i%Xc2RwE^ zF#F&hhQ_Bc=ChIKv*G#qV5S@6=l~X`bKkd^(`wB7x{k}w=ReVx<$8>*xVAo&^Zz9O zY18JF`=qg%pZ58L(XZ-NZKwT4i5Zg@tJSIYg-?SQ`eo|M*?iVVv8JqEwB|p)S0zLC z?zm1~8k^^`E^N=OI&A{yS?Af0*N4#5-ucV-M_+Kxjqu|SovXUpZ{d}`eMj*0IQs1v zj`i7uJ{!~L5dIdt%wz1+`2TizdKLFx5zgZK$B!%dP})^>S8UjdVt~-P)K}I&w8zS# z{)jefJpPlhxppe`jnLLL2liqaTi(UEgIo2Jed79n_9}iCn%G|@mS5rX`~mm|T=NuU z(VB%d_?MuO&q6x{ze2n5M|hzRvOO=KE#$M|K0?-{?F?m?>mQ6?G73K434d1QyyJQ@ zZ)9aM^jrwupNCJUA~QRq6E5cdLpeXRE%P3sYppE^O{Hf&-CvJ}>ipzB^z-7|C10z4 zSBL2Z3b7+ z^P`eQyTN_%dxJfxSHQrJ0g!y)j>yJmG%O^jYYu zo_K>fxu=}DljH`>%f8I-U*H@u?B0y(UiV~}#``wh`_(SU5Img+2D>5qS3u8Tu-1+Q zht8#32k4xXWHo`A6{`ehW|4gT`m(D7(W)_g8iQF>yM71o%Pj zU*q@iv6RKgTuWnH?J6;M=9{=wJKPu)MT)&?kh)}xd=d7Iw5 zt@xkQTm2{Z8OSsA?Dct-Yp&B3-Lnq)oRQp zD80Pumc)*wZ&cRf)F53Fjs6Y(Isxw0Fta%6hzO z90#s~eua0pL$lvPqrTAGXPx?tobQaP@Hm9yBU{e77LV!|=P2&fmEul}8LQsguNr^< z;ca8rCpx&H8eaqFWsLIOFrsy?gT|JiGDDm&w|7qNF5wz8g&f|Zl}BYzpI@KpUB-JoJUET- z+@sj%1NiI(ebeO5e7=@z;?H6(V#H@lZNNDnF-O;855xxhd`e?K_vthKTNAu}j11|o zy7z=VaGzy9eUYE@;g`=fw5M<=bla5i-N&{6hR*&epRio zBajz;OmiFy7^Aw$+`a3Fjf3^uS7k2dx4sXJ@8LV22XY9q_6~r(5qf>09~fait8iR1 z^N$?W!-#TJ`ry&+rT&PF)#4>Rlbx7DX}g0TWgt4g)c4{@?Ay;Jt%flV{qoevrt@9a zL|6mUjz{lUpn9~n_awAX zf9gNz>$_GkJ#AtuG>SiLA6sap{OKQG%Gg}fps#4$XAV+d(Hf9z0DaDYayXo0nEtZ0 zey#gC@m-$Zt{!tw32|n8ZQSP?h5>!R(Xfi9>aJ~|pX+^<)%*DVf1&R^+~?+Qxv)L)$Ru zOYB9KYkNubSC#3+*vVg{-X;%XClHI}a>BLiGR+50cw&Ja4+zEd_$G<7t8h|*tho(^fX8KP53he{(XmY|9b~)AfLB` z&cA_2cf$Xr;Q0sWfP*IBD}xinxZMF@`&f<(&FlFArH`zwHIF78SL6psr^GPQ=}Y|o zEcf!672k!f`Xj>_S3Q5^?SA~mF^(rXUH+>}ymt$9(iSO4%8Pu`&o&0uM%z>1v*@(N z?ZBgbl&(v+r{7-b*SNmV(f&O5pTz3|^ke2;>wo6H@j1PBi7jJS>7X1N^GFZzo(zl-a6mCxi!V+WSSvy5LqbWRhPX^%{Bj=H|q@6?z7IrK4ydI;Ck$NLlf z|2;Ia#_fL8%Hr^5-oeI|9P?X#(+4$AI+=OD3B68-9^dGJ{o%WMGA6y1t7ZNaa-IG; zWhZgE^q1$>9rclnN9~uj&aoI>=b9<^2nyDDntjXW zxRl)^q2G`AY)pu#wVMR*u4t&@3ZL6%T%jEQ7x#USW9K2G4{+>-(CsefQu?2f@fF$9 zvJW8RtF8aHG%n9yc^jN+XG`8@&5PJgyrRC(n%Tqz>i+0`{W$u*Y@58ef53K zvBH{v%VB7H7mlMpg>zC1dKU~pmeyQV{9i8HZWR1X{Z9R8J!n3J&He}4Uh8wNS(t?% z_zb)@R`?O}VeQvmgcqT^zKk~DC3yB{;HUwz!GoyD~<`n!09WKe-9_=CfDwQOnVsnwk z()t;1a{Vcc{hrbP=eHqquk$*J`y9Z1_kz#oFt2Nv|HaU(58pime}ZkXHIw;^@mhS9 zaZbG$!CHy5Xlbmk^OMty-j^=gqSTY)vq_^eX8NF8PjdI= z)1O@mUB!cSr0?87?Lqqyd|yrk*PT>C)2yBRq+kGVYvjYHQ7yDV>;6OWfPRc>G0{@;Bx z_s3E%m-^UPOFAl>*6T~Tl%~p`aY6ED@qLY@%pJO>S6OpEk?GKC*4QehO1!Qe`WN%u zm*3|wKl2avP^)XTv*z@zO)eRPUgeqx^S!>q=ef6gtH}f9(^z!~{4-uX9~!BPlV7zj zuOsw2h3}q*o+rVBxzNsf`*42SmwUPg#_`CL@vVE3U4g!S89Hss{hPu5_ZiE8M&yWl zyDz#n{R+;}*K>~y^YMo=PJ28ib*=Jp_SnC{n9g8+*0!$M5uEV))>^~`jQKC{`kem6 ze~il*Zy48lAKvdbnd3X)o9_U|d!eVf-w>{Q06h5pKw@^r=YEL~Fwcv*_d(F@pW6_3 zbH96-=X!kib{A|GudnP!+`2XL$8|dK{iZv?WA69Lp5T#l+T-u`?1=xvI1X#Z2W8%0 zM#e`nhW60n=bZOC_urp6+zcOQL$7%M)MANQEP2f7CwmG-6d7fK(e#A^JU_zNXAV@pb}9TR49g#y^$s{=hk_F@}=fvF9bNOZ##XV^Xh5Yo^jF_wgf@b#1OT z)_kF~Q`R5jd*j(>IbJ!pS6m-zHvb#P-p{-8tgkGM5T#bTB3)cZ{3dgi9?Ip3{h%u} z`3rO3eP3uf68b@7Wl@=X=<`+2taA2EuCx9sRgYU&WNQYPZ00^b?`?bLue}+Ej2zB! ztMNJ-*}k6l2Y5ZlYeUZ6g4b5O{A<;p%q=vkwMn5v1@c^>JG^j7?YOB-fC%C%6CamZIbd{?gM@jys7mmjd5EVE1Vktg!aasi62TIQ~Oos z6O04Jb$FBY{MK;Ac>DuniOaaZ{-ru2@dGekme)y6$Gx(SVNCHSwQts^%}HvWc$~y5`pVGdG&+vPf z{TT>6urGdd{vXBb8}P6ruaXa?o?RI)LVqzW-PHvx%qhAzv6^&Fj8^*a@!wY#qt((} zy`o>AoSO7kN2eB!XKm9fPjn+?yDi_V*F^<(d(nU-B+AD(M{^QtH_< z-zxp|QA021p1ww9-n^jw9}je|>WSv&ou7Ts;>cb@pXp*RwEKR#KHYu?_qglbjrqVg z=crHG3E9-Qv4^YOXDc7YUM~BiyEIc*=d~s0F68%rHMPwnJrFCyPIO`!*Nd5YeFSB$ zPaQcIUNOYw`u{?Y^o7>Of!RYTSTVP88P^am$^Qi}S?`klX3Abb`>hu<*J+$0{`dsdH<45faauzfu2gJGsiC zM=wN%vR6>}X+2)vrC0Zh$eF#5^2u6_{V47OXHLbvYRuWW=i4-RuoOLfG&J1+9xUPg zwoX;fPQP~`=Pje%`1-!YieyH*MbEa%3bcz2lYa3hYS;TEw$+a?*JU2$GI*)IQWoro zm2UAR?8~uEqkYn!U5Y)K4Q;ha_9MBzeJ20wi*@2$^OyQyV(+w3#2Fl89`jgi&huO2 z4{)442(B@>8BCuEt*ldRJ-%9N_dn>GYxf6t=$q5P>gHU-9?_Y5;vYh z_d?fR!}Y$}k?}USVJ12^^Dbqstgk3@GkR9OQvA>5{2=Zb?9|heK91ZvR^1-so0T&~kO~S{-`{e2AXVzfu;=+b9oZ-bNmpGu3ul z4^ckc2U>o{_llmimNN@Ht83ktz&?UGP3T0%qAoG!Gfq*@+J}+4f_(+nf=`5Y^2bLj4oaXZ&C4`aUN|1tOG@mf~(-aj~?k_ZaAQBk*|fS?G< zTQFACmMYC{d@Hp4eLQP3AbHI7l9I`wm2@<6~@Atm? zz~b`Wis$@(ujl#We(if-_cg5b9Y5b;t!qQ{?ppLo9PHXadx#H%2d;fsV>9eaQ?)nL zqum)d`ehtrer12=`yHO`UVRVq_gtRu-lfm*OzrqW+dTr>AS>ZviQ`KC)qP*7gY`H> z8?G*vaY$-X@~6yC$QyM_engk_arSMfL(SRo=NuCUSYs2*Du;EyeM_4sIn#98}h?;@1-=+>PCd9X1~m-=;p-?eY`M-F_)`dlNq5 zDRtc3jkN*yh;{#Ldmddg^49W|{@bfyeQeKORgNbZBDK+zkVku)&H3C1AMJ70ms;x` zgBcHw;`>WNB{>-&E_pqnwE@aMkCi*Vo#Nb@EPZL=>U`yH4Mv>(x2plhJrx82;d7(zYNCs|jq-*Y+W zBmOjQTb)lYcxnE|-sr~|gEeJyWtVX;V+ZRE8^a@QrMX1ce-2}u^N@$N#(}$_`v~ag zn$Y#RuX%2LpLotaFYn@++SlZ{haxBTj4a?<_v91X*lXIG@%<5-x%Ys|{vO_~vcc|s zb}-*(@qBBX+cQ7+V6ZQBGw3n1A2thFFeg3|-r5VHy*{p~())dRwzbKoy7O!KFzZq<@m!xkei`Zp0oop z{XX-V0X^U4*oJ-RyWocIC$KX<;6r{pn(IdQ#UC-wqv1(2wAzh(4#zgS-_fbiU@zwW zRmN>z-gjMG$hr2+oCyssf}Wc)-pBdh_ga{LH}`%nzun5`MaKI+wA_w+yup z%kt}hhk4c&%wun!b2obN0M~86c|Yf#NAtXnjB9B=Z*$E>W3i{`>KvZ+J$`==dH5^G zkJ^p;5Oa7CTJ?cG{rFtbpWFcaeI33$u`;~mIdhPed$;5~XgrfKjpDv%;6JwJ@4C?T zhs^2r&5;@Sb_n+v$??}Xeg%Iw$5%YY{MJUkcI||{=lVyO(+eHQoxrcRn9KHkm^ZYF z9}S)@eQAkl&54wDTR*cfc7z@mFiw4o`8%<^zBBn~b9VM%CEmB*Yn-Ev(T=zmf%={` z7QP$LJ~VUC?$u!4*&L~Ppk0{rf5S6tn_al>1Lkg=W6s1no$D(0>w*lS12;i;^P~2G zTF?C>*Zyh{Hj?`+&ohQX_s+=92hhh}wJw}<)L`h3EW2*W9O;qJ^vB$DSMIk5v<|(7 zj#z{_N;)NGOny#396wfK!!{qbM}_@EJM(j=W2@r3O8im!De=C3NSq)4llQ@ymrkuD z@px>!craK{y4!!-wohzJWrMY~(*7dmChilfTeF*vy)ve9KT&OB_EggrYV)*h?q6jt zPKAn1`n3JF)k}{h_%%cf5@v6YlxZJ;`_az$G>?M z96uNtX~ZY7yLd_*ky@6rFTdoK{IQ4ij8&2AvFHRkSLJ)_vN@o*}j2W(YX`3_8eq)7IVKJnR*JIo=t4|U7l0w zOKDp^4NfmHto-N%E$aMegx7=BqbI@W((`|d&BX)uq>IgG?}QJ4CM7PHUYA1qU!hw| z!-spJQDk#f_*2rNE~91s*%(uq6uW26%3kUu<^YUGvb&(n zv6(hEeNtj4<;cAi#WdDE?Im*`*^~MED039I^i<9`_eN~v^_+7o{9Vuo{|hZv=DzDq zL^jZ=leos-`YzbdnaKUa+`At%xEWzT8M!$bT3o{Ow?>}&AupF>UmoVUTk!m^^=n^d zN;;{>bvm7dE~&%D;?dh-&Y$NiAHI93Ze#7oNq*DZN_(+^IvstE{T+=gx(|vu7jxR` zw>ZDFzw$s|CpMP{>hpYM0{IYI-^h2dwfNZ_-*o2Cwg!#ymg|wU&HBgWSSE3v{l(g9 z>b-dY^K<{nHY^%-C7p3=38C*XcOPSM?oEyGnKBWz->p(dt@ng9*HhT`7#B|!LvAgepzC!-%FG7!C7Hwbp z!_tSS&8z1@v~^`4r}8d_F&`-nuV4()QF}H78P%RmMUE$P+!~#>Z3o6;p1}OEK1X_& z?-x!Ec>&iX&t#3q-V^Pa^*4Qy??$uE_8#*Y)&+gwxHZvrkwf48(Sq)*g6yt{J=l!r zd=)vpk!M+7pTvFMf|oOg{9CSesr+u;4wbs2zfCT;&4-{X$m)MY1y# zy=zZ?5^n^@#{ZqjGhzqISVI|zZOdGg1?3=lFfm1)-`WcERlyVHqTIVB`%gB)u<6H7 zEkWF2?k9B79;PO{9(EY3jN?zxDK@M2*DoXYo^W`jeYNUiDY@%S~pi=K0LwnX@zJW<4kRs1E9< zTqEIo4dub_vDx;|&V>)w!rlAmMd))E^s?sdo{*D~qh;WQ?+F%9xL>0E3$B&7Z`S>1 zMsm$#oPQ#=}$>U&4jAhs4K8|~3Xydzl-<*hF z+M%&7+OO+#tp_FEmyf0HiP^QkrQTWdF&AC$nUIItSM$lq7bj;@>X~`^^fHM%w71$? z=Oga0@5DUnAb4y~ygXEoW<$rTq0jyJr*X*hJIJo_-fCR`SLW{iE$+v-JpB31h{kg+ zF-L4q-EV~tt>{E-P+}KpQN}N+e`$O4J7xYoaZPNI_Ey@2CfXwVz#Hu$^$NT(em37B zeeBP1O{hLd8J9MzGJok}zkK%Kw!g@}q9?W{zG3`gvlF;ab6;qQJrSEpvnTi*i;ldv zN=2{p8OH+7KYlQ>%CqA4BcElBCVk$aU+7il9%2LDK%S&siDzQJ+i(rCRQmGR@Wd!r zFi&abIYAPs+rY-r2N{J;L)wRrALl^Di){Lwutdy=>%Hs2mP z*GIaizd3pHOLsE{`JjzA$NmVkp29Kn=C09ke+v1t9D~*7ud`Z}SJKYs{Y2{_3t~3c zq>2y5alNsO@2ww?jWdVw#G2p(?(bgt?sb10Lf}62cSD=ww!pr1;eMR=5P$nK21KAk z-;U(}hG1vVq0*kK2kL&wv((s(HPv4+l06*apDTE-b2Bfa|8Y<79Xp|`J1z1-2Sbac z8T(wus}E`9^CL6y8>yKEvn#K`0g3~gt;es*{p}Wf&72aT-7l4<2m0#S5ASK<5$GjaNISR=J~X< zzM~Nmx4qBxC7$6r{bS(4-pJ2jo-+$x^yKqy0WXbdBY3v)rU08?I z2PN)`ozo{Jm#eL-`)qRv>TC8TYR?a7|Ha;^=LKt7!&4XK(R3a^oN?O&?>orlnLfS; zJhT7(mYtCSZZ20B!}5XmAYYm~WfJ@7h7%-}Ec!(dgaLlNpD3_a_Ec_R+qJ zU#<$x824+PD;{0N_+3M|Y75u~+WwSJUBK7B}--`jm_> z&2cL4_P50U7;_|tc0dz84W7J=T`=zG3r|uXHm9EcBz==LVe7!|=j=8fGDE1BRNPRChP2VC`OMYcbc*>C4FonFbM?gN=+i4$w_(1&#Pe#KB_ujET zTA%Ox9QEPituJ%^lhE&Fu6v13Wc!nBMDmI8kIHZr(e|N27pelov{kIb2=`^Nra9&=`hNL&Am`W_v3{qK9on(r=Bx0S8#$ftRM6P6=y zguZn~pAX_**2&&u&g=HYUclEcPXG@gEAMh_b7-{+&u`hH%B{`8KW@W!`P~SogdU~u z60elGA!8EbOX;B7)8BOc}drMc!;5MUR^ zeeyWygWal+?c;J`8Lu{|wYjRH*2i9#QE`_%uE!Vk__=PU6ZCJ*L$DN=QQ;7I(R4DN`IO-K;PNg+&CVHj%h!&JJQ5l+A{FT zJeo2TU9*oX`9tR@R{Kup%1)R^G|z7S@bQ807=GHn@Q<#atXm~-PvXAnRd}l}ha`*T z1(TnU&#{kUCC6UI2d5(Q>cK5772oV7%l>-V>(iQtw$9qLJyH5hd$R3ya-EyLQ_Ok6 z7~~(lFfZ!9pAYb?NzBo`KAZV_AzSo{V`%;v%(a@r;F9kZdcGo^2_Y^e7d;ys{ z8~rx^o`)RTKQ?kKy3c&S+XcS`wrqqo8p%~KbntWCekMlDT)BOlJw1KcBAtuue3$Wr z4*H_xzQk7UZTcnj=qmUlZR`z~K4tHZv{FB{FUgbnJ`?SXc`{=eX{gMJr=_9x*0^5X zHD8e)p}!5N)>>$b-Fsg;+b`t0YI~VyG7tO4)648$G&eCed$;6+`L#bHi`J>d2ikyf z%OO9=ur)XHA@b?^y{kH68>Z$w*RreykF*We&)lfP4t-|HBwJRZ#RPv#zL@ZERAkK~#1+_l-(SFPK*)@3r^r!&UQxJNghbvehE zJ4xi{E#d&a`~ZN7kOmt-G@QV;5KVqQU8963oY!JHrDT@1ID zH5+a8W$;h?Z11vmC$(MW!(2jSz+NNwPm=HUAVhbjGS}D`b5u9CAd|?Be#f}UJsqZT z%|*ZI{)>Mx0JgBP==aW1r0x6IY}p2#wGO>9)gt70AF zRQJy~3|_mIR7_x<)OS&s8`aM1PtD`p#{WmcHupNSUTVJWH1sy_pODV3J+#MbBz*jC z*DBV!h-2o{Tz}}hChU3rE402D+V@|LSQT0NJ3JYRy!-{)e}QY~?gel9Qa|Bd-H^S< z;MMWy=sxI7BiwHeysU%8H-rb$y$fR(b4pWbX>L+^7GrDoM>DV6`F~&J`Z0W%bZ~9F z_`%xEhK$Qx)H&Fo^}rrYd>_M@2lMP-^an@q`?>=b$xazlE{V*Pc0N6x#wgL{5=SUQ zrM)*_5?vNU)ZyzxQalh`X;ITa_ z_6(;N-+ne@gS_we{pPBcsqH$LXWDabF2`Dfdng$@ECo%pT}$l*J|w4S&;0|;&3DAv z%bGneu7ua_A?6w#`{svoKlk>(720gst&-0>29dwx_yl--2FJGId7tC61=l^tv!33# zS_{<+{TspjF6XypIKBmQyNc_yjpw3g2QkOiG1c0|Gx_^A^Y{n%9Lwj?5#;UR$$C4( zm(92*_qNV4ifcD!4tFr-?f8B_f1mGwU*r0wany3h66=p|tQX10wugC2ES+^aiOUz} zj~H`eipaIGg}QBTY}sQ_$I9Yk9e6IEccJ5b!_e2^&;-4f7LBld8ACbu9-VNW=iv738Puxty;(pYqcD_3-AZ z4&&Ucc@9B-W;0%Kul>aKZa>_)TKj5$i@E;h)vGw!I!xv}9$a9*-5mMLGnYkfj)2bM z+eeTS`;fQioS$?5|KxKspLts{wkCYz%GAupQa9k(&-lo9F;pYomvynT8E@&cOL|GG zVA#6PtJkd61!Et5owmR=bM{n8GvgHXAo1~3z8kCPld}JV{SJFEH+xw0Kho6xS=W`h zro{Nz_c$99x>vwlWWjY<+Hcn&EQ3C{&ztK;=0o?neC%Ibi~C%(1GzN5uZZpJ!*h>e zOj9^EkN;f{WPkfNp?R>U_@R+})v-<;|BD?$Gwp|V(%kwSWT8D-OS~vfP{+jo<}bA+ z#)-*amRLZVTFW)=bG=_`R_58H-B-}BQT%S)mc8%A`qp;0;IDFNKGHo_E@7NMX72hV z*UtFfvU}h|NsIPms1fdq9SwGh{B&VV>RgGJ#No<|IRf*HB?fYi$#x33i-5#VH`ggI$pbJg||*# z8Jh!bjX&J)WM}5{3z+yS&sl-_E)RY>0*tX+kE-YB#g));?roiTLyrF!_vy#q$2j-r z*tmJv%KrSn2j|cBdgc@QsBevOv9U|>Px@KqMcXV5w8`S+#K!7_G4WJ*XkN|t4A?in zen0Fb_F_xu=lVwHaW8Vxj6VDYopt@fMPI%G`8p@ypyxeX;i^`xH-SEZW}m8Su3Y@2f-R z5sY8IiY-2c=Z=LQ_4>B^@7q_X54@afThOuV`#@X%|06QszAnCRY&Y)XevIz%bRypm z0tdNY?siS+`v%AeG(QrZn8asBAurLV(6t`pg|>D3+}d3AezfVDG~>RA!eV(DZBpc{ zo)1VZBs!NIUF1)^n|>^Pp7ns#yyv%67*HE!UfuXhUuQpcnJ-wtcpBvl%omuCI{?`+ zhojxnp1a3}v@ZA9I0sCeoXs)l_O6UW{4CB;f8A5V91Se!@DzG}LsP{E_cweBejE;6 z?1$Z|XZu)7Ul=-bJ>%8c!(K(l@b0DbM;q^PSp% zF_|>h{tse~+W*h;UHMIp)0(I8sPU(9hHC|+i+PmYq1Avjh+)v7C%I4Ff9_i2w!NG< zZ)HAT<{s_oxVAm=r`#p4px&yl`nt%CzFd7YH>(c1-d_K$&vxyW{I#y!=DWAYM{``f zV_p3j#{MQUF@$UW$y|H$tb?2f_dj(oc8gE!Z1ko*Y*X5$j6J!L6Vdzl^!D^dj3Y1A zpTvXO>Z{QER^(K@k%#6mVv~};P*2Qdswc<8r^(DE^{2Lc1jqVfC+r7lq#x_>jGLj; z0m!ntqJ4Ugzvimdm2FqVpY^Tic@{LXo?xC$|E7M}Z>XPhZ>9P^H2Mld$k&bd{!`$CG7(xYsf|)^+M}yF5}Kw5N4lnNV0;o;(gwxuNK5Hh z+829iO8RB3#?WCECa_n=*vuS^c}eqe=J&r0&!m_3#D182cc}KUv?oTp;(jpF$US$> zg&3Ev$u)iWSd(1~np@kRfV@h-7S4UKD>92c^c@T>e18?%p2~0Egl~134IN7#8vLZa z5j#o0<^hZBd9bE7UAa^yvlgvCULvk3YI~aSEIvXDs+LSV7&;4ZXo!G6Uk9MmOjnqkXaiy_~df(g& z`YLQ_sfXsY{{ohgPWJAfjlI++AG~s9d$;8tSMNsO1-z;2S@x_cWh6c-bc#Joez&f3 z(n$J5-^AU%=Sh7F-mcSR2)3rJ4g;T+A8B(Vf8*!NeGS{QU(&}OT=lS|(Vt=B8+31Qt>x#~GXYAKvr(R;5?djE$VkmX3%n|70 zmA6ie!C0^E=k4K%{29|k29>{HSYzMOJ1?FeFX^qXv|k}P80(-+Wg!kIeTcm$=`Xa; zNnVHv((^7)%y*l2Ealez!cuO{$wj}-cL)0#M~NNem)Jqy;+mSd=#_N~`&Fj!O!L$B zyt~FJ^6k2P_dhci?K(L5r5|?m@#$2u8+=@NirWsztyFc-~<)G!NocB9v z0Ri5^HnqpkkJABdMJx9WP76j$tX|g%KH(Sl7d7Ky*tf7vf2?aiNBPg75hWZvRqX@7Bd zbe;dD{TSr$@6g3s+K(8|lh~j=Hzgm(U-LxPz`n;hp?9MiQ)y#Pf@IQIn=CzDvyK|K z*<)k5QZMYo)K{q+C4Le&#pXy)bFIp^bhFMsnfpnzdd)F3k}k@pGC7rp8;?nY#01(3 z=WZNkZDIgp)hCN_zYUGn9^w;iHvO%{+v4Q?bSxGNVBfZSpA?2v_=k*+H-LJ>KYFo1>nt4V2 zd~l?BgL%l6d@$b_d?YXOzRGgnv#cwr?{}ttk76ET`?uhmFwQ;-`vKgs53wfCUlTseX8cD%@69;phu9_U$4H*}bQ4%* zFmW{FxOfxft~0qD?)?O|a92KOF^+AxrWa#)8#{I8s>El|dKqla74Um1V_%o~96o{l zMEE|Mdz7}QQA|+k+MhVTw8`_Ky}mDguaTcKhOOHtv2d`5wn@C9{3@%#7~%`%adTAjyV*C)tFa{`a> z5ijoz&BP4$cYF)k_&DEXKBtWTlhdhVh2(TPLEDeRdnL}(r)q zJpM-DLS*VH?tc~E=W(C#CV7J;^(V@AS;ISt@yfHrH*MGsT%Mjq{fGD?m^`?yQGF^r zE8{|QpwS28XL**~oIaq}u8Vl5j>xyx$J609cM>=Vm*R8n zbenxL}n^S;>Z zRj@a_R}Y(@r!}-`&{|oruTh))8|HHq$LuX}f3*ICD%o(4#$m{T`6crJOZ6vj*NiN4 zkKgg^^l>fVK6fzp^L9pFk;NyW#Si!x|E@W)%A>gNqJ0nA<1?|pJGPK7=|SCqYkY5& z>x<@NgV)54t+o=q2K+sMW5+R;qd9jyo~L~_=i=J@hZy%XexHVnj)ZOxbi&?aqbI_v zXVHmq%x^l+`#gN^&hgUzei|9oo+y{eQ8co>u^A;^VR(p%FeV z{eAGFvZFs1E1PqTy;ZmEtu`+hKDqyaJedUD{sDiar~9WLG8WtdJxdxj@=?i2l>RC2 zS8IfsjlZN#BYg}#N;=Gk&-S2C?oj!pGXD_$s_RtfU=CGUSZ6pAo*B~`%UVYZO)lje z=`si!#OJu4elYsg7yVft*|C=VrGC(k@5L~wn5S#>Q;V~HQDSBN z8>+hyBL`2oUL^5OnM;~FxZcoT%7xTzH3L#_uAua z4LEWiUYpaffA2l)hdj5wWNm3bj(5N=S|4#=-3wN)uu1YA)}36NU>}AxbM5C`biv%G zJsI|H+3&5de24j#>lU<^_JEtOnhCv>BXO#AL3^5fAD4YzoAk%-^r__QSA(#1U8{aN z-_5lS*I9%9S~D^BrpVny^1d8@lh59ae`REKSH`z7_Z-hycVI4Ek-OhRv$c5kSpFXg zP1fc23psBi{+2rXf5WcTeX9DrEA~YBh#xI&TjHPf24L@?M`D~M#hXp&gjh2+PaPL) zK7kKW&*j~g{4T$aLLB7NGWalUpnYeaC+_Z4*QR_wa5q>c2m0qyWC_-K7j>|%`|`dhcV^46G9{)%Z{8o>Pb zsdzh=XMCyKq8#XD6Oa>VVV&*`&eMMG%yUMrNk0!f_!s9Nh8%T;R-Z<<v~fwPbSc@X<)j&W~3DD^Zj(bCI|6+#&E`Q|{rO zjK=x5jRzMn&v`ua8nCIh_b;0e7js@S{QVbtzZB2Y#|>rd^?mc&%bCa*b0z9qY6R+B zV#hLOjINb7a}MK39WixQV|#Th@qK)o{P8_N`ZM!(zMr_LK}RDmW$c~&Z1N?8u*cdk@uqexG!{EZWBrk~ti3fO=40!*SYxQ{ z5o8>33m^L{CwIVhAZPYG%PVnb8CR%B#uQm|R_9$=Pcv4JE@khOR( z+Qjoy&xu~`#xd8_oA=bV*-Ks5C;gZ2H3(KwhxA*nA26?f^%#1}na@FcalCis!_=R3 zz{{r~|4(knGdMoJ8Eo9;e=j5IR4ez2A1nK6l$XRSJnADpEpbYt8h&IZefq&M@qNZE z=K9soE4a6N9!HK+UyTeIvjp1=8-!jVTj^~><=TAXsmoV7+$hIimnq|#AzWD6W#gH| zGU+2oEHe|Ee7AGv%CdmP(e)`zoiP@`O8dvdCeP%g`LaLQxk&=@*#b7{+zJu$ZZ;L4pj z;ZmlwPv+sR8;Q@%4flY?+ADL8+N|UpgR_4N?We;(*S9HGzPDxp|7*X@C#KKUJn_r$ zO*^IEH&1V^`DpCOOPp){$3DIL;NeA#(;Q>3zSt7RV%^7{AaR*-viRHFqVHL7-I_gU zTX3!Kj?sU;-%`n>wV!G05r=cXPF(B0obE}aO!_{C?EjtjFjy1ly(f7<#-@DQ>v;@w zx))j6j(IhDC&SIm>0s{lE1rcaF2wq?;ZNdjedk#CqrKb(-fYeIe~TOsV=Vu*Ejdh% ztqZL;fJTS%Y~|N?pZKng515Ple(uRLe$tKka*zAh2Fq~lF6RHA@GvqgCRx&$KzU6L zG5%HTAHN#gC||*Ip69*`B+PmQW`HVfe>e!|_Ui>)!HVJwfi@Eo0X@^|z zo0u#Z-W+s2znq?))TWbHPTj|vkNFXOn!K^rV6TYuUj@7I0QNJqO+De0=$jndKFDKw zq(bM!StXstFO4vHNz-~xax!!gJBY#S^n4IHNYg`iton7!_%>L|cJHkA5?8 zjec?&XfFMg=|POe9$WpRIb>zq81w+HtJ8i-WcwcOS>p7v-y(9pB-qOwv2q{0cR%B5hmww>@yg|2@z|fIw^H*8e=zCn7)J~xjy_> z=YUUb?{4}tIx5fYwUWbr=o!zPxS&NY#l_o1OSz%~Eo9qY1F&xx3?x(Qnn8*R>NFZh~x4$*1DOXP-z_d`lv~)H;qyE5i=;e)p3PVVPBXMGo67kJQ>u|?kUd~3kmRM8YtY63;g!*M|e)b=Pr3>?4vF*k)+Vj-(wBzcZIOq$=x3#x& ze{=I5u0Oe)-*Vdxp)m&qd~9 z$FyPEF85|EvE;KH*XQlGA^9Ypmpupded!fh30jLM^?71SZIJ$M8uQo3X?KFnUqOG( zHOh}8;j{0mID+5p>9*hFn;bJ&a2@|&!*SooO7e z2h*5;4E|KcHEG|QXV2Un(7xVo~=Xv-Vu~3F1?IfOh{&@WtHW-OXTEWKis4kHgwL^EBkrJ@&+?t_QmV zSy+yF|BYj_(EHQ*em1`)|L$7nkK>m-N(`ngkL?V;DD91UW{pzX9*X^VVaE#FyGO72 z*h$FT0A%kX>|*e`xe52+KOXsW?(Uo5`(n+Lx*pU$D15K0dnMf1jT!=U^W7dNFpry< z+aI9yr;)$ZeCn}J-A4ppwP$O}cr$s;*cq{ub-c)(`R`KptizW1M`dp~yfn{P%3vvf ziFw2~+KkKLzquZBims6pE9;vQgI>$?&G#sS*3%PvO6P~sGv&>k%w6zFn_zuanrFS! z*SS`?azB?#vFGyOG@kMHK>F6SJB;`D+-GynJC%FRhOf$;JxA8$PJ%x>!@nteG6wGZ zO4CRA^hvQ&d}87wd6M@IVRkyq+6;LfR@GYd0osD}!H6ef>$UUd?OcccD09+gyWfws zH)T`0TkEzz#U5;XG>u1$FWu`yI=AU^59o$|nL9HdmKb9T&OH`d`rg75`TH#VbWOSY z1pZ~kYF{ODQ(YNT3-o??FMflM=2xddr`O@pxA+{x*q&GiUF90}v!qYf7dn4)AI?`D zROYP3IA7)MpU~XevF|ET5A|c>Z}*RPuLXU~`J=0O=ufmw#!mVS_uqe8Ej`7QVut`m!xpRe2KM*5*{ zs1xS0jQ`EOME1qz%DwWg9la2quL!Nptvn3Rc7uklP5X0q{QlS~#vcoPK45J9xb9Z? zdoZ?F-lT3BAEs?|e!(8jO{`^IOuXgZ5WnX8OUx(h!{;(TbGzcpBS%#^{$D`vfAP%! z%`-mf{=GZmE8wa4H1h~1jeS)2^vT(8OS`WhR_21;we`uDU$N^Vd$$g9B~G-qW}m>p zosln|r4A`?u7P@Sd*X2B>V8D#jyK`EdE+VY!M%sHJqHd1r@*5hZwPOo?SDY~%~mFM z;rhs6y-%;i)ZvY?SjUj!f9F$=P2$hY(b{8^-kM(ztFWN?eQ}@h!D#I5B>3sNFLUwP zt9kz{LbG~d3HzS@#-$bFwp*UTk?GF zk@0*SCPoU^TSY*?H-9`yrGPB0e6X^tQF~}+&k4h@x_|r%+zpBXHNEbt2^Sy zWzY?AlR9?0S|$ZRK`dm}VEkI&KYNuJkfC7nt>t3#czrO8W{ z`KG!KiH+oO$zT1GwR~;E<2})r0aZMtul*OF;F0x0CI%EICT*kf`zunxj2uF%(k~=Ho&(syOXQuIt?=A7& zrBk_HpR@~eTMN3|+j5IC3~$^o^KQmstx-Q~9cgLC)Ur}lW3&&KUBmEYp1svDa49-)BlHoE4ewml4KKp({a_nt-AulM`JLUL z`}2(9%)2vmI~84;#JwJb9xGr+cR(lBW8O>i-B_e6*y}QQzBAudIOosIF)|z9)t=8Sb5)Vi>?NVBX+sj%9=kTYfe*@xy_~K~9D_Ve;<@jk z|GP7uzwz5qjOEzzi(<@spwHcWzPmiKgH73G406>K`I><3fd+T1gbhR%TA}ebx%QvM z`0G07JnFb1K1*Db{8eIlal3l9(1t=&b2X`biq*yGe`B7;O6r5T7-MyFFjJX_@-L3J zzft_|oV&tf<=XvwSLIys>`Ki24)}68a`7!}itk2spQmqgAK$av1-To`TyH?O&)6AV zVZ1jW6ZVRB;Qw2g_jvBLKD_SHk9dgRe#bR`XvWsU++Xm&_A}Vncsl%D5^Rz_;*)rs zwyBl->i1)#>aq|#7F+yV#und{ShbP;N*{!FObi#BmEIh&sLdwTKArIGhg4t*q7rR_lBDd z|BO|xVQ#(;{dlgsm2;bT);D<8x}5)Q#?pr6c%~S?ltuAn9TP`Sl_l{_a&D0ueR^z< zvZ9=%hNy3g?utoIg`Uw_^BiJS*VoxQ$~-}0(t-0NsJ-&ysR169NAFsgRMgQ zQb*0L&elep(- z?k&D_p9Xt^zQwaIK(36NT@PaqtLp;YL+K{u{S;_?z~=CTYo+ByoI8_yg^qQ9QOaU4 zX6RPNY|^UC%PFI!ZEFvcg>K?*=@v{D8`sFb*$a&7eWVuRp75z{>s!r1NKb1b=JK^G z)(ovvyKkj+5wVXw@Tp55!1reuyR{-^)gCC{RXKw3-3^V;LZ6r43I4;6*U*nW;BQ}k zn+pF*8ZL=nDdjFQr@Teh;#cCI>wd(&LFyQ|jC0~YVh_yYNar#KA39$FJ(blHuyMh^ z#y(<~avhp+P zbnfpvgxc0a@cV6i^fkfAllXlG@|*t6m$5tMl&*$n&vr-F8Ouc@s(4>K?A~qHYI_rVaol|n ztk3+0bJye^u6H>Wne&}oH!ud@jrk!Mh8FX(4c+$$)@8v!t`E66i z*>xkZ&OVHZF-ERRnG(m9xraLTh>s9+1ZxD##b%YVQpQH9#VHfMYsQ$U#2Btex)1v) z#uFPD(`c{UJJuM+cbka=%$IG44K$b81pSOl%zNAOb1~=XH>U6m<4NP#qJWX}k2Xu(P49n#^(Sl=7b1q`8zC&}J<1sLX1! ztQq)jWM%ad=JG-xVjg7U7udlT=4i~Ny}yfVq?h~X{efq@kKW9|_@V*m8}fEGH1vG{ zleoX{H2WRT+KF@SL?5SZ0;c9zmrWPRTiq9w`Iy8Ir4JAjmpLjw3nwk ziD%U56CKUoXX% zU$u^|ysGp1R`<_I-+`D#JCMHU*l1YPR--Wn&>nn&ak(G6vJF|=(&W0SAi7k#z3GO=HspW;h%mhrvm?~=cBq0xLq+8`aGwM>E#?n?iB+bN<@nhC}#W~VV-7pqP zPDXl3Bk7`T5rf;~Z;rzC@7Cgyi+c~bH`gYvc!YV`r$2cRG(`T~_u~oVQ`)qm8}_l9 z>-8P=#y;l6%z@41-jDLEY1~JAeh+lMyBYkzbAHcQ{t932LNr8{Bopn)~_ebC)r-18uw-8zi>aqn+(?-|UY zPV0KiDV@a@WsGF~p!A8c=Ou>FUYR>rUOO^I<4)z$dU|rD+7|N+_TJ26JknYFJ-P`@ z#n_~;SV4StJbucYqqMa5;vbx2{64S?F+LyHH`-I7y&l46bB?)Z&TqIre*fcSskGJU zF^El8mekKO|Kfg=kso!>-hsTULK!mt(3iU&@qI9jzWh4mPAp_E#T>>b{`4Jq`lIR4 zc@1Rd8+`xi2GptH+Yg~%U!L;={(fl{uoLH=&pj{Y|I8`65ua1)Mai?+qm$56^`#X# zS;#}=S8T|T7UlLBn|(WFOr|cWN2Lvt2J+VUz}_r?6bKSFn!0 z!(7sIo^Q|SApV-CHXbwooZhKd;I}BKDi>Kji#Vke^bXKdwfaI(H*F z$Zu)U2pbze>1)MxrELjKv@hBg<0s|9{XDD}i2aP0%#q^qI+*{h+voUH>7rlF9;5CB zrhbg#*!5hj?`(@-q0eE^!W_WU5N!(gjbAj^ayZX2-*rh(c-D=$23cC0|IbDypJqJ& z8iGGyuErm;8T0e-wxnNVtBm_&4I%chxG`x*xCSPnVu`Wwu6lrB2g!GCXmOhPS zXnqU!g1IU`=13w#;ty%19Z`mE=DB^575n!lU}MU4qrP)2_+tegB>oUnm>=}rUPp5M zgN*%;*p8#2?W)MBe#`epF5uY{IM;oWj==^=J9|Sq?TU@#a}&p(TOIvwqAwM`tD}*@ zl3w~MZA*N=v4r+g+@{Tx4(U7Cq)(Mk_q}Y+_hx9IjnpTLbDzXk9LgMgfBcVnkl%r) zof*sd{Cxx6=nbzYGmpp7-Agz>{7sIm5swo~YAdu6j#WOE!iQuaH=%zV=fdi!ZI!%Tw(_eLX^YswOc$af!Jbb700o=5CCK?2TCyI%qR|FVt6| z&4K*yp18MThn0EvwOfZ{efD7e89wxp-9BnpBm1F=@~&KK8{}E+fwsS_3)*v^e4aI) zHrZut;w$Z)_*iUVuG^e;^!GC6EPfF0_T;zSp`&|)-O6|S>-Ot{|KuK1`@s{A{gU5% z!e9Hwr=U+qG533#nfr=Wt?NRr>BDnhLwZKF0Zx!-IFI z#_YamPx8z!4z6(d=lI^d2{PG?m6MGwTt(lYv>d>I@1Y-#HA zgUzA`(skIN%4UjR#b;BQleARl#SP}C#S8ik>+HsQ|AfywBJ7iXWv*sl z#{Eb5V&4CdrV5ij%2?LGwuqIS%PHLB3w$1e7afsD9n*0=krT#Q&h3+80cm>@muIeR zaWFEcPQ}MWm+ZAj?jU|fpPT-X=u+PMn_P_gWZg|{Wt^P+z4p>R6Y+?3Mq{{n&`15! zZu-s^vA*;Zqgaa*&UU=^zc1TXXl~#kRWS4walr3+2+je0|*2!}0gXi1RZau+Qe$ZpLj5@12c^k+6IA zM*RpK{Q~s<4fDH?xpqd6XYhRm{$`Gmnb@FGFXf~0OYp2ce~F{5&16l1w%a_1_FKF2 zedOwI%T<_695w}-yVvJ)%*}Yk_14QUp2InIC9*t-F}h~@5g5CmiMVhbYFF5$E#c|) z%%g3+BJ+36{z05~47TrBK94fCanLSv`8fYw*8_DR_BMDewJURU+NI>?lx^*jxu-_{ zzV7FZgGwwM9Gv`w^lU|Uj1hwI?9D5ErMP$wHnkJ{QYPL)HiG}$|LP%*YxC1nqfOJ6 z=>sA!##!1j`-0v3y{%3F%`bol!GhX2-vj8r%?sd@I4XLyKYn06_~1KWw0-sv8{02H z_UwZ+R=bb?jq|M+i8b5@OI|M+OPo3g|I@L`f4G+8ov!d|S$re+x)<5L6&_pyZD(L# zUq)Z;*A+`Xu^F<24(-TX{)Ak)=jPe){dIo3rUeYgu~zQ?7BbX{`Q5;nBLnT}Y@PpQ z9H`7k23ngJ^(-uu0qC9Hgf7rXSx7HcYRc{9B7^S}7wN0yyMA1r>!ZqgT^;+mmyCNa zB>piEZojv@oVQ|y+mFY$bQoIY1qQ5L)p3l4tR=XI)pqELdk4;jkG_-X1!yTI9K^ZS z@>biM{L~i6Ja*xHe*5yoDktvx;Me#)v~AC)*J)eQv%dbT)TQ|OPoiP$WqgSKLmd)3 zmpYXFa-%2qUMJR0o=^WWzoo)S(o~-><{aL~k5Lrkft`p}o z#Kn4zBE#Bob>8>?tbpE+g&yHk{HO0-7|IxzbUt-?Yi(W}C(2XEw-DDy?t<@QBU7s> zvAsSs_A=PR_}}?o&KSjw=Z&xA)VldY@KijnAC%W$@wv#v(*xlX-^YQGp6yok6mEsy zsms%rul$;O^U8nY&-9awL6_|*u_wZH)YcirT+ekU20%7$V{V6IJM*4&@y#FcrPgCk z=W`|gX>IgpEcW+5IDcp}^2jrK^Q?+^t z^~vCR^-&CB9F;Zh`XaH#bjT(~xDI++KeTo@jn6RV?tV;PV62X#k^e|-sH`!o8>Kxk z#t?hOCXDAfb$?r8FtL|;Bke@ib%?Lc$GVnH{VD5vb)Ref-d+pk$6SlK#+zFzITC+w z0gVr6s$#$QkRN@(54g7&Xg2dyKI}Kr$F|jhI7fM~-+y_IJqNwa!MOI@9E@>^?;0>x z9E>g5dW}jZ?nGdJgpE69ReS>XAAsDxyGun+*Ntq799+e{*TMcB(wDeu)FNFjbvM{P zJWqV5{gJ=PF-S9YPupK&QS-CuR~6&m%2?%jxtHL)e)uuwd@pu<2V}x}gmNIha~`fC zGe0fHbKRIS@euQFVQzK%(@0Jd%O>`6E~VW$iScA!%1?>mog+j0NWRY6g?2Xfr;JPg zU)fheOrO0a-h|)AfyP?)%j($(|(;kerJ-C|jdE75`QP&${?m8UBX9{wgeI<5ZU zwf+OW+n8~hBYb;j{5jv3=Gt-(33CL>Y42uqi|6#{4h~|h?i+C>$1p5>Y-^L?eQ&6->7t-efN&tyKX<k}NC{vbWu!6yrG`o`EA z&M_BS+6VjH%(1ywiapcDq&x0djoaM7(Tu@<2m3TvXY4mIKCzbg*?lOs!A>7P2pQm* z*x9w^=BZEIjG8Pya|$xAEGPqOalQG1r%zf8jn|+)m>DRshjpd2GCt_e@NbyekKv#mN?t^?A=a`RAPpG`H25(&Rx#7gK(AE6q z$@r47@N^i@Y=IZs@(Fz-i%VkbOFJJr*KtZoZ}mu8!`j92$#vXW$JoK2r5}*Ki80O3 z1%sCOp`@``e0~eD8`l|gq<18_<>WA38xXs#%~n5--Dq*lp7jB~OLlZqg;nLvRq#dL z+}B)T4|Dt0g?+D%w%30DO}Ss*k*LkJM?jnV9OEkY?l~BK8JEsM4(uuXD`U`B-ocor zjz!PVMfcfs4XbPC?c=|d@AgkvD{`IuNalOzXRry#(BL7gIoO$d!28+gRQRnveOyct zzaD+km&@x`=BOQ#zxD{pTjQmAE-v~LU#`w1UM%x&@$2%{_4VqGJwjqbbtwEjW7R7E zhG}1zcPsgvI#yz0`TRQL6ceXz?>aVh%zWEj(55ZV#+=kQ9@)Wsg7ukIq50KZdpF0d zCro7=#vIAvxF6qnj5E6Ucj#~)=dQ#vALSmt8$#?g204jNeh8n;L9E>kz1y1j0eWKg z+SW~pJ>ARcr|`&r-Cg)@PR>|&2cF*no!u52Dt5D8@k?x_`&F*NdHas1cZus?VV+}o zUVolz-EduG&pkTaquzLUD~``(4%c#BH{@UguDND2d?s`_v@1CU=MK$x=G@zmx0S|V zC-~mT9wbHxe$6_g;63A)(jHiES56p0o2*1OO518o9h<4YvcB_kWLZ3OIXrUxo;6Zy zIQEZjGn!{?4<6#X{iDZl{84CNzv%YNDRLgW79X2@M|^B-nX;W)iuHo{TK$D%H%H_6 z%{Obe>hX@Y%Q={9P93b2bK{=K_JPd9xpqeGl<$L~vwlJuP7Yr=PH(wB+xnMvME$h5 zaDD!|--3NdBbo2EJE4=vwQd1N+krndLn9lklCO zli``~p);p{&aT*z;frV(ThT}sN*`R$A(g&CdWxyy7eZ70g8p|7<8MUM#F5h0cqq9> z=_&Rx-(+8t^fX7WAF!^S7*f2JoP;$-@%y37+nj_xVDylx|9cX=700;-`X%mTZuXy> zq2uy>gG%nK7cPh1xRl>?w+~($sI0l((|vvIM|q678biDP;dwmo`^ef~pnXTK(N2B4 zOJ%Eo*KO+yuH*bO;nnfn+n)C(&U*+t&*1;)Yl-tpT`e)*C)Em~yY?wFgf{sq`{JaZ zF|{>(v4k?D{3QSHUM|X!?>ZUH*z5~aUaaGogP6`eT{ocL_y*_Q&s;8I-o|Fuo%3!W z_dC80TD{-QoL7XD*ufi_|2fRr+`end?5R8u**=$JH$$JF@~p$aa$~V?-{_}s~+F2!cfV@ zs6WO*u6Yr!nsf3UORpeX=Af-fNssZ+!Tu5JQRZRvjplRRuR}R{o8#`kr_8vP)^#bX zz@sMQ>4)5RKc4e1em|XSTodpsj{O7rgcf!E(zZv(>ar63N*AH{dskx7*rC)tlqKs&ktH$8VaP==in%Rg0oSRjmyxlvxz7Cx#Uo-5 zd(S^aHpCaxkPG{o#Sz;3^|}6FKK78j1WjFweK^Pe0Dta*Hoo7+K8KsO1{WZQlNir5 zj?ZSU$B*GWe!ram@8wxHF*fPkNZvx@V8qb2^!*EM{=aD)yDy#VH9KWc`O{`^4~CI8 z%2#rl!-{=CT2Fi(O6+Mr?EP zvZ+fazWgK^a$boQou9U5f8;rsbvmRFo62|BBN+4bLKYwGMLf;Cw6h;Dcl)zl19Bz5 z{fIg4#qsG)&Yq&l-uRJPu%G^Ett~@>8mEXCaHa)ti4cBIy^O(0H_NS%7_ts#2$MCg` zT^xA_f5p{bK<=J~7u|-U7tljL^*6?FG2cs?ei9anJOy9s;~i`0?U>74gtRa9A+}k5 zlsGw9AhEHSNZAV36c?q3L40WrLcY~=5AkP-ht)Ohd2eW?4NCqYYp9KLjeoXd4%zeH z{JL?j>y<9&8OF6QjI1!|_3%rZbngz(nK501d|pR9J0Ds;FaTNOK2vyBNz>Tzx^9-f zU;QlYO&zlbUzW6uU6;OP&Oy4CwtWJ2Ra$D#rCac1op#!AYZCfIF{QRVbo8Cw)-u%v z{i1$Qy19l^T4is5>n2q3->LA(e9da;i0@2wUEIitl@ELmUHB*beT3te;XjvZA(z1O zIyG_L2<#-X?%opfc+Qx8pd~W>9M8Q641d5TU{&tjg}<*bpOVgV8RL@BT02;m-`3_u zaZ+SCb!=m!;EU3Zq}Re)hCWm5C5^Q$!5Ybv)oDEh;k7T&JehPh=bqT!+K2J{f(}(5 zfO+$=-18D>?s~c_p_Tac6!VD+K5TW{Bon=$1rMz#N-9{fWLr zdd5F0v*Q2IQ+p5$lDd$+0ouCI(j2flADT+Lwm#IsRor8pa4s}6u2kR6jo80u&yo4A zq0q_w6RaD$--UhK#+ur3-|^u3L~CpIv4}x7WK8xNx%b7z-54u;@?8Y8cUnZxE<9tx z@)a$uKi&$hR)=oNcrSd!*P;J?+}roDufSZM=UFfA22bGg1AKl8J;yPpW4O=E?$88! zo6kI(@n6Po*YNz`!jGHye;oIG3;X@U9@ugIzm;*_#8}qe5!vDRN}S)VCv+Tuj&RQX zJa;@}dKLO?&++k$YY;TNb6MudT%t4KVfdGrx6a4l1nqo@f#hlYYjDrat1a$pW6vAu zN*gBHyW(|hyS#p9Y~_!Q^-6zi&QlvTzXjicOlqShBkR_xrt?>vQRX_|=vw*gvM0g! zkI8%UVa7JuJ7500Pv!gQjQNJ_e+bJuTnGKdDAtVZ={%Xgm!k`=f$0Gcc0{k99!72r z{*B|idl)?ot#3!(HrN>3#WO>5<3N3U83Tsi!DsqZbw*z*jf1nKk+@s?>zWkj>)xBz zYP1iV>{G=g=4OpORz%L-bJH4!b66Gov@!RyfAdEizn$+LIOitr@jU0ak7o4y<8VO6 zTiVc8=vKxaSxei6N0c%W`G~)FZsIZJBX(4uuWZ=DEKH4I&4Lb*&NEhoMdVJ2Xvw-CEH!=5Y?!q_%!M^p>W+Tk3UwUy6xt zhV1T*4w~ogKN=qL*ZSa5==PtHuPga~61HnRHep$gozHa}a%>**@?+-cdu?~-^D45m zDfe0pAMhXo7@kC58_7<|3-vU*DZQn!{>ePF^i2PnxfOc?gV*)_>X!b0GV?XJQtH#e z&?UNLf2MfeUX{0yA8BDNzIQWqFn;sBnzCD(__Nv$tp5q=|Pw@M4o8foIRkf7p z@5O!a%kVI@Yjf#)am@WHpNE(3+x0NVl)2ZJC6C8F%p<#xQa9|?Sp3Er$keHP?0+4y zJGg<*PVmV+-I}ol_v1gTw+!Su>z5ZXuGKqYE11uv$nJ3b&P1Mh4C6nkA9*pJu{;0& zl;cant~S(*9vNv=X6x!1njYXaAp*D#MgjpODs`f=U%>(bkT{a7D4J&^Nu;W;m2Yt9`> z-xud-E23YG>_kcT;4&W7W}{177Q3Ncj_nYWMR%lYT~E{v^Z6xhLXWx3*Ser~!gru4 z!|sXXK1lX%`Towkn9BrsxN84Jvh;Cvj#8EqhsHj{{*`t?J6QS|?Lp>buHE;y#2#oH zwF#$U6P#!Ic_%|FZGjlm`HIzt!@ovz);`{Y-l*$inV+>b_w*I3Z;Nf3!oA$r*FAlu zjd5k@6TI;Ubi)|)W#rHOvhQaO?$Nj=W9`LfG{3uU;rZS?174lOc&9U-NnpTrxZhdK zp_GZb%?%BMJyP@1hqQ8^lAeuht?^Lks+`1kryovvDSda@&yikI{f)FVzBEoR^J2#A zzE85mc5Cy$e%yRazZ}<>K4D-E7rD`5Hz-a^cwtduY`BuvGmTGfd{%& z>vj&@5}bq`R6gw|dxFnrpz|B(*#|qpJ7_u>V{(5V^nQ&+vMRQV?zKnfy8ap0E34Lv zc>G7OlC%vzGKP<>i`=S*y^x{0O|zdr^wp;6%cb#jo>9uGF;ZwK?lA|VEV^%SWbp{D zajl;9kHedZL%>02aQ|;2+n4hF2Yi&VPs*h#Q?WU9Oc)u;yCubcaxf(|(!b7TJvU3PK|VEGLh7V^8qyW+UeXENs`w;-*=D*7<>$lO9nH)CXdn0O_! zV4hQatV|di>9_2)OWogGg7kfk>y(rCkYR25&yk-;khKo`fD6#EpK!fBrS3O!3g@(9 zql}YW3p)b(+(*pSyeIh{uDc4GIGB0v!F5Z5dDW%Z{nqA1vekvhwZex0bXUh1`c`+8^;;<$=K3b{+8CKVa}|2d zICngDM&IW=NcPIOOZn4gTla}CjJ(xrK8@Z# zExnYzVCB?*N}7dU`a}2BvL>KBP2)OgXN;vxNjLL`hj8A?V;j@qlkBYaMoifV41!b82t8n_X5{=EIBq=UKD2AB3!m{f+ck0ju9Q9oG?v@;^tW!$ z{-^k$lmT^FIr#q*BlwO`Z9Wpj7ZG&~~2_vc; zlWX{l0Vi?K(a3}T)c4;$JgoAm?!PETbmaXB@;9_z5^P%UDUkN&ejCLCb!=1S zUDVUiJpRPks>J@TIo2+@CzZG*v842#%=DzSah7qobXI4rC5!nwf=5c4yKm6~t||4^ zxcdow=zEOcJidJeCk?{y@^O!3?b`V}R`fn$S&k2^@SzySyo!EjFZ}lcXzN~%=1;c5 z&bxol1jexEraW&fH3aUXKYySn^2c>|uL!-+|6g#Q58BW0X9&t6f83*dGW0fI zVhvjU*uz)y#68=@m8DNH?|MBl`7-oZ7wkth2XBn*dgAFEKZn2W4?7!Pi#z{oPht|V z({J!=VtVuP#>}0ed3@6)8&=r!1jgjLrjGD?d1T@eXfd37iyeA!t@~ZPj~sRHja&?7 zeB8U|&d3Ji2w!58+OyBmhv14vdLVt3|KKWZjPz8-rJph#Y#}aJu1ngLnDT(8Di^K% zX1+%c0=FX$OdFRhC1$?B2UUu zi5*k7cW#jv{fRka^P}2G<-q+Itg#zExW3VR`u5N`Yt~-j8fz2A;|DOO)8LhHxc#s8 z+u4hFH9Y$|_jR4gT8#e??%`e&w{h(tuJzsCpWg)jA+NK9lQ65G|`?}?@*4-<7s~$LoSB!{o8}9UJ!Fg*3;Yi*a;3TH14Qxf8lN%I=DT9t( z{*-GSg9TzU>}_tZo~OUrlHcu96~~JYtjTC+5_^{Uj_hkLf6dRn%(KHs?W)+!epblQ zwier-A8Rni>DKyQ+8NpBS^AslUGV4d_s{&bpUWC*xtGO5$jlau?Q-sQI^W+xzWQ)4 z_pWn)tH%d|D|VvS3!CEpb@su&1kKGK?m8U%j$ZA>xyJp*1_vNJhcmx^+{3*Xj^z6! zKF^?gk)1jplJAI}*55PK#q4zQ_WJhJLzEk1d411h&eu*`!xB@KerH=`C>Tor92!}t zN`FN5cas)tcdLBTY4H9C?t2h4JrJ4G?{0v6y1vJ?9M+SZ+Yx+*Fu$ky>Smyi0j&Z_R@JPu7aeuSpB-o;D)=bM;tATj<^s%8xkoO~K@9Tbr z$1e2qb-$wBQf^{@vo1rrwXKuo+Oi)-yK`ep6_Z%w5$k9}-sB#$8JoRVu3OO#w{mQ` zjqnZpKM(oen1LLMEM@%q31y_c9=6!vdOXkyEtQWlJ~lSayz4R(TxVW7@}mxA&cUtv zSTV!Af6I>gV_Z<*Kgu{x+pJwKV+H-JKK81Wp$8v(F!fdIVIR}`>|Rm&t_9Hb4eo8M zY_Hqi%;%;Rk%dtezOv6v8zg<*AHzN^dv9kj?t?hbK26uCxi8*N@fF4h_D>rpn3uMe zW`D8oNuJ4XzV}AiypZwS!1LUnfA1!2F=IP<9JZZnw%Y=n#`8=5l)kY&j20WM-pZS{ zIDz}g2WejV#`t%Aqx4lTwbNPW(w^UQPfPQ7?vX7`u%deZm7oLl~F*Ole;ImMQTHi=V>FM_qTPv-IT`^t@ZI@e<;EBc~c z`k{khQvFbRP3>uvzrOcyA9V2o=pCC|_nq~1ablV9#_<>%$6gw*IhOPXB>pwd5g&>T zgORQ4y7%0%&}J~dFUPpWipFb>ttVq&ijVKmyNBPujx8C8>NZrAE&MQ3C~fM#EHt2bI`_59bfr4`xxdic56QFFR8p-4!vFLzw!j= z$=Jm;FYi$K^X&8OJ_o)V&YI49+;24V*pcU~3;$Q-*nu4TD}SRmjr?BZp|oY{iZ;yo zX_u6X_%m&?bJRAyiw+GLRmq65Zw_|>a_br;ZNVY_^m=*~jM|QCoJS7R6kCv|$xP9>>@ljXN<$^eq_TM0g&VPi$Y>ql{I| zE@p7effzwuD0?F^7vm^#ckEH-X1&Dxx_kD2ov}K{(}!1cyAR&nI~pvE{)wfQ<6P%x zy;&^1JNJB?wL$$yz~8(XLGK(Wpg^uaj!|s()Y4Ll@mC3CE^q8(*``( zUWmVUMGyIVH+IVX=V86w1~HjbSO5W#E!<48DC^UfIvVYfnk@-VwF_Y2T^laAUdmhtF9@d=&RxFb+O*- zDEjs1_!ysmh3Cm<-)&sRqGB5J`u6R+ms-hx^T=X?X9rdBd+I6X;LaX{ZCthDxoga{ zEwHa`FIeA`d=U2kd5#^$F>!-+EBk(4ff!|~ zw8LLcWBlh%Ail*88RLH)n=^}ZM=~z=u=pP5?asZ7`Cn!n^SIwL{QudWoQq5u^Sjrz zHUI7qeH)&!Ofz}#UgXdCeSK)N{KnWsuAS2ve6su^dk}0>`Y7>DX$#tmn@j8!8A@G1 zKbwAi<>m@#q&$>3G`3&<%2RdLT!QZ%3;&WsP#^VY?hkJ~bR_qZ#_CymqOGl5gv?Cf zydUvfaD(ws=9#=OXtN@(=V5zXd+xduWp+6C+lTuvg-}}e zI0pioC!dIa5`T%;#b9%WLZdCfDA>%07~iqX&;8TwH~(xi^7s z)39|9aNjHY;9ro<4H(1kIPbIk{SNb(@^4uReM>p2W1O})5_!)$V(C}L&B^acLuu!_ zM04iGgfH_Y#H)n30!+6hkLOcsU+|T}N+e0hpV_%W`F?H!z)iT!M{F~sxaO~65 z$cwr1SGivkbLs^R|Fkvy;`j{i-v|S>Co|?(?%_VcMx~9-TuVC}jP0CbQ=N0{>VGg- z{oYu3W4_uGG*I$G?jc^3Bxl|HF=+G8|oAAJl60+$b(qt6 zu5t2P*dBY#t%?4l37fPlm=~V;ZZ9#J>&DFQ`L3MVoOcsr6;uD1|Lsfl9jCq%=|iqv zjpsfAP1Z!NeedZo#=iyUT!wsphPk#fj@wpe&BJ>5S$Nr-?}zl~8f0M@_t*p3{}Jae zhfcl3|G(-CmfMYM;r;s1`(-{?aPQ?;#J_Xw7;Nmw0bmHmyENaIK_42~lTzNx7%P}5 zemK}k|C@YDS??3;YfH+U(P-u$od`D4wiuVirbHe(ji}<8dX76b)_7B#WGy^B2ijY) zkv)7r;rJ-VHVEF&9*S>*=hjqbK{Mka*VIpjp4#B75j3}L9o5`+dim@@-;%Ldlba1M z_u~G$@VR?5w8a*g%g){x;_zdU1J@3{!Zp5Ixf?qFIr#D*&w7q=Tmmnxt#*ZPTc8`C z#Dn(idVQUG_+h`0c(&wAY<<>jGR(F(@{=&FIJV@M*j;@VBe{Qu^%ir+^31wY>Mp+1 zTfPO?>L0{E`UUysK9=Gg-z$`wgm}l?!F0wZ5A9{R0z26jizCBF@GSj@{EYvw{v=Od zU6+HY7_~jf44a%x>PnwTXwp58umY&d1#By&T_nbL=M%ur_%Y z-`7G`dcpJkICqu3(H-u4>^iIuM}AI59!|x!7*Bm4U0i|VuDQLIF*4U=c)oT6vi zU-zmArdhzX!8P(kozlL_1LKQdF30_`YkNbp7G%SoW9z-6pwD)EZh~ev^NB7PFU0@0 z=d0qQBKNUD!8DFys zm|nW%o#gK2za_HKjNDsWbKic~S69V1qPAo_`k4NlHvoF`bBEE$<(b@T zcaGi0ynl%fx?k8W(Ek*kSMs0{&aBs`)ANzF%;5uUU2H9LnM={8#QvvFojn|+xwggl zEBTe=)va4+pPs)#$9p;VRCHOMXls&VH^!RG^W}@ULEdOf_ThZ_WBg>?Y%il&>pWUhJ_N&V9~C*1m=;9S3jU<$fD6pTil?bd>s$J&_CKZ--sLn4Etn^B%D|n1tWl zlj#`7XwC6*?B>gycP!tJTNU5N`71HkOVQVpCz5AFPQKa|JI^y_@ckRiXY2%`|!4YNLmAd{6bfLAmib;~QRbIpo=3La-?#wayZ}qc`&r=J~ZYc-8zi)mE zy2Ag~ZRK@rllV}6$7g7#jzd4>x%e>tVk-BLw@*XQU_$lJTAuY2dFvin}U=on7}>-`)~9wkh~4s zZ?!sh7QX$Ed&oa^)gG!@&}h5=L*9FaSyi2n+b|#~G7eS10z(H;7^D|v7|PI*D)wOP zO0%HYVnt0b0UK%%#D+1p2!a}ds1bYAfW|J^V+R!xMgRAG_V1D9$)L$~z2Dvs=Q?fg zwVw6#w$_HP%nyIc8p8I>;y%xx^2{msd)uqs7@T|l`@e=~`tv5_p~2uxKCMZ3zOBzR zGq+I&Jy${hMs0`}SXVP-p%mIb%zA6qg#Q`u0%&^cIDB#BS6@#bUB6p-xsthR!8==c z9}leGRc3r}x|}(_fOoEdFP<)-F2Zl00r!-u(04y*!*6eK&&y@hq2T|IipkZmhF0i= zD;VPkV19-Ff)CWyX^kZE@>qiL(dLXU`jdz71Rp`el4O3I5Thi0eVD z=g*9#FK}QjUhs)Lt3I;N!2aBx{AWMfkkYKTW)S}!4{di~4Eu2VvWAJnkU?PGm3tqX zz&fDCIjrGN!1Flw9|7F?JQuoN-6KuRBLv?WH_n9S5tFFz_06P@bV%ciCal-IK&mg) z@A_Hxg&HH6E7=V19*KO4TXjK$oicr(PxVX(5MrL`3w>HS!z1%l~xoWYV(sJSre*2F9Lr+BgC)MTY z8e@Ix4E2S2{6G8>bakv%KT$g7$93T+nyZ#J`XG@{GIkIbX-pfr#f`|QK1cNGo0Cn? ztS~Pdd#VrOv$@2tq4mDCvG0s)AFw^#%BQ(RX&=v`*#f>=aDD9>SwG+g?mJ>|)+6Wn z#-XR<^}5eb z7|k_D?2QiQ{!^ga5MDm(Xm z53r7o%yVsffU5(YnfqFB*a==<0>4iMzSaEyD*qkQo4Av?&t{%y8T$$B`HuWvxE=P6 z-(KhYO{^`SCqh@{_o(IPz4C2}JTep9rhH;uL)~f)AoX8U9T4)L=IO&nNOiID9lnCP zLY*9Ot9dYaO~1ijfZ(^wncsdm{a4=>Afh4Pud-$&jw-)SvHd&i}@^Nfvc zLx!ylNB(RY>sFqRh2B&79C;bzU46CaVVw>ys@Lpaw{E{`ILu~x)cpYdNj-(WrWoerFFUYmZA_3AC9=!zlOWpr8r^O>I=&H8+{ zrTypKfUha^m|io}=RW_*JigC`H3#UKMEX=xIre5;ZIkEQO-9!5;JfE$bOJZ$ zGsbuDP9f{^+0B1tjm?XRZJ_^s;Qq-0{KnY(0Lv6$_53yC9_76Wzbyckx3+_y!R_me zH?|rz>#?kxYyJlA768W={67J{IDpq$*6|?xcNg$1?+J{o^$I@s1*XIJ{6qt22d`ZP zZWk4BJ`ZbN&*yi6;SD}N%lNIiZb!yC16W3Yx9x%TQO5Wd*lTjnP0(R4-ai4x{lK>m z+nL!A+rYJ-wPXGKzMSz+;hK-D;4fAMKV__~8S{a!>cBpqG0x<_3E(GZzxUhfcSRhg z&k%lZ*sjQ-s|Uhw(EeEe+ogFXbH)&!(_zfu^9&CL-{!0TgI&Bd(z8T&z=c;o$MR%x!-?A4$PC=x8(Wi>f)UzWO`U%Nu6q(YY&{c2KS-5C(fMA zHQ?}g=3!v|3;1@FBmmM!2L09N@Lc1|43R#UO&yLEZ~0gD*8g! z{?nXb)DM;2uHZvI$n)pz2VnWRo{3d_jvT)|R$ta6hYDS##rw#B`Coel=5^#A#<3=B zZ@u+kd!(h)BF3swi#$L7r?o}>d}}rOKI+|%p`WpkH5+MZT|nQ)^Zt*9|Ex9Idmr^i z_vS{={d>?(x<@YA^RLfhY@ZKi-<353`wP?)FTt-qGeFxVH%6JDG7d^%%az`AeD8y|wC~zqA7mzK;U_k*!%L@OD71&MIYXd%(-eHS`??4Bc7# ze8zf>@%O5N-vX`=8}w5?-&VX3HY;?|0pM(9^(;P+kK+uDG&V4&ZH+-bmUp!;`tI^- zjgjyKyklKEc+LEiI>|hrezAPwGg*xL&Fg6gJnLl60PxPb^mEtuffvC+DeLuFr7wXm z_txu|nk%iwck|FsgM;uf&*l0#(Bn<`pTLCq>KJM6Csti}f7TCk1Y}(&A2)*dODff~pid{XD#OLkxy4r;Nw`XFW~0K`Mu#z(2&o!^Z8e;p&{>m_yi3)=JKMBwjFrP`IOKt-(H0t*Qb(y z9ba9mjk0d7K6M^-qIsVa!L4%z&h=l^YvwSP?FWB=Z}rs5;rK4Bzb7#HtVnyG?7{vT zJ`lDaz(p6v4Y&dq!50ySr@mgmXDl5x25o@)Tbu}|zL~i*VYO#c{0OhHXXxM)$7k>= zU!EZ)Y;W?uFYn6Hm3=c92abgIkU4utuPVU40&_9{pUQdz?!af{pM*bfn&zI=8Rir8 zVPTh_)UsWR`xdly;gjwMpFO-!rZbG&(;C;ktWDq3bw#dGn`B&Wepf!Y7JBJNG;fDq z7=|43+1lhy(B(*Utu?H8_J#grA+N8&!BW6)^-f419kIZ3@8a zXS`1Wp4Z`{j&0xpc=C_nu6@&=u6Z=D>BHsQw;Q-Wt$C$>w>h!s6KV+#<>Qo2Gk|ql zv6}VY#^68VwdmVO?c*}WGApWpV4?PYD1~t2%G=tAKD+Neo?oW>y_r#FgKM_E8%{1jr8|?mhcm&6+^?} zS$=#YJbVw=syEZTntOirCnLXhEpr+JDAUTawLo)hT$b$(W}aLQnX$~TJ;v{wdFeaY zvmbq`?%D8cTzv^^S(CZOJiK~3a%-NiWj;V(6cXf~m7c46qkr^6l__~Q`lcfX=hvDg6}vR(%z7*v2f{1N|1y2{kWw5A$0K@T`CPkQxF&@v8LY?L zSPyjUM&ADf&U!HJ!_0kQQRep^0a5FMi|OFGS$Am1{0)IcUv~<8<~~p5-kN>nU?P`g z4l8m_OTnQ&uYRsN_n;ks1Dy2a^M~N>TjoBb0dVu)8G1j!y3S(UJNv^|tZ7~+>K zT1KY9Xk&jo8c zVo%GswhI0d_swCBNx(On?_n?V_0hI;QRpFkp|GQAFRHdQa$xEab%=W0JWuF~&;{Yk zDDUP9ly!YeV?t$F+oB$KUzGM!`BIKNcinjG7U*XWh`hTNJ!QSLA3DUG@X5vS$M)Dw z_|aOqJm#~q%-b$60q@}GBKX4RV|8cVBKUgJ80LmwHgj*9XER38hECv`OITkO=0CI> z_-uiUL8Gu~QUA*KJyIJR@k_o=4}Gp3)aK@FA!DbwG}m%8|C>kCChC{Cea$oI)0a0-V-7?eW_>{4 z-si%p#~uNfp21?COkdNp-0jKv9-JNzetqt(`L9**=4N2jH|Wgu_AKbzzYZPElh_kq zz_|9Ox`D?qv<)JMe6M=g>CzxZrm!xX~_oR+9dQxi0NT8K2jnQ^cS7Mfdp| zSL*xekEoyBvu9tEH4}Z4-H=!7jZr(9#n=Pk0r6^&nmr@-HmO&Ap6vF}(cX~QJ8JLR zy`9j9%vF!i7xDRhblk4oZ++mQ0a-1eur<1y->N~M9<1fPQuHeD-^b^!z_301cH$^( z95CJoop(hRzk+tb|7jcjK6;MZj__;}i}-R(TJ9RJ#;*NPS4jt3%wJnk7k@o6A>2Lhte%xb$OIg*{=r^hhr|`c$-(Qtx zd0_b<`W3ZD=7;Q!e;oST2NpeG>O_4y&!XBNcsxIBRdE()gbaIzSkPISHBK^LY%QRC z4`Rf2nOv#|tJgp$!B?L!Mt@|yd?^i5-huF&5cm34;>yu$WL_mdlExvOiTz0VW=5Pfa#S-lbrhmh#72 zMd*xfncZB={qo9}$cg)W%}Ym4I`SLxPn;oS>@j3W#!J={-1pmmP!@A&7sf)*h&8kk z>KS9{v|mZPu@qiChPfB4rXNsO<} zn=c!NKM!o$H}mGkAlkVGT<`w84UA(PqP?rj@8;0$nbhXZ;+jJK`zJ8_Oc>)6bL#H- zu@7HeYOla-==vdZm|J&0pZRsq(Y8;({iAQeNA@<|#x_cvnIX$1@3t&8t*WTUXPu6Uozj4b3-p%K_ zU+f9SY|I*rWp?6PpNIJ*ys<04`HYj+jODZ6J=tJ7Z}p-fPV@%<*@|^{m#%fbBBA zFJ&!0f9)`Ezpfa5LUva{OwW)oCYn43`Cz`+`2S?a_@W3ukTpEX>m6Rr!FfwwV}WG= zcsp@q)^oHUaF66=t-$A+_)HF;$Kl>M<0s{)IvuC(-Gk3TzF&*`1&KTea^am z0ER+dyDl-iJTz}oOx**RdUoJ?ctwA;B3+#B$yML#7v*v=jG-=6|EcrT zcR3%1-?d5VkBE=Vv4_l>C(!rsTos?W@-{ft2HA&fJxc%aWMDSu>8g4Zhw;bZVR8vN`9FCE32-{ZGpWc)q;cde-(k*+yn zqKJpWFP{M^&1Jd%ur=Z#@>b#_;>gI&{$UvUaKFq}906>x$4FZdHX?jJZT>&HXZn0C zb6JO0Uz;nk*Ge57c3!-ycNf49=GFD}+<$Bg`YP))_EC3=?|&b1&+>k<76hW144Chphp2b(k^hsoZDJrF{c+p~*b%J79RGKkN;Bqkg6@s(^3z z2B`kPK)80m3h_+K(X>Hg%UFy$CV}1LOD{Z0n&)nRV@Q5~0T1O7f z+J(05YUET|ljdKwC%?cw_Kmy*?N5N7+N}BT;FePK_>fEn&*t7P#mF>sKE*Y2q2Ea4 z={jIr$F<|eXMC}Hzs$yHOMK?H^>ja&v7Jki&(?FiFJ&8{b3HpxH0_A&>6;x`jGOKXKv{$&ga^-%pbm={hHRa9o- zh~Mh)`C#6EV4jYA?!o_U_+FdOgIMQUzVFEx1-u_rf{tRXZTN2t|Mlm$Gk~Qgb60`a zCqk2z1K?NwzhMIUlK&Sn)>GhNHn7izUVHG{KK%b3@7i2rp`VLoL$9U0CZEY)k)wEo zd8;AA@|n-~4BeK-I@U|lIL91?actB>jBm8%k(&$MB~RU3n%Sgd;T?6>Qr0>J{A-`w zGpFxw4RHzAE#swcFF%=+vqvH9yEVk;z?aWE)yJL67@rQw_`-Noy>Sg=`Fx5Uz@NP% z+WL3lyKmv?w9lY6a=Q!~p3L~WgU@TZFYJ1XPi=bC^ORFY;;Y&>9Ov-5-!Hchm$@2`M^EzK%_B2==(8c-#kQUW zKQuLy z)Z^rznZ=ne^P?ZbcufDJev(&Gos`-{c}6@%44lTj*2v_c$5@v(&~r%Fm*b;!<9EjY z5Ij~C&+7lA_R+Xi-qIc#S8nEBeVeF7MeO$!^R0sRah`@}4H~1_%l$ieM0>WS6xue) zVlCsT=fHg#^t*xoD#KsKLY^Dte&^2Mcm()4AG-aO>)wKn5d&-hhDP{e%B}cL`7Cma zY2Tavqqt7xRNj;Cl*hpD2KdQ+=jH?S6Rh9s6B_S}7iCa<=ocz$_HF3v*|%bC?a~RE z9=86a4t9;MZ*E)0fX^R+Kb0x#P@Z{jA7>fFR;E_*pU<^5S7S}468Fr4W)-bbI~ci{ zR3FXYHu)*Fd1=kX{F-@~uzgW42%Qu?n%X;aEBaIBP0WAF6Kfg2Gt6V{CF-b=i_oT7 z`&9qPBj&!$dzxE_8h|+j^9R*fueC*=$E=@g-LEY;H9u+J_uqJ};5C-(-vTGSxhBPf zy#dl$9K`xvyX#i3{L-GUu;SZi1qa2yFCIYjl(zK+N=1k-FycaM^@o{H14a*`(srZga0-bAkVx$ zEXlih^onZwX-;kc`cpj= z{1VR&Ru}1ehp!#_Mc(lYyzsg0gNfb{Yw+e$)iF_Px5rL81TV=)k(=rbeCCKge;|G6`KX57?-&*pXXf!=1E%E+vKkov}F1{Fdd^B={~rz!Lg9b-*z z71vkd`s1Kc&>_|Dp=-9K=hZplKVR>_9yz-w-a{5c291BTgOS6QS0nDxFW93A_ISuo zbJkI}Tg$lWsHoq$*DrDayMR-3h2{dy1A4aYGVr3T8nY^=_8x%JT>Rob*5^&v}*FE6iD&Py82k&nyPo3)eKFD(D1pSPPY^{1C_+MHC?`vzVBZzx>S^Z}( zvUNM{W!S}ez$f2|TlrMGXg<}PsCLnQj9kAK|5>LqUny^zQyIbf?CY%$4z&q@QmGvL z41}h4fc$sB?|QCj!kGKF%W9mX_%EK&GA=%zgZ}hIw~pjM31e zyb65KZ7crrc{cUK)SH2$)R#?lMC!+;xQbX^e94>URHEJ)akq8P&qF*O33ftGZU( zl;Shw-`F$Nv7uj;e`^}%IJ8&!IS%ps8(@T;ep0g(uj*O-m7Bne{Avy>bZpoa6LT_r&ITGAOE>jy#K7{rJ;D*gJOQob zV{2lbrDYDzc-DB&xWeA>^La@x&%hG)J>gH`w^pEB|D!gsANsXht*vsL+LNG#He+V- zRyf_OCU50xl)MK_44d;|lq36M7V+I$uYSpv(yT@#94lGdF7VgK&}Pt3avQ9x9_zUX z*g~HONBFdXOW{#(1ir*m_z3d#TITBv5Y1VS_2=-d?JH=&8jMBk<-P@(6AtZ6HLiOV zy!>Twmh-dza|qYn1%B3X-Sb>Cobl=fuY&7**-QCIJ1f3I&&gBDqcDeFleXd0D3|Ir zbMo5P$i*wG)-6I_t+|J-wdcYfBx5dZZ5euIcy;_|WXn8x>=AB??Y4i&GqqmooyqG; zaCQi5cYlDgdnljlmu5N72Z6!xyt3d z(o8RZ-HbKyd&JkuzXlTemd73j;t&I$ECan{NYnoB*zumGifY+ zgmcSf?Q!bM zIPRHx6g(>1+Lx-Vy?~cBQ=cJsG2^-C@9r|{hkK$2;fn>(t*8%n4_x#bPK^sZY{BlF zT$S8l73PM&k74}f1@OcU*ozU=WCm=-P3kX&Jj(Z}ZfjX=-!Ik5W!Hm1aKFSG-%7GRJIB`!QUTzpqt4)jEc_ z_Z+mzTx0LMak(|Yi@@t5{m&CQHck!?@)OXO`LZ=bJM>=}uEM|Fq!niXv_ zI}yBPe##n*x=?xfzL?koS$hM1vNm!XYxNAzKLD%x;3;@&4`P#3`E3ULkuNW)&Dd7_ z7d59`p^3O>Ts);d3i#~=!87_p`iAzR=pX8X2M?)#!dmwV>o^V|uFqx083|)IS+{$;JO`^U3oOP7+L5DMTH@?qg zjFb57qrsIbt?k4$%yA@Zeg(Ly^V@IuzksoV-l5;~X`JeS=y(2a;!SCt)&VB@h ziFr;dXDy7M`it5n$I?$!FB(^>I~-4&AkCzY`$Ej&IM(zA(4DayCt{GF%U$K`-LzJ! z{t2BcpM<`(ztMfttC>$d>$4y7_3K9DQT@7(YmNnf!c!5h@@;|sRBCILsqjUVCD*S0 z6E5Q><6mJjH*J50@om6q%%_j6zhO+}Gb^o~nlDsG`TW*R@QCL@`yBB{xn^iHcn5w9 zektZ!b&av>F2Hs;>utsR8Su<|{Qe>^9LV}!=Jh79y3Wum(ofoHUYIJSF6-^g#77uP4(7dOY%0T`+=&kODG4~EhA##q|f+?h7O?pefjxjyoPrvuj% zaJmrMJkIC+p-WLe@?FSV=wkh`iufaVH`U3Zi{%sLEcM4=x1ZS9(7E}!m&gHzEmhyz zXChwGI7OQp`@%PsX1deb4T>U98sx!r_dQ(|_8$1pgi7np+ z`ooWBagBD<8pE#8_O|hv-SnAA?p<+jlrc|nYyM*#_2P^C*Bixo4fnfee+&5i5d3U_F6u%Xjl>?{oe8waF==GvDL$w&)!`cnXhllg6Im zQ-wd}ehu|u=&XoA!&i!$MS0&$=jvZa?lSs@^qq{u^pVV^t4pkddcLr^bo=V`jm)V> zu2MU=Ls{k**|X6W{HtT^`Oz=Z4$gv17XzPX0mRwf_O0qCxu?!^t;`dfhdK?sb{`GS z8KcdF4A)hmi}-$+F>YfH&wp5s&ho6OQyVc~8{%Kq@WDLho{zn1 z2L4j|{WpHHdu}3D-qtgoqIRV$r~a}!)A%a<<;XKcEjRq7&}-oztKY1lgzpqN2kX7& zr?nZ+E{axiXwI8{1Hk!3;N@{}ZVaWYcutwI ztaiqHmGP`}Je9dTYfB>SQdpM{=nS?AsTfS3CV(KnZYk9%1|4QM=% z`@UcupEK^=$l#&OGlsFRtMZ?8{Uuu&K0?^aRF9_dY3NdA%{=I`TFeO?h2X`$9qFCY z`j?(1A|Ir=j^Kybs}u37yy002+Fg0XST^b(=|1p$TP*KD?*HiBaGyrlY2zO2{qmLZ zj`AM0=!kt%UNc{%9e1C%doR@e#>D!R@?EZW0$z-bn}eh19Wa-!?$``G`kp>VG<;9} z^82}09TKtAO^iR8Yt7?Ye~Girqo%0eWsSnxw`Y#Ir^53UJ*z9;z_um_ZpA1a)DnG(?)=`w9#r3c~%vFc~HUpDBgLdqAaA*9#koUt_ zgXb*zEG6}#`zq=WBsbe4^K)93V1vNX_vpx8@S)GS@XR#rUJur4Uo=b1otLT&v_INj zw!N6!-kW!r=N@Q&B6#ymMW3y9Ftj`ahW6~l-6yb@v=cg=_0|R+?WX%9>`nPK@cbHl zc^={?#l(@&^NFG0hURXr)%))i`l$0A@J z550=O!D#R}a4fz$-_K+17xTR#I%*f}#kb6PW(hQQZq_t{`)>m`S9AS*ew$kbJV4Ku zeSwSX*YjH;Ykra6d+mX)=X;k@cpV(>usyhAjmx3$wroqj@2218{y+7MwnH70Z^t9I zmF7Uz0b#54L$wjs2DAwwSIU%f*;Jxe@#6 z$C&feKI)5V3teOM4O^dcoz}Z+z^mIse{?pU6?Q*-F6rbxO!c_*vHvj6ZVy_yjxz3bE$UtOM=s*K`z9_1c4ME` zd{?hkf_5xDXRBxPZoSzat6P!((R^3;SfAA%FB+HSh}Q8tVps{%RC_agQn!`2rGb?|}-qZY7(qSuZ@@sI?EsZU=g`0>oBj$))MB2L9=DPJ2%!5XMv^ZSA+RS~X{(w9uziH#G6CVryrf}U?rCH2&98BdopHZu=wqMr2 z>GR|b$;Xw(p*$N&xD_u&okj?R_l=QjlL%AnzIY` zLZm)s>OV%!F=G0NDr z_l0Azxy)q@*@JZq0)EeNe3AK%;J?pUOXvvC0d$|@-S9$Vu6Y$cE(PAM@WD&WBnD|G6kV$LpPD&jTqnC3{7 z8GGI%29J7C$b>TBzDMIAeG%gy^Io1+y}1&;U#Bc?u{UW;9sCgJC2#)|9ytLVM~=&$ zc+XW=7gjCIY}BlJ;G;D;6W}}ne6)fW3&CmdpSo`oc>4`JHWpg%!{@Jgy~(w+k&#Qe z{v&9W;_2sbWWQMWFyVX3TY&T9xi0cp#HHFB{hHu6b42nRqLQnFDd*-GK81eoA&Wcl zpZUEVz?pHBbp_9J)dpk-}*EjMqUiXX*?XtR8oE;7yM~+QB zTw`Qrqs{Y}SB+ec=Pjf>r%b24;wwP5`q%y+pBZY5J`FzK2(E%B%?EidoAzD)w5L)3 za!D!j2W+|XHNl7a!ThYcA@=8LSyC<^F`5*67jQVqWO$QdkM@NHDFA2 zwmfcK^Ci};zBV^LA0AP+T+e%)ix&Op#?ez)m*=9jXC3Bvjg=!G=yROxuPA3No+Gdx zoq8TT5q(Y8$`=7&cg8-7buZ>Mn>D!)SiSTd@_7;bH3wLpMGns?M#i9raqVjUzYl)h zqX+ZX&FnzSrubPcGx_uRTt3UC1M`pIexE%&tRc7s|ModrLp=+cy~^B=f!lYv{v=?# zpS4s5uC;vj%$b|vg@&xtb7}Q)qP806=quaS&Gg01YZ;#&fjk_>T3$r=y~un!GR|_w zsShlRf%RqPtpr^UMsJjX`^T7j7v^}4u@2mW`C0Rh{kWGgPGaoOs(>S$;cqGfC)Yg4 z_tP4%9`JoO*N1%N>x|UrH(phi)TI%tsYA_c>Z^LLko+fag&%bZGIBI)IT4@kwLbr; zpHd$wVvMM5IG?uA_}Dp9KRRDlqkd&xEo9VqEY9In7Ck#L^jDf=Jrf>P?!pHOpT|9` z>bO6S0`II--&h^zzKh678G9%r?qyE%r}{AFlzfia2jIs%_j>4WO;tXh11)+F-fCMt zhiYgiau2{FZ=1`p2gEv7(fAC9)-R09?YXVR?*m$7ym<+q<-Kc}PaX@KVV*_4+6Uk6 z@HT{$$n{kI{}(*4JO61b!dI;*{*9Pdn(KoE&5e1ZKC6w0yrezZ)&-+COFuLGOY@GM z%d$M(W112~F&Qy|R0zONHI%S4{2;o$6;b;SQ`zf9cm;-yS-9hPb*TbcAR1s~=u( zgstVe{gI=9T|4*{bPXEj%ToB3A-CGUSXcB5NJr~J%7c9Z?mrTK?a9@($onzAbxrx# zUTb|9aqL+a#%RK3kM-apY#guPDfuaSGMqnn$NB81aSr=3JOfXDl~-e3zqFozcR))2vdlJ)#|DWD z`K_3>?+X770f#mD9yup*V{O7b<8|;#tnGiHmuqq@K_k~7orHTcaBe8f`uU`fGeg{8_H|9x6b5Tzghp$=Ua$t_gBmYkNO2qalJKlbJ?D4>e;0}SN8cq=zI7= z8yol+_Yd*^3goL*J8F%I`~;s>gpZWBv_Hn>>VWWv$uK75%YJAup_(j@>yq}LihK$#qPTuqwl?*5#g93@@NIpD=s#G0oD~*%UGq}n%sn1yFM+iq&(kb}Z*~C3 z#U;k=CSdfET8NOMTQ*KAW%7 z7hMnUtYbXm-j@7lohIrtEx5+IjCR|2*z>OD^4(`oSPR`BIHg|$<{t`u)=a<`uMJGl z!FtQRjQusZ@cD_t6r?RCO-1504Yp{=^Dm+@+30!Nxc49sJcMo%Y z%lq-HZ{fhL>kIu5YYX2ze2O$*mFfv?v1iSs_5$+!SR)TVD(r;u^FUNWnS9;TAz7c%DOzuTl-;6pdq-L27l>;n>Rdjh{0%pBU3m5gD0_Z)EC$Zv=9pU;QazWW?B_fq-1Gtc+w-i~;u3;k`t z`4_G^nsvOs9b>Sj=a7eUf$ff}_`fwWK8^h*zl39X*t~^2Y#vxXwzntEMfluic{=I< z>RodL?h~>5ae1LouHG1;^X^u8xHF?Wt4qgD?cxH$)u?jixIZd6=gYFxj20m{c zn&D}F5%M_J4K*?N6Eu z*GEd_OFM0T#xskQv&f5UpCV5a_FJAy^W)m_$jLzF+&P#LBbqC>cBgFW)7Xy_eU44Q z{XBR^`!C+j#p>(WCpQQ@**BqmdjWn78>inn0RA<$v=<_^Yu345ga-CNn48hQy$au3 z8w_96zK4H}+-mFWeOOhT#iX7ksT`QISqBf?+$r-v{>nUK(Q_LZ$9*8jB2S*>5H(_J zjc0J*E5K_$$8%VH_GILA%;#BqwHE2KTwg>l{+)GC09JGI+EQyL_C3fmN5LBn8N=R& zoSy@4*~_q$>)oej-=?{pwea|PEYBQI{mRVGI^1g-eGTRdxi$A3?k^ zfERN=C1c?O#_PW)I0lyH{fG^iV{dTLlh4)xcR&`}0gL?&ExEQ4_kIr!?_?~`iSrzU zj~Zc1poz7CgIMP|UC}v%GW)w~k4%T!|4@suwrAYSn9rP08*p0-nY0(eXO|h59}W+A zMx?sL=S05DSSPc7pB1?qJhTX#-Hz+J!#^9iXM131242hHbI;VbcfzwEtAY=0dBhlR zL7SPtZ;j078fw?A<*sF2_OadujjhLPr@JuzG1##q!ODddg&l&6Sgk(fz`q4q#u1>uDc9AR1Yy_P8X?{BOhRW);hu@=JVVb?V7y+ z5hJ8}MV*rR#cLT)y<*KT`Kgd-v?Gv{wE-vSA$QnRk&(>H!^AFz)%#uP5_V zg@zx4o8I6z^nIF_4_xN^4f(!;IzIIk)al|g;>qj4N96OO7u_DYsBdcb)Z^x!BIXEO z{|1<~g|VmWD{yBo`bK2JTBZAUe8#B0#TIy6J*$q@mr^I%BjcGi#@9{2n{_eIs<1E1 zJ^tPJU7Rjt4L-lJ02Ao#yJm67&pX2{B;2n*u-psvEf%|-) zS-gd>6+Eb&*H(Lm*EQ&;S&a7u@LUbwpTJlRfoB}@8}u;lPi?O}p4#7vXk&l7^QAS& zZPiUuy6K-RtF=`ow9nz|dA5@D)JB^p)=sB%)gK-(5*dfTwAft`aho27ch@}BD!pFIeM0HBko-Yk4Ft%U*S9WL4P6b(a>*j|AcYT zY~B}DA_u^`wMTsk&rmd$(U4R7=avzNGcI3qE`9B|+{tBGdkUT%b zeoTGzsEw+(Jnz2@TrB}c^XB>?%iz_^`;yb)zNja8=8ip37Zhi8CFOHIutzQFD8@F1 zw;ywT5wzvHv!Tnvep!#XwI%ye>=p3bQ2mqBI$?8w>%#4_SpObiiFiNc{AT3!De$k} zbbrY|!L7Q}p38O2U!6Il2K5#={tbBZOxnGf>xa7VJokJA4yzy|E12h@LUNUS? zAIQhRdMWrF$ojVj4^NH8XMkp#nNQ#34z9D0+B(#}{B}1u*oiUiIWQC>%n)xTLy2wR~bIxbz2qk5#Xe} zDn1ymn!whH-_GUQ`xviZD_{T*e?~U;fhL#o`h8z)54hbP94?1;e}?a$FNd$;+tru;u#( z`8qSz%lUdTVwN;sN#hjbH}zoJ52wyk-YAhZPNW2;cG~f z@HMnK=6$2y<$ewAPS_j$4$szc?=j2I*^TJ0pTc+Tf-&GRd^VqB46ff%#u)13$^34d zXT8h3#zFjVtQU1J<2dQ`GWV(@_4Vv`d<@y|w-58NR{PX@!B5tgJX6w~r9R3D4CPr+ z?u~L^jkU$E_`MtR`FtULKlP8jqMo7S^M!61Pn{h3^8A?H`Ts-4KaO$6pqrYqK=nq$ z7Fo=pER88;Jnmh}HN(JDW#AnMT-$T)eFf-q=>1#x@=o5D^4bS@{>l4ZP03v{->1Cy z0p78UAO29(qf?pFAD6D?0rVB6n|0oxm2^pIv7R;PcYn%z$dNYPex3uFa}#i%39RNw z?3d7-xL2 zCohbCEAL-1KX1!lPU|x6`BmS@+e7;RH?W9{nZ;XkC82lBJIdqXOPg;~&qSYK8-3 zT7S!$nvI7J;Oz1?S>60F~N4T-H?tF}DY>`K2-7+uk&Fzd1eY9Bui2B=ejB z4&6s-pH1$pGGM(Myjer+2aM;J!0+HxJ>MDJ^nu@wM5e|tj=6>(Saah#(54ul1R7k; ze5sDEXnmugNq)SMu2*@ETDv@}om8$PX3$>dpZQ^aPkxq%b3F&}ll&?!=5@?$OTe3~oZd!ONMf5m+GegfB+C(F?v+-q-?N%>XUhklhmmBm8finvxDl`oBD z)vv~|fs529IAvHyZ|mUN8~wK_jAJe$V!}AzN}A76@f4g?O*k~UUScbc2H zsXA(vvDyN|mnFat+&(ki8oB2+e90U)F^A9NZPODy!Fcmn^I5<$omUU;4PG%%@JoD> z{~USwBk}_JQ`+LdOXO~XKaB4KFZ#LW;+5HaeHL}E58(r!GbNuWC)VmVm1erlnAuoZ z{?JCZW?klQ2DZ)YwfHNlhkb03`BT~+@n~GS8!#?mUgb+XS`#vtZ613J_nirB;?iCN zZI8L@A>iMAdR3u;d+~a6{V5GtD>}t|^hoSLG2izC$IB1kJJ(w`nmvfI+o4C{?Yn{X zFT8@sehJs9Otxf=`97_<4?AxzGR3?6n9qyi`v%q(JQ+C=&qFT*E}z#BwfQf>i}^C~ zY+Ru{itDiPllknvkOt7ln0_Z@MfqC;PyLRyd(Ooryza%e`25PL=&m?lsuKTS0^hA3 z$Q+FE9p6u9yx!QE5@@^;dWTLnCaex#UjdHOpwD__KKM0sTbkQS^;_yI=ErA&w=@pW z-UP1(pQ^{qx4HK=^^4?D<1z8p0r&!Mq0f8RQ zZ(}c0H^yv;ZtBZ#%KYcMWctlo=1Tt4ZhhN{d{!NB2tH!pgMPkwjK9I#&BvkpYGyY5 z1m?3x!G6L$jpcZ^*X%d|>BPHdWO#$Ykbg2aVS9*?xrccfzhh z>)Tn|se2+fyuL$68zb~*>>}jpSa4MxI3~kuzlM%aHe`I(GZq<|3@_Zty#tu*4iMLk z`M(2qkAs`nfomM&{IM0E8K)8J`ve_7nD2)pZ&wZne&lEx_j@j~^^JR2+fZP*i?Md& znvvjjAiP@I1-!zKy8zSSL-11==V@@Vm^I(RHTC!}pNEvi*iR6?SokX2s!v*zomsq9 z|3%Cn{+fQl`>Zi|EPRB>k;cC9@D=30w2#VOh1BoS)}}RI7IZ`b=A8-aZcVtkxYO$2t+7HExQ%?dDjY zf*$5rwPil5?9v+G3p#7p)ECx*_Jt<;M4rFV6PYvjYG1@`=-i+Aw14UobFWjl=6B^; zJQltE`WMsD&-T{N24;1RzD8$wD{8~Lp$}&9pSg$Y24y~KoZDi~wgh|ZdDPa6C$T2; zx7u0H|FC}SGrax)|Cr0w_Uen9$L-1MwC?yRH|`S{0_^siHsKocy6$;Bxj55( z5Ay$1;8@38)|w|Vo;KU(6RHc1ZLE1|!+oauB(62DYYnG*L^=PnQa*f?mZjT zn)~0t$1yda2{7Cb-d

yMwpI-B=4eW!$E$ zP5TtS%Y*`C6&TI{R^w%#abF)CT*dF7a_`SQf4)`~db6r#IU}D7b{F@oV-21wWG&x4 zAMWii?>@ByJP)&3-ygz!*3-?K9}J$&WosX`joL!(Up3&riSeETw}%0DXK2?S7<+=} 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 z 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 Y2|3GO$SUa7l~6J=%vzpIn(j~1J3zAkjP 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

-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

s{3QMQ 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�e@N>O(~;1bapgBCDnh?HRk4M+ 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�b%j{DX1 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 z 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

v-uFo@= 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 Mcj~nd)naP;uyOk3$p|YZm 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Û%I~%SzpKE_1bRByIQN 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�J)Nt?B9~ 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

e!)U3d(dQ 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 z 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

gDDp_1n=+%nOeS{CK9|*xs{O{J(OkJqE=akw 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 z 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

    @h9o@zF&RV95C#xgX zf$z7p@ep!rw{K5hcSQGbzvL`E&+pFRx^qTzZ=P{2b1;=QKFMF^{s|Qdxf|dk)HVn;7%_;T7-pN5(N{P03fpH*`&gqtG`@?vXxX)}rx@ z>lka-+B?jde&8T%u~^ca+*zz;v7JLv7kA(t{wRYxwY`Rk8+O(maaI5lj);) zE1d4p%$fN>VyFGM_g=hQBjO`-W~~wES`hE7%=7-qx_N=;iBVFw%e^o14hL{wb6(fx zn#rrcS0MjW_u;$EDtYxRC-dd*WQ^o>Z>KG>)7sR|+&?+$kFzG^ce!;_C+@Qe>u1)U z*f7S)nmVT=!`hokdvhP!@=Mw{wtuxJ;<4_G)uzZI*Z+qxjLgLs{VcI!IflXfKJu4* zy7;2u8{&^P@2Wacv&=YMF;;yhB+x-l6{(+a$-l6+h4>l^lqE;RNoJx(F7 zUD%5Ib>{k?^Njbn?u@Q&`0!2E^SX@rOZ54_n4hh9#+qESBxATZbG#H|Twk+`sxwjN zw@Z7Gcutx77M>{U)7ZLevgCy7T(|M``npUWtTCSOKH(FyA2K$j_vUR_QGQXp7_68z zX}l+S;N~{T^@Q6gF=KL^%!v(V%zAV!4q{BTJIRHWi;;&h=JU0cD;s2PxHd?x+%+fX zVhl3pG6WyG?u?zg&cu0gAFii&m@o63w(HEj`M%`LU0ZS-PmHQ!=YOJ2Ut4P@M>(0F+a_Zth>&KfD>)I0!nhU!XeKg*# zy)$pheanfr|NDQ}n*6$J%>1YcE3%fk?l#tvYf3vejd#!d{Q~zqnsyi~TF5%FmW5pV z9*p60+`~N{V!3`>a|IaAiv`pv49J+yZ8sVi48q%ZP}iL8gK zSYN~Wd{wSHhI^dOGvDPI+jFn`>7#oFKU$6T&6suL8rSAqe782^X6>ybHwLq@*7aw# zslVdy7a4#zt7sOW4uduX~THyjOJd;H|F$RyC?9> z+ZfOG?CT@QYWUuPdx9yLzj^#F>pAB?9LVS94QO|H+{YNP(b^Ux*4MZEZq|1A+`7Gu z|L2-6V_P$~t=4xPN6OMK|6t6GgXsrqb8{wyx$otESJ(Z|kdv(a zvMyMij|~nj^??4Nn6%Ud<|K$sedEYwOT| zk2x-JuX;gF^2=OneB_s0r(W1?7`BFcnosHZF8Yg;Xpgl)%#qKz;nq43A6s)zZqfS3 zXY#%w{aTFs9?6(kzqG{8S8^Y7d6JiTC3sLF|SFV4SXaAITy~KCB@bA-k zW)I|0{j&}8qOQ?zoUj?#ia9)$>-8N+4B>j->3-97jP*O*;|DA9T<)_iW7&(($MPD@ zd=BE@H_@g;TF_N|aT;w_#|)*<`|$mE*72cy_b1xKZJX}d7`(ze!}+QGWsmZlD`;bM zQLujRg>ZvmSL_M{jrEOn+^i=q(eVNFIXu|}?q|{l) zk(L;S%|T}7^ZU|&R&R-2k~j5Leyg6E&AU2EKRWgGFXH#s@k~5uA=jw0%9zjc$V>E9 zJ@#XMVDy){u?KOj*ysN3u=}*boELKi^wIa?ySgru_Y&`jbJS<t;vM(@ga&dzWiJdHljG9}co)aq_$=vKspVVpQ+89eQ-zNI4+*{k4cY{u`_Dg)1G5l72 z_vX%w?;7YU=0S|LfcD6p-9`V@dG61%{)>9={6Wk&K0>R`qc7Jmey483nC}J#WX$wk z7H`4dr=8Y&v}V|^>9=}s7=1aO@rs^Xh41g@TKChQITHOdrqXksFDG}lTYq#AzyCSc zJu!g3`%e3hX!^AN8^N{KY`7m85QBYyT;v?Ot$F_Le0Dv3Qz!PMAIUc!iC$Dcu0y-l zXZ}v*-r?5NjW_a}JGp*w#`a9wHI_DB!ruds0nggHleTY4zi4jLdwVjU-2WiPa{TV- zXU676um_iPs1tA57rn%|KEyo!nKoEUVt-_}Gcw$bd#NvHF}9Zu#3yAPiQmj+4lftX zR_192tJQIu+?<$9+;s|LDmSNIlY0-&l8YoOGt~dVslQ@!l2@yK zSGQZ&S>M)N#;3YfI=#%b^-OT_sZ6x2$yiU9?T#)^nB48Czjk^}Rf; zdfxcFb%>^MZ*~3mkPUTwbo!h8Ch-mHaLsV7(nqnYd1KZmx*ZuhcoevZdsy2}9QzD? zai7J1alKg9yj}U-FEKZdZ4P%&|I88cyz#9Whu67YE=t{Q-jIIrfaU2o?J*W|A@^?8 z>)W6U80YJHR=m>!zE^*nPq`S+kry_f$n!pLsna?LM zCO@Ek#z$W1jO=i4*QB|b<`!EAwGU(T4By|d8vX<8__)4R+$4UsdfyzUXZc+h`gPSN zj0-Y2W9LfWKhL-sN0~%h#J;Ze;M*~L{!`jEi2J|147PqlY#j573TS$f&w@o=>z@aQ z%59Z7Z_&Ap{Npkv5*=XfQ;9o+H|u(#y_m`1&8oObIOx(J&VG?Hujxz7UELRsE-x{r zInMgQKW8qCjV7gZa>r~CFXp0 zY^7I9e>wT3!Jg`v@MZeRvzc>ixQaoedr~jZ{V35x{m~)eukT@fS=)6U>s5WUC_I{d zTI#Bj+g4wRL+2>B{B6F`1<2f7WK&$Kf9?4UVp4V07a0dJseHHl15Rg5ZbDB5n~F<~ zDVb*&Olp3Rx=LR=cyt@&%)Ks~?FAlTJnmtA%FR7H3Z9I$bT(tLC$C3Y7bRX*w~1Nh z=hR{1)?ilie4b}rtH;Ey>N0C>&8IJQoNB&LFzP|{Dfl#c%sNcsQhjjwbTR4T^x?bc zqy@~Ex=cOBl5XYw#H8W=)Md%P2`1fuXUy(i#dD42nmePO+8SMV3BUa-{eBl)coyT) zXKbani{Ask=J!|^tTk{(+>oN3C|NQ=zN`Hw{AKMapguRoSUzzz$_>F%0mV8$F>f+O2(=%z;a@dX8jAbzC*O4{jy}x2^#HRY~jm}Os)_XPA9J39! zrdylOE)G@SG3}qio#Xjz3~jxN-_6?ilfHNz>ooGgON?3Sxl+F+-dpB#lz67@6N_KW zxl|XGdMLhbFiYv<*7F_{%Thn61I$a**X+&Mi7OV;?|K}n?mN0(U5~Cm`7M1yeL&Y) zaH#7{pD%g6u8)~K&ovN#O`C2UNncGrEqfre)%sfcSo&7_Qsy4~H|;!{`BS#$(9Vr` zroN1F@+)Led-ju&ZCuU{jMcWx`E>OE8R|rSJBj<9!Mk&=|4_GS?dAEFTyJ}^nkmib zfEBQn%uo1}*f3+Ka=CIRnRn|7I`{5%{EFj+UMc5aJ5}-_=IxYrN?8!g>Tjejo%q$b zXksuqJ2W+DV~g}ZVvEAf%F9Mxk{_$Q=#L}^HW*b~vM-8884|0?x8_VZF>7pzwnMJf zc;~xaD&IvJV``he!P<(g5W7as%u6+AVACFOj`U|*3py0JF@M~=0rO1FCr$iC{a>Eh z;2s9|FZ3B#;Z*%1>&JR_oO^x0$Ftqrn0@M=A2*i0>{|0oYHMcyEZaw7x-lgdu^Q=BCIZR`iJ25u*(vBA1@8dep zqWcr?%Dj5b{I(;kpU7i~pDWg5NUM@dI5u?fHVGjuq>@{I8nU3=!Q|G!{CF<_l*%-Ja={&VeG*Zi86HXK-wnS6kZ1q-HrkT_7=ur6- zX0hPLjGuWAV!^~?#e@2+!Gh*Mlz33z)&0(gp}X{9)ejRH&mQzu&eB+|7%^u}iWTKn z#Dl{(tMK5Ktf}C@ajb3QGuGcVPh1~2u^D~c?`%+UnvF2xDcDKz;f2W1Li9y&qI{tHF7=6rFmC2)7(4E_1F=`0 zZ9PHprLi9CUK{V3jg9&Q-ejDOGe6I~$%Ed;y^S-EW3Co(@4HYk;!wKLv?Sx<9vx%Q z8+E5mJ*zmhc~{9dTxNH46>}*z)y^9yI*Z@k(+NMCcFf{Ft1*`5h8s6JmvwDj;(ASD zv4Q(@S7y$wODvu>mc0h|Xz5qwhX1)MbHW%s&S!F8Vq5DK#}5yteTA_x?qtl#nrSOA z=eMIXN73%!+9UYg9NM-X{p!m1!MIa+#@}h$S;4u<)lPh>X)w7fjFEWvLB{`7?pJcL)`GZ)xxb2gJVzf}xc+shY=Zd^VLe*35i2icOVyX&u>){|gro z9Hs3jxmoL+m^WEsY2!_eY{bqZ@iovL!PjL@TKL;WHbHwJzA9}%>i4XK45MjJ z_Q6@v`-y!grer)R{IBuu`1Hn*;?oDK$Dg0yQsuq8#4}3$U5|BVuaR7_I{ZB5KXLEW zPAT=|&$hgp{OX?#fETh1{1eAK<_SLqcM?X&Dnc^$Y$x3{Bbp+73wEpmmJV*Vt8oyCb&0?(8N&3Imbd%R!!1Tx8Rkx^5 z)E(w^syFl>j^bYWwyu5a{#?b{kc$id?fTcB-H`SfSKe)pD&8`O`?$ufX{Dd~EdO@> zin}~3Zu~lx&+#~IiywL_*BnTH%5{0g#;jZVIjv*ot$p_0NNA$L(tC|&!czI(X4Be-4 z%*ypvUu(%N%UUbfnSP9U%7-9Z`m>E{W0icG>#Fo?OaH~Sm38HsO8$s@`PSvTtRHbu zIIx);vR2V$`Y*RJ-{y$8ZqDW9da)jheoMG5&yADQlC$#cM6rtNV_HjvS+XX?B63ru zKVpuv``nV>EO-6}gX!LY`Mh3cY{e9_82^KYVN3b9c)@jXEMqQzWd4ThL0((C`wH)# z8>d|FzXyIXuRD+>bGX(+F6Co>#&49}gV0;gbFb9eHy>-%7}jL}D&F%neK&8p8`qz} zGybs)&!rFZkx|bT;{T?b(3$2lOm|)I@4Ej`>i*9nXNk8dYx)Svm$4q>J8v<*?a5V{ z|E^qx(=GjEWotTZjBgz7ww@yp&Q|%!{`~!Wpi5fX;{4eUI-k#!pLdyG^{;Xhy{qiZ z=6Pb}vfhb2shmn33+wC3ZT99j#$To)vxl<|+!rl>X^xQk)V!eJ&eU<2lQd6I4pO{1 zgL{|{e+AD`R$k|R>P+{8%;fiz`D`c?__HpR&RoF1)sJE=_2V%-*Zmx$k##ZCV4m;Z z4RzyDe5WiKpYZ$!W$9AxW3Jy^zMDWh^go9npUWUS)465>pMQbAsT++g$j?Ow?#bUD z(&ql?tEtErL)rAr&Xu0qpS4t%sV}o;K2MyXCvAx?D`N~(nm-w9RNl%QmpVriY{3%y zM1D)%FBNZ?<5HK`Md1!*b|T}LID~pJIk)jy@C1!40=}-Bex_n=~ z^e25*;}j(?q~F>JIVk)!edT^@*HT&Awv2xo`xNV} z&2>+2uQH#(M4lH~ z?!#8+cSe51NjW!Mzti6Af6?k7RAq!s)JdZ&JNztjpguJo9K87iZPzw8@r;epiRW`~{nW?!xB1p@GxrDZxi4&yB@9m#dE<dlzYmJ-jJ8#Iw|(~#kzlC zyn=VnU@T9itLpl>jEga4^R*wQtxWI7=hB)RbT!X6hkFy+;Mp)eyH@__HjEXwZM6$q zbHCY)$veo(8a$6Cbclry<=Rz|;j0<{HyQU4yf?zcjd;%X@QNJgonvVq@^v)xQTnaf zPjv$As_&_q(hOfln;YTiMsWdS0?TtB@lV~xlsKr&pA6?2{F7Kg>_<3H{aJC)9oX#b z*${L8g)z^b4edl(uPgEF?B5W38^_MsSLVRPuT3pP^?vEkn!g?FBo|rV%bR-Ti4%ys zXEO%s+2AJisr#bTrDa@MeVSV3t$ZPCUp&>H@l!`WF^aW1j(#I&=C+8(gRzWRxtBwI zDOZ@7u{9C(W6jZ)D>R<w`2Imj05Z75ynP*ckyt1fK{rx<)hF$PxIWwcfY(fIvY6`^DW((K5%W~yve=3 zkwt6`^Eu4X`HZW+aALW^f99o_ld?Ydp3T_(oM+2>{R&xIhzxi})HKFkT&TY>nRz^w z`>89`35U~$zayvr;x&`DSeu-Wn%>~w&oCY@ZjWwZOg8BUCgR=N<6lIUXYfwbKK6^p z@ZAF1@)~3L67yWgm7fPw*72n05yVffuknsz9ofg>TF+jN_VQSQD~)+H!j|pDK1zSP z)C*-kTwOl|XU11*gfGjzmyIxH_^@Eh`0d6VOMEFWR{HQ|Tx1?{Q|HKxMFvBbx@8*c zQ2i1NS;vm?_vg2K8Z(x>S?|5DubZ^RJblAmo&HuaWq zkzm3d5z2+gWjF-$W9q)3x~!h7ZT?>H;VaD*Ml{E>&c`KB#yE-k&peq%99{DH)OTXR zC0JD9>yjH2+-Iy*J$E5;s-8Q(FFKfcRM*WyKk9!P1Ci64j6M_lMems(Q|i57zvOkR z|K$E=Feb)FhVhJL(3SO^nMb%TnDAJxJ)LK7PMd=Zo$i7UQ+*TWclAFUq-`$r!uWrNoTxcj4>S7{|`sH!%*e z;uYvP^KRUCCuUSP%h}B0dNJbTT^Y-rs(r4htDufPj%SGp^~XJDLVay4!&va8%+Kj- zR2-%`I`Wv;GCp^s?~P~tX-I_~Ke~jihG*3V}ALK%)9!&53;6iH>PnkecQfsrQ;jr@4U-1u4jys!{b>M=9jDg!GL~^LeSC-KYZJnqPUqU28Fw*c_|r$w?VGF)F5_PJ(U)ngvo-j)`Q=yAHXhlU z*Ruj+A(wg$W5J)F!jE*bH6AXHdd2S8k}=4}IOLK!*qnZreClOeVY8U%&r=(FN;5W# zwzY@(N~|Z3P_Okcm~oNsGENbGOKwX{Cm*1$*6&YT!d%2~TBZLUtfqb~YdW-t&*E2$ z(d4#_2S+c?X3W%sM=)Ot`P-ZgeOh&p*h*hi-&6dgPWc|!m}95@$T>;wJ1h5_$?c1E zTubtp%Q7F7Vobf3f$A%4={= z8{ztAX}|M)2YN#;v%USBV*KR)$aU898X94IWgr~7IA43-=-i25{?ewGn7>ipSY$>n zC_GT?bVoc;@)%N!FPu>Lpz!h9@a*v{ZMgP3d#21as^_qV|Iv5I-YL1)I{%aWBRQX8 zqbhk-R^wL~|59cX14}+@Z{$~dZC+Aov*mH>`3%+zS{A`7_k|h@C~ddg&SS{0ISsCd z#L~>aPb}@qZ7ZH9IS%Hy?u85_w;{Yv@)}s$O)d241=d1x^ZRXvzGF?^g&dlfUvfL) zj`d%%$MlhwDlbnyN83JxwPVhM_4Ks!<~msG{nAa4OUBony%v6xIz{f+TE0gc4(Lli zUCZXm>iYx>xVH6!#02J1i3{X|!~|Ef-s@Ok26jm-ASYzqqcUH@J?}d(HwW_^YsnMpA zn+H-(RM}5O*ST=0b=W4&*-WI}j_3W^AmP;XZ!% z9}K6DPxF}=;txE>J-0Vu*Aoj}hQIIQmAwh#ht^!P#VYJzj_;;xAVZ9|IT6N|*6UT_ z2jivpw=f>agnJfx@!N0EmN~R_IX)9hyhcCFi(8RAd837_h)F!?t{S0-1j8r zQ9L1*DD!|{qTPe&=gHV$_cF*&UB>gR1+^w}EWWsl`;0)g|HJ*=+pC@U7T+Jlb5G)T z;tu&M;sTp`7GmK-RXyzq=ny{NnQJ{BilBGwkBuqc=}x8mU*)wgQ_pQJeO2*I;vZ$rkzkxM7o(B? zsSOKf6+0$pRobsIUTpoJ*sJWlh@EQBMonNYIyht&2FHpTe#LWEeXrY-p+vMd*t zc!9axu_@LLk`L2Y+Bx+~)~i))XkU*YoCWDMl;f3y>Jjc2Y-KMtYoYolA@uerb1 zTr+iU_W1shehuON)*d~EejS4>=#Q=49lm4dDo(FX)epyH&%Ai&7_jp!aSDI7yKK+}v41J`p;qbG!*P8twtxEfm5A|R8`=8LKrRd+LjEVYA z9{-^h>;&`QiPx1pb8N4Qt5XM>A8;dmQ}+#_Emv*Jz3AJBjgSHEZ{EPW{QVEsCV#f_ zc%H92Zgbkk`a5a>c8u@LDcEZW_G;w{yVvy~%lKnnFS#x!bOlo}USHY_{KA-D(}lj$ zDE&3}{|5h;da>mA8|}>qrdRI;zpLl!oV>aE;oimN>an_i7W{2~zB){9?NY|-kR8ET z+&{6}@bBTzk~bEAO-{@_;V!IqW35~9`|#|^ahcd$?e!8HCnq7;H@WvaGuP2C<=&3? zZfkIFv8XyjJ)sXL##AS$56nl_ND*Vf2 z=Fs@u41VjmSeNncTJ)SB*O_&O?nX#F)29VlFi+(I<@;SOR$lgl2ttnYnRK1*Aw zoW`CepGM#BkI2pgt20M^&|8d4WLJBd97p}V-H?a*E$ATT-&nu7TG~?OS}r1S{csYI z^D>TqH~rAZ)23$MqCBnsp6j6W_2gsA`WdA^mwK?Sk<#|2KKgCk>)`H{{Y}i?97)&F zowWa8=GAzVzTE}LV!3zGn7ww`oFC8Q*o9Z@t~JDr(`$Rf(OSFD+%dV@!@1XOv`M>L z`foX3H@vO+LfMD?3+|~urrmuUY#Kh+Ty^~_?QZtDB>ysXGY0cK*Rj5lw$`;QkLr33 ze>$7KYHQ_B^@pr8D|ebY;`4fAbJ5G+q}_6_l-8j2@ujNc%1n;{y zW(#D%Sov@q4))h~*_N>k=c$b~pHthKyls7yUi|y- z8&|f~Sh@bmy^Oaptv-5K%`G5L<+P?11IOued2!jNILz^UW(|x- zx`0g>r%k!%x0##R!|1>MgBV--*oeQ>9?oIj%2<~%uGqq0e|1^(mwaUzo37(~byf6J za;odGCGB8rVB*iwL1m0NXO$$+NUW|dnb^#HF@M*zwB>cGE8K@>3`bp%x|(8Y@wDsO zGZ3t)=~X_SqHz@MVe6ViW)d^$%e>2n%%xrO z9oj?d9f)n+_iGMk&d1AIat%Gn^$VJ+7=ix((Tu&Z+%1p^<^BQYei?Me<@{cm_iPjK zi5SOMQd^U&o18C!A$i$Y&=Ck}eaw{J%F8np$mFMDYz`et%T37uv z#>IL7Pp?M%Hb-aBH|6g-u8T~?rbezxj8*QJtjpCD+8CP|U(#nO^-1RPJN*v*htxT9ZmpSZ{<(RUVtx4z`3-TsbGQ_;EuP;2IdAF2wLI4t zyZb=4W9+wJd^X~G9@X??WbFa|po^`!AA;YOn5a zuv7T+=p6TZlsHP+sADO4boEgkM=3Y^@cX)M3YVT7%<$=D9%flLro{7KTD=X^*Y#OP zaq`rPh<+X(sqZp2uOPPL-anL6S->z>^a_)(n-^$oT_Jg~^yC-g5 zt_N|L@$)xW3v%!Ck%vZkm+DzLjhs&=HVZDR^Y4kH)0Ea6>Fgs6J`j>cwy!Xc)_HukGh8iWw|Tb;$0eV;(=L_W@cir*7~^2N=eL9( zMX=pFV;<(4^!;-BV+_ShZx}?N^#_8qgjkB4TxdgIcUD*-?&h1;p z-%j8eC$5MsqW$8+?tCskZ_ei2=1Nb+j}spryd3kw_15Zy%YR6 ziQihY$GH78#?JkW#_T)sx%|BPPHd^p3#Vf(+ZXxwbowXWd~U-=gOonD==GV<;}Q_Pe;$yw5+Q@2oAb!5DNm&l9K0 z4?RgcJ%`r#zI6x0sJGF!1x*!B&ADU0;NQ!(pjUWaaBFI8tjM@;%UJbi-oxo@%XdUi zKf}Dbukl=DXA13`#eKesY`H&aOU6@dJDl-*o9jLQ#yIH3tAitGr}cSHWIW9qeU^Uw z4|C`_I4d*0;$V6IoWtOmc`xx@moC_nQ56?;7M~r?Gv)lV|7r8Ru%Glp+wyz9cYnF~ z`7C~SC~Iat>_zaiJe6lST;Cb_V2t`P_sK`~-1I(->)W(XoIQ*ADzSEOb~A11f&817 z`WkCP%zXl5ay9E^D1GmSowvS`b&Sj{IEJxUYB1ayeXMg_gJ_RuLfk{!cjouv@zd$w zX#OoOFLBMckP*+$3IG3LU+@z1EnXkmTw(TG7}ryok4}6p@3j{5n3_oaksY!6(e!f# z#%6h5Z?i6* zf_^>5c>IDfYUBgRe*~}9&)WQ~m@T$io~#qkimk5aGl<>f%j))5-=IC48(Zt1hcYLv z&Y#tD9#%&lw5j61@D@ztCv0dL1JH(Q7sZ2zGY4`J6Pqi07cSpD1mPImFK}H;Ws`Pd zZex#Pd&Guv1?KaAY+ulsu_x98HV-RYyY|AIQ~ikKM_6-6&Rh=78WiSw@$-Jr) zOTIgK?&`P2(f>KiqPaKgjF-7a>KpZo`4sAfBe@4Etu?nZ`+3aQ^n5Du zs5tTx+F%a1u`YA9pB~NHAKWJ6XE2X%@coChAwGeAW?jY_VMTq;M)>fyrO{EWt@sC# zwK^_LO)zsQ#e?xn>p2x-z~s@G6B+I-wPxGPhun*~Q~o{=#uM8qgUO>fum}DcztXjzv`H+NmMhatrjQ!eg0NSkEE+ z*Kn`}vU)syH&@U)Eyn-F9AXXmY2*GSM=iDxN2Jbm_^j*4u)g?h&P^)$D{%o!rFHMf z%d}rk+t^Yt!CUAM`KBr}kBwYQCP_m3ewC$d^32_S8Ke+R=KAEp2JZXK63D=d-t$0&5JZ z>}Ds%(ET3^XkVS@I+bTU|p{Fb)R8Ux(!Q?_lqZKoekaqW^k zrwg**DDSSmm${Kn$$sX#UQwq^X>QXgCFk%gGO+z}*f4b1JjSxLXZ2bG%hT5TXk+}( zM)oc-@AmcpmT_-w;G%p^dHhBk{>*LBd93@yl1eULJ|raqVI_lKTF> zcfctnrytHu-!d`sCzUbeG+ci2v9+T)M>YIP{7HGbBbWny%42z--%|1XWj*Yf8)8qm zx4z|%X`}vS&X-CZT=koFSzq(3Tw{J$^0VE0E7yM=_ckwEJ=f|(qVvl5SL*!B=`;_b zUtQr*SY!H-+HrHaihf9o*{p0G&N$3yv=B>f=&gI#j8=$Vdgta4<$eAKy3H?2F z=H;wSeLQ)|=*{F`d7eNg)|{J_@&gf#_MyYfcPaj*V&h+Pv+U9`eMci%nKbsKi!{a?JV_c&K9s<%zh)= z{3rLktb(qx7K}O6o-trP)IVsOXAO9+mpM;&v(}9pyhC4xAqOK_XS<_Y&6C#0vHnZ; zzL@V+KYL(n`gJeuoQG0-hQG~?-j#9QkbCUU{d;V}nxidpb3Ks#zte7YsJO~F!JaKu zoZv*>&!!#53iLy+Wsc@Dubw+_7uR364f=*Ye1qTQ?12Y+q0hMXm&kapmEZ<>zGo4* zXKo(-%UJ|h4n!t-Ud|+V5xKLzgfaIQHsrqDh$nOZ@wD|&+VLl3$N2jLynFt@+sNa; znXB*YhVA0F>gCt@-8jbVF}`m>wuAfXT<~Y%2#q;3;t7KRr_it9z*1*NU&rq-F0rUR zH6=gT9xte0QpWP@`Lv1Um-$HT>EKfT?u;DN^=~j?>66Iqse5x4UvOdcu3Vnju#Baa zd9)=)RPP?a_|^68HOzB~7uB()ZdI?!--#P%HzAj-na7an)c;b)mU~|0>@MQ7U`q9E z_ClBYU(RQ2)w}X{_5FOGrAAoxO$Ub>qcQi%m}@vZb+P+kded(8aq7mJ*YLzB^f+yk z(+ij9-oSESpgFdsu3lkyn~vTI{UM(xw|_KaWGps&X2Q+6M=<#HQr49ExP|c!Keu#0 zY<8cDpPR^-rlx~&+Hzmb_gQP|?J`y?#`PR(b+$1j&!N7140)Hl&SQPv4j#~7T$g^o zz`J@on0Qh%{0`&N4?QABcM#*F9^aO0#K@kfZ~)hMon;I=PdKDJVPOI z;nbR_pQG>&eVxN(h^gh|a`yBX+891gE^cw!}Vb?zsscw}3Wl3&h*j z>z=wrn_cLJK64-Be8xx&ell})B>jo47>fQ6ANPZi*bm0+{6TO}+&{QnU-@R_*!|qo z2DIVy|6wkMvlhhb;pRLy%Xpl5x7~Q}Pn*_euJ2%e-{M;LcArQe#rD?Kcnn$DZUnjo z9sVsoH&4vE;Nj@LjeR(V>+Yn@+9%Jp+h#-h&OHZo#&<*4_eF2-!EgV<+#bXItp)jI zbboioHq6j=udo?@z$ppiaZz}|EPs$ zt=i^S$lK{#yvMcE_65h&c59Mb|HHjO1G`rK#uKc+v9$4t0gMT4JdXRFPG9svZsz@m zjQ6gz<2lB73&u%XIf(Xsg?>NVgw5k#Ih*2b+9bz!4e}??_ao{%%2!+|0acmoH&07%M%DaowJO8#BEaS?b)Av0&b}Wv(9D zllC)rXE2wK(2n0SHV@K=H+hZVH}~=COFs`BM83m1l^yn+3v1LG-+!C_m-cu8_qbp= zupDFB#Jyvmzr-4dP3|b>-yYYOz3fw%li1#HF!7OMcN3dio+gBU3FoJc4ew{{w#-|S zdojM2oF(%ErgM+*eWiUhrWPM(S$?NK^Axg~dYepT({YTwF|*iIeVXLZb!FUgK7)Hz z%%?L}rcKqJE@)}C%tXrvV z(T-SW&HWhRNRodbm#DpvPkfqt=B$O-hu8rzy|y6xD6C^^%w=Y8)&dhOH?kyhXslZ7 zu0C(Y?)2;I7Ie(0>P!W7G$PzIkZa{V)U}t{ zlxI0#$~-pWCX=&}oY3U>$wAi7#F8s;4Tv?B_qVuza$xlLm3O&D^AzM2-K(eXuKbGs zB9r0#jK_w1HU=wZi=RB7{+b78euDn6@+T%!&R%Ke*~r;Tqp^w1h5XvftD!q-kA9vQ zL4WNa=3yqk^&FUm?6vyV`80-IXv@we19eHo(pp|@6khze1nYpI`pB`Mdl8C7QZ0*y3UdM zsm|j>N68b{{ezOX313{!r7??gA71pBbDNxBeTD3?PaZ)y(6+kY zQLq0IzB)Msr4OR4#|M$$nT?!=<4HXxb+7pY>fid_`_k_)PScm)?}<{1?{Pn4TF)Qo z$Oj1rBp06CA7ec6LF9t67eD?-Bj4kE=B7Jq&$=Y$lgSaunadHCzKHriu_Af&VXWzJ zMXvYQ1NZysmsqzXHlg%O=CcOP8IUW|R+ulUUlOjUrKQa`(J#>_8PENnWX;4k(WaFC ziGE4B=l`dSt$Y4+E=IT|?T$Xn48GS-(MK_lKp#b3Nk1hvD0};s<5`O%Tki2YmfyuT z9gTj|HVs0ztIN!#+lPCH*N=Zp7k#F!n{MdvqO>RqnNWRk!fwV zzKC&))Em%#CvQOiL%&0x!!tt8XFl~ihBTw|k-3jrc<27s7%bx%o*SaAAI!CLd6s_1 zQS{q=0{R|uZ^k=@ARE>p)DJ1oNLru!>zB0pBeYq63^6@`D@y$zwsPnIGwej&ta~CzD9XgiGIcleD@v3-t$WCrN8kx;%~&) z(9dvBgE18Six25*-LE)hy~hIQmU@n?^H6rH`-=?d`l5 zT=ULtcDfNhY7}QFvC?fzSFx4Y;c#=oMcPvL%ftr=_D>B1`Li;1(RpNr@k`Du_Dsxf z+`)K*@dfdcc1C=py^yCWvAD7M@cG8(<@D9x7a+^-eN(5ZAJvPOutrKfCkJC5lsZg4 zMJ{C$a#Zpo;wg28IzSHM`j(1^XpQ&r3~RGq2aXc+p2q$3%{{+FzgxLi<~Kqf^m&yx z<8Z%XjhMfwY;4K=?7%ZT!$g1cMb^7#m`r3nhk1vI5y@NT41nr|RVmjvkeVMs>gE`YT z6L-h%Do5^#34gN z;q@+SL0#p31-xIeDc6YsYgxk&k zRp*!Z-F2-EaBb^D8$(DeR}60*o8F9TiQnaD>bTv!;O{V5$$1gOTdPCtegk8Yc<)_| zXLuabPCKBv#M4CF&=6q8ao(b@|2Y2lIUO)H{8vIB*$L5T~EQd>+ehg4N}b)L)(G zx0wA}UexciuSoGyZlDxLAJ% zcEwmkdDh8HCb5i1{El{5$0KK)gue>bH!oPdnw;P|<`?5<5BXi#ZL$6@=r>(!jX8+v zJ?BJyyis@BL|@&{b}jQdkhY5n{>C+)ck(;>F19xY;Xa?>dNI9t-kKlk^8XnLu0scp z;IluVqh|3eaemH1IUJcYCgGVVV*YSzo{j%9okhmaF8Cut*Ovo&VUGe^=l;}AdOxxxL}a~Iri&T!)B;{LmN?(Ou!GgQR? z;-6PKR~X2%RC=L%=FmTFk!Pxi|5Jy|oF-!q;{X3f7RCM6vla7;>y0s(H!QACecMBL zj@bTL?kTo1hLG4nVg}-NF}vrkh}%7TCAC6^@T|lLtamGRKZyS(YUJWu-@%ow~_ z+T85_ij6hzR}M^nAzZ65_4fAACx1y^EBQ*=zIVsA@vho6W8&H}ZIyP)Sa+FE6zr&v zkzAqHJ@t%1_77?&QX5Ub!~7m|A?5M+V_e0Lt^0L(mNhbFbFYr})QbnRr(R5$ef8=k za}cd7q|Olsy1!nZqh(07c3dY%urAKznbUYz&a;<3`{*y?n(U*$kiX^67li?nf7hOG z5g)N0M{49#)c2Q`@uc_{ksJLB`Bl00dcJPtC9)zmQ(odzmN-jUaj&WVM#+c%wx#kr zm6M6htXJ0$pXqa4!@C^)OSD11Ls|K1Qzb9Ph{QBUux3hmiJy@@<{j-v6{jde@j>Jb z#Tfdpa)aiQ1w)kkQT08n$2FJsmOh9!UR$mm*Vm9slRsM${TBOr?rP{9WXC)$<;<9m zGWI0*(ry{k(cjntnKnMIjLA2dXMXucRa|F7o~`ZB=cw;h)$dq{J-(QJ4dI^Z`RrG9 zFNj=^9E^KbvzJ3YrQDa=7rpAf)GKIXM|)DuL+V32+KV^Tb45>RYSVGbYx0ibm&7MY z3@GPLmGau2&*8qqa^FMtN7wz0j^sG?kN(}lcr&)8k6~=IejZi!LPXy6tD_sk|2N9* zRMzzszUux#fDmrUXLjrc3MEBUH$1tk_~ zl&4*C1LkLIUy`dJ9%-~bV_)Pi!(EzdojhyTT4`5YU#Y(u9y9C6Jm_$m**p7jE;Ieq zmbgZ=BV|6aIR&l*>)jv0_u>rwP3wmwfB5(G$33Fv1iz2GXdCnak7XY8-Lwb#U&^ZX zKp#uFG!A0z4s)^|?aRNpr)N-EV^Hk>vyCeGIf%KR#8~HSsUw-^0bH{?_ps)BdB)U4 z?1-|_m+x<4+~%_GJYOof^t0lPJI68(=#yYn@u{*PMlCUin6$(Za?U^rt#Ex&p8cfVF3)_@2kFnf z>-#)DtKF`z|JZH0#n|qWQ#3CioVNao_8f8knAeW)Qrh=MIRcI93q*gEvLzR8>_dGL zyI=Y_?cvv%==D(O%xic?^-gLamK>w|Agw?hQV1jV32qU2LA$fy|5CqP$}8O3rg)Ni?0r+E-U62O#G-Z9KNZ zFxG|oIqN<+KV0HN11h|)UJsX;TmbisSTkyE9?*?81?wb7`COjsd4tBe#5eMRsoy_{ z-)aZGymy6fR^xm3gotyDS%_`=(3k81`O$DNJ#Cc#llOC$r#|vz3B(f*^Bm{$bH-^ zBIdIGqIp>E%N1{Vj?y;V??9e+JR=8?M;la)W!N)x>V7TM=`Etd~zc4Q|@b1Z>g7zJ*so8J1!@X+@yNGsJwuB zL>*G@T`+GbxkBm&^+NJN^=FJ@>-U?pb3J{`xg6zrME{{}b9t4Vz^JAQAM84~jmI~? z#8pSEYl?JbtaZ2$+nP1olKZHL`3|?7pgd6Hy znLdrOUynfsA0!T0#|OqC#RhTl#eXpf=yNSkD>M z=F3Gi!sU%>4Gm^JiUrIOte@SJ7^Cq;ae#bY&g|(;JIh$(6D&seDJ9+*UL)AwbzkNN z*7uUu^8=$F19KkG)mZTA6!)AaKhT_rb;kuoPxToV0P)(aZJJ;f-OGuP()B{o>b1?A^UomuWh zn#J$SoW94gOCKRS_aPtpWzQpL$?2<~6-2W?uJ>;|&s@Gf=oC4jxs2~N*g$o#xqW*M zuX6k5vX0H`8`TUhMQ3=9P`D%YbmDx8@9FzZpzmU!dS0IxNbDn@G>5h{%ICWfTaaA7 z2Y0S?zwx{qXrFm{#wgatzQqP?Pam`cWlYcgLGn}jnC9Xo_wIUrFJGMaoxFoss^qM$ z0z0jST>OjIja~NXDqITHUvZcis$_sxi9y|er>5L=JsRs z^sznKY}9APQYD9>O^Q!jav0&C!)cXqHhop=2?rn5ebe}**^5*9p=GX1iI3uYYB%IQ z^fSdo`jn+F8BRGqq;^4HP(2@>tDXZMe=fP+vyl~bvs{-tR)0!8slSx?hx#zs$Gm9u z+P2JtI!z3;1}`yCINafkiF!v}u^8(*`_k0|`Xa9R8CNNq>*! zGuMD;5xFmX8=f_jzkiF)Iiv-SlkfIJZi7j}Wt4cNQ66RDW$t;XW0DgXixQ6niv%|( z-df6oXAB01gzFS9*K?ve+S?G!5!tB6CW0~Qaklm_Mj4+7z6c+Yy$U4{;eM^)>fj2o zwR;kRC&D=>U&(2z=LNQx%T#g-C6AC8Z}OFt#X5cvGn9BiZXh{HbqwE8UQ&q_%td;o zxx)Iv3D+X0Vg=7}=uJCHd=Oj^?!bKm<{g#zK);}@FOi%hIRUv~ali-2oV?*t*ne?= zxkh3EVv1W0cvOW)6|uLhQWxLgoJC*m(1S>gV`e$eK>9#XKNwdtxr-e&po+#IEnz zo%~GJx&DpzUEX^EZA-5I2>x!h^XQSfoj0$)%>OZNI-ha2u4`<4a`?^pnZ`3>_uuE4 z*>kKeGPlP(esg-=)jRIr=f{)%=|$xsUsX&E3(~ z>)&bPlbatq@7X^;L>6yhzHdUOmp1+zv{f5_3eRw#Z`Y-X!PCxV_Nx3rZGQIn#@=h| zJ;NuQiF}FmG_?8V;b`wYx8l3ln9|;B>)o%rKKHzs{{GzYrf`tK);5EnD|P>sUb_ zGCHXy>9hY2!Dg&5(yK&-H0<-&(lm$9Q(~S<4)d#JN** zC~@wROU`+(iFfNamNucpMCKR0z_Y|gchE0wKzzeGS8P07u2|o&JnuSZ{1{UbQ)wT> zRMusaJJvRsdupsaXZ>g!JmV+va`Bcvpgy0ttK^h(*3a4K9Cf~Nsc_0OSu0{Rd8c~p zTrPRJ#j3cZdoGMihDTPHo6A|A_fzI^itSQILjA4YE_Jr~n)+m~p)=fbwE|3EI{$ML~0QVijJhpV`xg#*Dr2S2E%PId%d1y+!RB}d&}i&~e6nW%oyGG#2k39er#XMkoA@xX5QlaxYxmb4zJ*6#P2bm)VOVGF747ATgShxiJrPk-G-r4utC-k zd5n8lcd7J?>NS_FGx9CQehu2}UT14Btx0>VyLv3L5ROzk{T{kXpUK)w)(5l}YwD7$ z!q{lL&*HhMQQ~<+2OwkmQK`XnbzQ+RwC!@n%KY9x^KLwQ4A0J<=l-k>eY3H& z$^8-6(I#uUtj9P`M`u}A>7N^OZ^mE*zg>^9(_ed)&yGaibCy!hQ4(udQ|U+hp=-I{ z4CLa_r9X)~j^~;Ek@JgrW_&ySx^0{few)0+&l-0Ow=3=lpKET?@{DJ&gZm`(&yt^L zY|vcy~aWoU!C$AcL_d z+K`=Sm-a!uFW0mYGOte|x1_H2ES{#C@!JV9v+ZtRbe3ur2p*bZ%Ffharb-Y`YQG zZSTyT66=(lE?cv{Q*+@cezSaAoIQMc9V4H$EAm3S6LWIU zjd^&+p43@oE}r_!Gk~5(hb*CfK|bmjIW_M+^Jg6T@$f?Aw${P1TpL{7 zns?54b>bP~>%TCr2k`gB^ffp;F@4Vn3eWFe;ID6ljbsdivCH_rF@1S|ZGyEEBIrBnA*GmvGi8V?FvoU1@K1V24d+(bxY^77QV@K<_w6T z8=WhZGljHq!P4dvxNl1w{U!SOVQ+BH#>_Qi;kiR%YtJ4s*TB8Roe{~_Apc|?b@j>Owy?Juvy zIz^UCoGrF?k8ww}PD{LfJNNONA~CmT6s6{=d(iGheugl=V(^ENuf#9J-lx&`U~g-m zdS=nNe7+Q8)N>8yf_4pMuB?Z8&OTNCyLkL*`tluQMO-dVCpMR-6Pt_6r!sc#RW`rj zX68(Mehl|qiffM>i%cUsVs+1F5T~2#FqGF-d}l49oq29*5shZOPN&@~a((v8iAAQ< zcCos9nt#moo>MAT|25a$%QHO(=}TQJyb}E0i{GqF`?AmZMB0(M}MXq??>^hKhU=;SudWGG?F#pSxGPRn-asPHfn03is3ywVuKyv zZg>r4t(4~{ozJt*p${)G?w+3{u6J*==OX1yq{ry@D4sJ5xvOJ*>!+63-k8mG+~-y9 z864Iqmfv37CKx~aq^BTLiQAVsgz|}}phL`SE%yytD=EC7d|+ZN!TsU;>rf4rcupQ@lE!`8cWefp5Dw{n^T`XvF6gnzPH+R#wziS*kbLkXDAu3@Z1CQK5k?T zwQ1(I8+W$ej(KF}re~k)4~M~n^VwTnDjz}J+uR#pn^*LvI#Ru;9`oF!-}FFN^SyaZ z@6y+tm*m>;oTMvg!>WvD&PY0g`J2Sr^K7K;=u6}&xW4W;E-F8y5w5?DKANxEo{as0 z?}FtQ#aDMj*Xwucb2f?v%1y@)?FgTThgLpI9=bhT{%^+8ydp7qVt>|udc66Qc-&l( zr;ri-+2k6HMkc~RKgZaY{Bs?1%Rwu*CGTABYi%!I5p(8h4@LwElGd1Tpj$VI!?u@N6#=HY~oK7_Gv#7SFs zCs^he%o<5uL zvc8WvS`00AzMQouc0P;Wh@YS0_u}XNjM;I>S;=p|i_DrQyx~5~0~jY<_pZpb^*u|@ z`vulz@U*oWtW8iu8%x_qi;lkHtOy$FSZie4Eq{>AKFYb8*-|7Tb2g4-Z zE*H2I*P4qg?p{FKUqvQ^wU6cduOdIe+W$cJpGQAWWNcfw*Zh^>BzcZ8_{}%PUs|k< zM_-yTt8?imur?0oe&#g4&A61Dx@Q%v&3)fSpNi8D=DIPATR3+4_3fG~j=giwHq5>< z_j+|0ScAQG`*DHdM;d<7w{9>A$|`}U*h3hMqsqxuCM06W-Zc%%YOK!EkZ*Jz`3eTC#Wp2UEjQOj~VLh)a*skPNgX_YfK8fu2 zVl6K~p3Nz^Yqtv9nO9(r*EH6mIPZAm%^D`Vu#SyyG|CaSmdSkXqwgYzIutn*>y1I~ z+spgPndj>M^9siCl1G(8{Q~Pr9GKXO`;itRU%`Rdi!_4u zuq^uE+vtPrOG^Hjep7PD%qw_=^>YmOFb*RwG!FCl%59i1xddXu>__s6F7X!Laxn&gV61;O&Z^oHE%Y}vmmH)hndG?&oGQaFs%z0{EnIn)|hn?xS zJgB+*PcV;Szl&C=cu#YZt)(j0IgvS(=QIv9qdW3By25{ZG8X12n~Qb^dUpb2YM%1# zy#JKn%6a~XYupd1Ul`6aeCMt7BYbD_2zE#J8DIJXy2$#!?ooP{K7E^UO3jz#Fk8!9 zo-_ND#B<`f#TmcsS9)z_a07Cc9Ol;g8r0|WIe1h84_{;47I44G{QhOe-Sd^+Y{nk*3U7HD_i?YayrnV! zvuNvP+{-ihZshaxyYd-*oyC3JQ!$rkp2xVFL-#n}nMXI3=k}%@f8@JEwyF5VQwK2j z+(V4imGQU6$TsvxK5=s<1Z__JoaK4WMI*Tm859ehNWXj1w>i9@Mmxnn$Ixf_#4UIi_gF9EfG+%o@pzoS z!xau<%(tW8$M8Gx%~h=7^_D?~`FzDaS!0aX+x$kH^N(H8RrE!^@L8TEH!+1VSe<9c z9ri$87Sgw`)7~=~gRb<&oazG^+nYD8;+VZx;yK(yJahRtWRiOfS-Qe9%kf(|#ARqh za;{jJ)%dy!o4Fjp>t9^|SLXJ8o;Q#CZo%`K zx&DMs$Yzg<-~29f`|HlkC;hdq(RA9kF4qi1u6xm^FVde88(~ZM?gGZ`sij!I^!+FN z{(~W`ORoP3oX5?kg)|_ z!PESXkDFMEO}o>^w+5kaxaS~V$1|4i^V@Io{JFHV2N&(ZHB)KJ2-d>y7`Hxre>bmR z?!sr>?|SCpIM&eJ$jB4O(;Q^&ZQ8*lt$2*CHZhz{hw-9&t!L1W=lyZ|V9vy;yP=cm z^Kr=6#a!H}1^=xX8^PS~z#2c8YiV-R9n9~~kj)LyB@?;!S=w|S*Bn6m|G6vUgj{aB z0@v>d?xzjESq;5Gzq`=?S6PQ|@{I3t@7=lC-)Q?ujL%Zs@3)NUn#|v7wE0DTyC3&4 zFQbm{J}Y0_C=ay6Ywhj1`>dEuPB*#qb#7POWo&yo<7FPF7|i^RaJ$B`ljCtU<0saV z-`$xp5J#1D2_9fv#`S5Oe2nQAC%mc_~bV$;z#i; zafleiy-xDA<})To-F2&^g&$kJLXvKCwz}Qt@WqA&+m*ecJIr&=kF_#4{L~+ z%b`uw)|ua(`T~#84(-DoBk(&Jqpxv~5v&Py^&Fn{9pvg=Y{P8U;@@enx=}rKMkjC| zZ90Kv>*@=9eok{G zXT}CPlC|vbtLGk{z;kY+pHsNcuH3JY-03frvgh8u_zBDN`{ZMkwK1~yGcg2nhx7&7 zle=L5)W|4tf8?%=Cv+rpaM~kv@vC>oS);6qArC`BQPUa%Y@CjI7*= zhf6H1+@=1GxHok&>M|&1wFa6PwH~Vv7nwZ}t$C}oQ>~Evv)YoxjIxg5Y;s~7cOmCHuHt8!WD$hv&Gw@7_h#uXxy>cx6ayMCy0>7L~1#KgMP zhsF<#aV7W7c$V^6#<27slaF5dg~kEm6SgO_(UE1|%xwCuzEpPg>y+Jve3t#8=DJv~ zuk_dC^38GC0llT~R_40sw;A_Ruj-fSlbJWCj#a)R+sQ#O4i=xQ%*i&t#5@w^TMm6b zHq!k&%DTRiKG2Pfv3qvRb7eg8av-22(j z{j7VfYhCkot!u3t{^|{XPp6G>%O^Miakf*$DDJ^|862nM5clGI0uF}Z8|-d?Pm>L= z(#E=FV++quH;yo;yMej!-k@Uw;+y!s?+>}jn!WP&Gi_aC*LPkI%-RF%Uw^Ka$e}*)FVJ^C=%amzvzEFrSAAA})q%iu z0eu}uA0_Bp-%ua$PmJ%Gmf8*dGp1LpvU~*`-*ImmbgT@n?*{I)teVr(_c`cD#sKcG z+r#JZ;!ftKuM+zK^-Ezb`F7h~bwbJW@3k6mYb5hY>+hoGquv!~p6lS;^b57G&c`!$ z^~YS>E6!YeABDEg^Ign$xCS+^dV=eBcvc^(DRb+ZhrZ!|aVi{V&_|aM$vb$f<5RV4 zgubP(gTc$I(Dy+2ur9V?C-Z+CdZu|NXczFgMl6i3T7>o(@;T+|oF1o~mV>s>om6&`ZkSl&8~_I0Y!Cvd+}KB1pJ z{1f2QIz4@MX?G(s^DBPPJ++B1p|NuH1pm9Px0dG?F{f48*ctkK8h%pO=QCgPCadV{ zIbc`{{9ht>FF@C-$l@^CZ0?Ue0j9nKi4lgA1ArzS80Thaa2InP!x+`T&7XOG1GsL5 zJf6h&5zuOVO>$=7_Gq3-^Ka;}&`m-6pn2fS`WbO%4T5-*=1~tI?L!vLvr6~n%)=T> z_#AM2&b^EHoDUt2p}qRzxdY*M_^;t0^dh{fJYEbe@^0vm zS7|>QS~-uW(4&XJKbx3KA3ne4UJi3v2n=VyL(VG~*v2!~4rn&i|h4)R=24G=G$~`U>jy(adWQ@OI+4ubIoW1F;{_{(JZ)5B!HcO2aUu z;y%AbIAZULF+k`;*K^b%%7XPU$AC|Lfu)teX$HE3=Z*s2%fONPK$)1*6%sfM;CUx{>Q(4-3HVt^`|H4Y zQ=a(+dUXO1NAUmMz0h&!^>=7@2zXb9#Zf!PA4`9Sa_`bk_=M#WeR~f72maFhqnwXo z4%#DWqMp(onFmu}1rPOuHtH*NskTR*RgK@(S*?abZ=U&$`S~8}(5Wxd=W|sOzOmLo zJ9;|(sCUM|C&K-YQu}m=yir(Rgw7Wp_f`v&XDSCBh3P#m{aaxx?9*Hd&9w8OKVA3H z4!X7yaOzKY;@KI<-^JiipXP4ptS=URz!%xX9*k?QeGqhY4$GkFROo2l_bc$L{!8mV zc~W`o46cm9)p;==ePHuB;#ZqL86G#Dy)h%$|$H zX6&i7^Bq&}l@#WeD)9+#v>Svzqo1dMyDs|VLfX9#{^XMmzTbp2=m^x#7FJuN< zsc&a8KmBRvp$}Rdnp(?m?f$nt$-Bcx9g&;I+a~K}CvpEb?q5USy}{Y@;G+R>DP#IB zzXAW(z*e<9dbu+^RU?tL+^+Biw(NG=%LDGm^b833U<|NjL;I?XrH@vH&k_|9Uf2vC z^=AWbg=JKI8+@JC8R5$o;0=6*zw>>=efncEW2!^;0Jr-M^2H0}FChw#(2DTR3> zJx_I{JfeM3S1Qjj=g5nh^9p_mo2y@-zBEsI0dRSKfVof4f{|b3l?S1R{Nmj8Z`zbi z?u}Fzyp#*>k=?(Q zf&b{|6!3Nc`etHJbSbjGb0lj8*v4FVrdZ9yuk-wmVzfH~cwK|~G?VYZXHMV|U>paJ zJp=Eo;QxWls}A`5Phvdt4@>Cd89vkY$Y<03l)MwMw0gpPm%6(kjsf@mfkppB`nLnO z&RIWiKKx#Zd02;bA~JR^b12;?$;I3NF0SOcyTN&9`pDzAKZ03*S6KDE)FElz?sIAW zPzEB73m#DaIfvKaMf2$kfGcV;q-_FVaXn-g~0DVC-s8^pZMLx2io&Kyo>&@^+bNJ$0=;1k-JK@FAj6b?5JWD@casT)9pz{bls6QZ|%j3>T zeW))PI?>oGa=F$B#ah--V6YxXAAS_@ZsxmnE(_^H-QH~|ehhN0f9#n?&Oh>pVhxw$bI?!U1+Jj)}Iy^mEn!fw9Oxm4rJ^{z=?bP4+H0Wp!a(`vo#BU z2t9KzI2+WR^)cWp&%IOWXBy9}MjtF<&Zp3iIis_A?iA?Y`Ru>YuY9wqIXuVjotV>& zgRtx96lKAj(hS;-Vx9x&dnW%kf@Xp1qI70qUn~3?`Np_k`?#5Yw1tlVhrD3z?)l}D zIe*6g`X%==r=(19RRB4nD7l?ShxSqix7w z#BKp^@OSu!g?;IC3~oHDjgOdCKP+wI-_1^Rym<-Og*oCzX-Uj;VIb%o&&!t z;PtneyYkluxM%Xav^Fnu3AUmcJXjEmKx1{iG40YGNlZJMetXltI(+a3eQxIeQ)(vk zNY5!^5arWcr{^>nZ)hVXltDkC8>L~y!OqwHJ0aWh{=wkZIYeA+EV`EQ9;ct(^bxpC z$17=_p-qWcSX&Z)lw*YNRGWUZoBB&(E7c+5a1-!Y59Qe^`WHtrUu|YJ#t;07C*?tX z@iOzg5cr(qcKUb>IyuMRgHQR_#|!?{UsW$#BN#DLHNFSk55Oh~r@m46cFMl8Z5@@i zd^PkHUr%O3d;V9BrLVNre;ok*gn3FEVuSuk{?q)0G1245m$Wu_p&#x%#`5e2c+WiO z!|=xDX5_Bmi8StuiYvss`r5eAbyjii*$etACF$ch=3u>?c%B7Z*8@ZNZt5d-v_6S- zRMwQspXM8Oz`K!SsFO*qhv#Mi>+|qWb_FhIr2k=l;SJjV!t=(?2hm2qY&~FA zmtDE^ITSq#3}^Ced%oWb9@29QdDV8V1KzZc60wJQ7Wr5DxgJ-L&tXo^wNoCtpb_}y z)A&Q#Rfijk>$Ci+T%xPLg%7?(|4B=E&b*>Nnsn8Md3H?(wD=2jTL=8sa^>Plv@sVC)Caz0dQ;Ps_O;0QOz*!dK9t26QRLWvxu>rmXqU?w#_;BfKyh*ct%S zDSZEh{^Z@lG9B`)KOHjtL(7C$%tiZ*I8(0m<<>Ay4Y1^ni7 z>2(s<`?N<9gG``5pS$&tWZVhhIjD?NEgw1EtzL3vFY$eSi zPcomeVtn^me230Y>noobm$6Sj^=4dU<)9k-aF>Qn{g#F=^jgpwXo+8v(>e*=eox+hv%zmD9SYcdW9 z{EK__g!u+_o-vBGtbrS2Hpd)*%@sdsI~u$hzLmaI$YS_VX*?)*t}9v#d@L|~9?J*d zKpSJdgZm)0G3v}8fw#aWGH%dE9O%m^N5z_=57ANA^1QL#t)=k~xF7r<_y~LEdnx5h zdHRALNxUdOegICYFlV0=ck;dRE?-^17}`$l=EvOY&iM7*)We_Kl-?RfXABGM@J@o7M^3sw{V0#w*Gz|FnGM)}>0_i}r5{$S$U>i;^In19HHb8aEgl_a*8eVqqkThM#{kHTKxDK7-T49U6Fk_j zy3W3>_mdCJNd}y6%&=UN9n?aMwq>(HElb?Lj%4c}%b z{C_w+@+P<|tc&eKn4%xyQvVj%4e1XKT;q4X*@xmkK?n0Bcfl_?@XHcpcmenF%+FQ5geC5BZdCqgE#z5CXQ-;9ovz&=fggoHEelYv6krnk#2fLlv;en~tGh;~7^mXY(iac^|sSb6_Jr zT+H{7SD%aab$~T}Uz)^kuK~;IvcTCBzby~m>;=CA&kKy5ekR&G#wO_Ldpq5~{Tck_ znwI}-|NNfDRT>U!;yt5IS^d2>?)%uooNV`dZTzje8sxAgmx)4E+=3E$H*0W#nrb6eBlqpzTY_3j0EzE0>r zXg&j6XO4i6;HRLEvJ!Kegg@cF33DtT4}nLZZ5sB_MMsp|_l#>m-3LL}LT%+g?fR~Y z$RYe{o_;|FYvz16PhD7Mm49PF^^d^)MD^QGgLY99Y(234g1JTaA!$S0 zGo*cX|IW!361^UC2)(5Yr_Ut|eKDK9)ftfO-`-E6oTq&_-(#sSw2e>UaBOAR+G58x zpJNTNy8kBN@O^}y>(eTSn3KLdm*quhCXMbLf-a)nV*0YyG6#8@3k|P;myL78RoDaP zdkDX&Bg_qH%er$Mr6|Y20!^+*eUr*n;Y~thVx9I$R)kYZ`Z*$(%wB26@hhn zHS`C*Sm8d^GwMI>c=YGFPlwUoJp9MlB-iWIr;C}#Jnmc1W}F>#5bw(Vyq1aXycOQn z_wuX?&tHBOd^nG2FOLN6LeH5;iu|0m*Z!>CwC+;B&Nxq*u@1(w6pZhrSJd)acj!K+ z>fEn^eZD3$u`{EA*?Uvfy}&)6&-d`-M#Ce%Q+Nk-@tlnw4alF-hcVl$T+4EjzTF$< ze8pug;IRhvM`*SY`>elh-hLPNY;XT{v(fp$<=)>d{{x@*{k=2vHy3ax&ws(E6E(B@-!%=!W4Q5|lsL>k+#x!3>@;Adkx&{c|v#Q!hQEk)`qs8Ss@R`SrX>hdhnZPg1P_Ay>AbI8)GST zkvh{@aXtONj~(q!f8C*J4?cTxx#r~gKcOS_@6xu&{^X5rDFcY^ti@umgJMLcYthQx7Mn!aPdR$3@&L*$rQ^HGIgkyTQ?` z@+o7ttB##wti$;~^jyp}^qo4wc^ZR8+_(T9HV#v7s1MDx%ag{WkxzB4ME&>yxU?>) z8Ss0~{qY&_DDBEa8*5vJ^6W#jIlB_E2mI0uxwwix=K||Cc*J-%a!nD}x<5PM489JU zC^tcu;BEC&tdl8Eu~sHeOE=?cV`2SqZRWc<`)a}6Pi$P{IYrLZeAIMcdKa8qOW6+I zD>#o2`F8D0yR#CSl>n#a5$<7bdvnpR{N~vm^1nH}i9Ba4bS$*d4lHGS`C!Ee`k`-m z!93-ujO%-+-sB6PGjwF4}4<>+_uYSsK=a z58Pu{3^?AXjNa$@Lvrc2SF)e&2;gYV+^&Rwh8;$3kFnd)_Gq3zggK0r55fDp(BL-4 zIlmJA5o7;E-!H(^kI?>O^jRO;UqK(O%8)xc5Ply{jv3nQYD6A0BjJr;5iR`OkhsVw*xq=OMk9m zpU?fBHK7f7b6xTc;IGfvRk-&$^S&kXKi47ZUU_sFx-|5zyy;qY>72xd3je{ty$!i} z9-6KkfS)`xsn>V!vijB-zBF*UMyt)yw{Xp78uNG&9tt`eZ}o-$&fyvJ24modt@+qG zu3hx`8`lZoxftJP@a#q4X$@^MbN9)kw(9?8y*e$A&eyZ20Ifi`s6%7^(oH#4-)MhA zPQ``(xOPb2Lb;W;`WV_HV_x@j=x?ag#h3EyzJ1p(I`Eu2IrbIB8c{j;=WzJLckk+- zS$pLgg8S(8D|hpZYY7YaguDfNEtG%bSNB@bZ9$G&ePI2_NAN}!p3@JFI+F33%%wN+ zSvL4Cw@*i?FRcTO{ch@u;~Bd)_tY1ovl4$u-n{)Fd;;3LpJEB)Si4~?DbL2bMiuCG z6f~3W>Iv5eT%R|e;2G(z;c83N7dQ1uY)Vgfz?#h;=yNf!>rX8Ojv?@f`2IuZ~zsA07Da-eF~C2{0TFte$y1lm6TbyoEm9L-7Rq|NJAt1;5`4 z40CBaj_>7}t2F=vpquN+cMXKsnBP+Xg2%6*Un8!UG7?*9E$j^F z_c8nw`6zQL-QgE;u^+tRdf#1@kWJ|Be)W_2zZ7(z0AHv>$AUM{;<=P|3wfqtBV?E{ zp9U{q(tZ@QJDxHBH@~tdA0~2~p&P?Sh_kuOLA@A$nYz&0H}#+SN_C)mPakFl@>qfI z>N(F8QO{Y!Z%vRot;tB>XCA)i$+b3pnmd~E$$kC1af1__tG71M-+Jy_6Qi!0#T9Fm z+xSiYM*e&}AA3bVBN$sfrH<0S9mu%qsL)CGgKO)?UBCQ$1?+O^L=RQvp0(4~nz#o0 z5IiQIwgRuu@!5vH)f+94#mm6`LGa=k(i|TD64)2Q|JT8%>Vz*2A^xJT;=uY1zun0* zn`!S_pT2Sh;O!6Gv%y_eo;d&QqSU5&9rXXwl7i^tkl@Pl?ze?dMlPosTQ zmka>Lu!r)2@!AA*fV^M~uB|(?266$;wQt5K=0UY(=FZ&<)tG*@Wj&B3^M&P^zh|w; z6Xp!|Z=Lx4@8_ednZL13oQdcDZFQGEmOijLOkYc0Y0@l_*Eq-Iq*3r!M#3}a^S|-D ze4~vsZ_}Q8&oO2O@T=q2@@YN0XNY_NPiVhpaQ|}VHG#GRTVOXB=iG9P$Ng)8Z#?%d z1A5d)l|BKVV){g?JTwZ63@TB7L6-f4+5<7tN7H#l#Ymg75PjyGcLHb_C$c1Adb*g+~%WMF|2j`hB;UhA^zTDUZ;b5*VfB| zqieuXe=hML4)z-epE1|Z_`a9t{|Y|CPQ<*5s&OkyK32m=h4&ykZ^&0rGomjY@m|`G zR7T8W6y-x2|3zI%#D3u~PNwgQ@V-8w`*_wuXY(=hn4dnm`cwHa|9M>wu~|O;GI-19 zIcrOmDdP{{ne<#1b_@M=3iCG}iJDz&lJpZ_qCa))9NK8x-ln~Bqzq~2dS{TwN0+&- zHWNHggGYXbH`YMo1L3F8$L1IG85cn7kxdhw>>7kVq`FxjGGwe7ZKZSgl97Xu?ls{< zYhR}`&P~Dy4NEfbGL?`k=<2zHe*<^z%fYw6qz^d(o~jPaz9W1oxUl}mJzP7`wab~q zZpLc~f4uti zrgac~_5v>9A9u94!rYn7@PTi1^s8!&bX;s!^Afn%lF{( zv_BNGo91ujSA8FO3;o34Rc(8$*DJS!7*n~`SDXVc-V7Y_-vxZX1AH5gtOtLuf@ke` zE;Q4QpT|A*w*Hf6V99GG_%45W7L|O{4|*7Pc*c~uO806X3qN|cL7GqWudGFoPmDK= zFQ!6cYskAZ7h}#3!Ea-5?fH#W=ywHjFcH`{^ullCxuBPO+_DCNJNjG>&PSqKK49!J z@c%UW>{kxn0Dk@VyZ49B!OaBj6@}Z#2Sg4_eGzyKe`+Alsw2XmY7d>PHPe=AN7H_& z`ar!I`oMgU@*lBb$iH&G4VhHl-AD92awC3?&z0fr;KiJ+zPxg(&pHPfw0-WEH+J8~ zwF$gU2M;$7hK6OaG2q^_v9xs$!ygx5mpuFPZuoT?p9_GecQaylaP0e|=EKY8oL>Nr z=b&Th0mMIyslG1Q0}t+%rRVs)6f_+J9XfL_KM%WE1>3^7?kyQi-%X&wI`DrHV?Npd z|A%qR*>we{W8kSfxwn5c=*YZZ2PZGmXG!Le0}ZWrZVFG%q2HhAcN6zEq64ox5crwj z<-q+jxLE^kcf)%P;f;%syZ@A?=C73%>jWduCp}{yfHZUsPoG%ZHx>TO1&7)`_vAj! zc-FkA*Y9PX%8vfdh(^p6J}@TNe`yHrq?P*fs_KdUECUa_=jvhRWbSSk_|so8cbCb0 zBMx5$Ev=ccPA}eTP#nB{TMamCf;a9@VIFT>2>;Nv4AY3M=kNdv|!P~BBn&+$oF3g8lgKjrND{~E3 zGS+8|^$UGji*J2EEBLMPA>bWZsf$c)ZbN>Nc5}f?4t*?b3Xi~#<|PN$hA$ZJCg!;Z z8ThC^_=X0v%M)MF??rshMSf<}?nwBj9^)Uty#E2rU7?qJT$Iia+|Fr;&ZMpSDedd4 zqs)t0!=|6F9WZwtetzVs&1;#9(#O!3kaxwazIP{RVtl5*ZSJ|`5NshZs=r4tx830E zA=;J(fA>JUO*NQ1ZSL)XA3>W^Etw1O{W^l!jJaHs1%AL$)d2|~n!`6gV;=u)a5{}X ztm&N#58ccE8Njt18S4%$AE3|o8{tC((|WG7d>76m7UsXg_=)_kx;yeH`gooRla_m9 zpjd-cf13w1_Q`;U-8ZGq{!_U`SGzVN{$g)H?<_u34fo+@6zKQ_-PVjU(EG0zfbIw@b)~~yUubZ*BIto zjlRbqPgR&lJ#?70u4h8?XTaOj@PE7hz}p@_vmbHW1|Slb<#__6x1`mg2}#HG5ywGwr%_%yF@ zH*=Z`-Hip!`Sb)IcS85^^zXTfN5I=1!G$@@J+$cwUZ3O{^E6^l3Vm_J@W^%;f?Fy^{J&2oAwO!I3B&w7`R*V+-mR`I17B~qqwFXx*&YN zbAeBrCZDT!3&$(g=9gexbKCkMyTR2``Zrf7->A`ckQ;rp$1;Hfz1^uSFv83Ip^xXK znRl(p+($8n`ILqk;G{h8aZeolS0DbdKK#8HxH5c^=9S11MSjS2741gkh>ZW$k0EE) zSL+Wwo1NI~PRP%^fr(G+ei?1Id(K^FstwPZ|1sC9O{r0pd+>#Egt>w4=zeXtKGI(7 z!e02G7X0`feama12j#E2w9~gW=G3mA01s%_JyX`&hqHmJC;V(a@NMMi4PcxKZ(az` ztU=$ozj6a}?*k9^V;uJsW>w=J@VPee8U3Bd_tky5$1|=y3#^WW+o%6&2l@*Au!gy{WnP|7VccXrqH&YiZ~R;yy6F>`pO}X%-2@GO1-6q~CNcHZwUa!u{zCpi z=q6zEyv85-uK%zWp1zs!j^R3%@!P-){{Z%U#@RqS_gl@P57&=2!Dm14-L;Ad^nY$c z#sH3O@bc(<_#HZQ1Ag_@QNVWBfl0l^uk`sI^EnO}<;NXdU7+#Vha@?#GW2iW>q+`O zn%|ZK$NBU>fqA$l^>c0#uaB+)+~E3la3|loCUqNld%qL%!>6(QI_9L^&VYZ;J2K(r zGix#yxZg@UYsR|6mv?~I^Q$EMy%!pn0k%BgbRXv@^f3rLS-WvS8+17BjFFmi|7`xB zP5)b^X5Y@tu2%2rGk12Xrd0X?tKk&*Ecc-y%D_2TdS)kJY_tp9#RKg zhAx+H^xw0=v3_R;FzG{`MStcvW9_`&K=LBc^*!idZH@kCO=MwKGv<>I9hjSEUrW~s z(5O7TBVB`zP2i82JZnDYY2eZ48U*h*XT0q^r|`} zSj=@v&jWH@()GyGn6tU{)!@T=LUUHc>0!(4bL{10oZ)`Dwm$a@0QE&P8Z&zY++Ci{+0 zZH)HCeZcz2=G#2e=_h`x&Rid(-6!C;Gx+%s982H#fNupfs!e-+kkQOldfpCiegf{V z0Qcr`v@wmijxGf+(ccxox(-_33cu-J+(ow*H>qz+PW?+36_QZU%41q8q1j|5kWL zSvj8Pv^94&hTg#KJ-_?EI(#zYcu(DDZXtdE{XBt`=@1)k^F@JvVpNBSNxWPtoXk*qCTt5u#PQ$e*-@B-u>|La_AQK z(|@qc_?0xjcz-&YX--w*BL|MlR^F}s4FxHoQ4!h7*OKJ&p< z{J#M^5&xG0fARmb^zB-$-|vPWoToCG)~#U|KSM@B9>cd&uZFMYSqIhxs!NqC-*3I5 z7kVB1>T7=jA8OCkmDRf=8+_gi?AL>5WotLj$xjyp$3*V=ezotRoiSLG5y(}4WQTbx zH)oC{*3ZKiV+_}Bo~2)XlVg!F$a}bko1VLN-+Z(7BVrQujCp+VV7z)du=}1reaefVqqPXF zn74bzU4!WdEnGh}PF2VJnxEJUeMswt^c8Qf!E?~^J)T$hJO5Vb1bwo1m`@An_aS{g zhi+I6UYdfp&K;pKaNI$gG;O7;IUeWbT1EIbo`o8EHQtFCaaeku`Znfz^lyAer1RBI zo(4SDD7yaVzAxvmP8mr%-`6Akt=~DdCB7(g@O_8!fjAh)99?H>55Krq-m{f&rM>gK zsWNtq@9vGv;8S@yjQ)3`!)DR`+Nz8TJm-|ezURP0^jn^`llx$Y`Mn}-%aurY{ilWr zuLsT3^fr$XG}n)a^#$o|>~aFU8~E^C&F~#!t-;)v_;CM`b2s*s{%^p4@_(!==o=VU z8aL<{#M-y9fORDL{x6g!#sHu4eVhD57x`Y-Z1_W*cz%U8Lpz}_F5kN@Gn3~^)5r7B z{qM+41KJM+zxv!qLT`Pww}Gi8bMl&ddjdn!)t=$e>8sEuZ#`vz? zh|eE@OTIF`6R*bi>KF0r-j3(d2iox7(9g3etX+`T7Ine)pnH`)YkSm+OTY2VNr%D92XY@6eV@zU_}_goBlu08?NJ5#0@GA<(=v4x{q6!6D~4h7 z`Tys9c$cG`oFmTFJJ#xhy1_jkk#$?>5<6ug*^=4PkT6}7(N9$HS!|q_i}3^ z&GWg}Qs2lN$wqXgy4~DdJ_-!)p+7sKbJg)%(82nX>h$^8kM`BkqaBG!>Fc^7*g$mf zDEgR+?pKGKBhkO~yd~>3FC0kBz;mAhgK>3l#_%i~*XZ719tZQ=le9ggTvBIf&6j75 z4Wf_Q0B3#gMcCaEz*Ga6=VYSmTmCz~)Af?+wUo%4i+6D>e%EoCKNYv)HO@-H-m4>ml8+trhX%%}w9Iec#2l zgEm9C|1Qr>tiNv##v|JL^x9CGZ-hP0_%LoTR@43m&x9{+Ot0T*4%k}z;2C|+`urC4 zWybOD+tt_p0lJsLb~-nG?MuM5`84yq{oq6W0eQn(VSNJY$DMEZ;`(CY6QuodbG_Ct zx|VLf_fW>uCy)HD>qhzr;wo~ytH7~m@|e4M7TRxtPj0F~Kj6(=?b(dqhiBg7dkf}c z+^_HUF}N_+ACN<`fUj<4(wbEXCzq%_$&{94!`JDa59H6JkzN)ZE_fQ zH1~}cLMH@$FQ?Bmzv|l=8%FM5U7?OJo(MYYJIk;7&S`y668?)Wh+9R`qaM#h{ImzjeIKiSlXWxd0PAATLTc@bm?`y%k^idce(?=%sQr^;bA$02- zz?kMUW2>NJL1n#u8=5mxd^PlL~|PPrww$i^J{dL`a^yn^^-H1HRE;`T!oip7HJh26b0D zmrz(IxJDelq&S;dGqLxp>8~VoUkC1AV*J0ruQP#n7QcJ`q4Bu&RIW!Z0VmghyQauc zyC&%JLHl@1eJTIU=GpSa62HYWFoOOeXWBRSOjcxWXV6ZWl184hu!l=J>3ikDYwAgJ z6VGwqv+E8o2aUn=46bV!X9mx&1>Wz$;Zf*`)!-m_U0YMsSp#Xjr1eAi>rsy^zdMic z!+gJ8=*^f*=>ECj#oUZ~L!H_UdIZm!@6|7pZ}sP``;7P2T?Ou6;k!0H&Cjv#&-$Lb zcwSn?JM6@lxl{K)Yy0JO*WY|s-6G&shewXlbA6(Q*LNvi1^>zWo)2h^ka%{TZW#S7 z1b5c?y2g4bpUTBT;L|tk0{q&pc(>xOz$9%vcidXFO*|XtD7dz#-LO8`_s_ZK@B{jA zFOoJy{T{xgIo(RoR2j3Te&R56V3)*~wC>e)q;tXBUx39L0@sqXLFNLDSHjO!m%6Uh znrBZ(4``cCgkP*BaJ{z`{I!UC>e+1OVqR(_ylYw&M%eBHO2-G^s;gWs;$1mS zZ0*z+$dvZM9NHb=#y!EVW4aIaUg)U5>>0-wS4U4&Ol-*Kz+Q~|7c#c_&|Khmz09@j zoB3P~&Cfu`SU31BeY(EA3i;g${%!?lkDxELKU?|jWbk$d&mD0Pas%8~^StYA?gMxK zx9g-M8zebZ_u#bycb9>y9q_jM@CL(k?)UTzidppe1nu9ez%z`~nZA7Y^6k*X`os$u z_dxnSjDFul7o5cJuAi@Ctl9LDk;$BE(S|XsdH9C89hr}e(N}TCo({h9k7Df){Pbh& zy0qI5{yc==>W?Cp0N-`M%~#OzHt4FJ^$eD+&{F^97vLxj+-JiF8PIPYefVDGYr&)Y zOg(G14zSdvy}pY6&ilZz0X*GV4?WED@0CSY@&9SG?aBT1z zzg*b0{2Zr1gH&^fFG4*fFg$0A4IdO^S*YcKQQP0!koGc(K?ZKs`UQPu&v{^Ywz zrC*$7Jqq2r16uf=QP-r}(0(=T)!m)ws~(@@7~eI1X*r4S`Vi_eb0lLL!`slP8*TL| z9%i1`!}ID7&$2#>{!iq42gaSy0i9NyJQHm`g71STi}GKCuFt{`X?s2!nGXI8o4yg) z!hemJTi-SO)$mm=gofJq*e9cZs$Z(#VlDRxz?k+;%`NGhnzPg1M=hRqehK&Vw>)pl zxK;k?MnCRH)pqv-FWTq}o)zIW}sIDD?ZdmDWE z9yt1#zPlyU3;rj*P;ss=NJg~S2wgk_cvwD~LErSlNnPWxp zsUFB@Zj0gByMQa^Rg_*Ute4dXv$KGwVKPto-g%~Dw%~Qw7k`BxBbRtT&x(sB;sgB4 z*Wx97)-~{gF>&Y=eOL30#$La`FCQ>x-}4>*sDAxk?#ZtUX(Nvo1IOBhO9!I+_)Wi3 zyC5GLE4#;GGx%Fp72bjm^zSC{-55Y!+88{)#rH3H?n!iv@lZB=_%#1N#T7Vu3z|ER z4;V6J@F4W*BECP*wTH`G=v92`v+A2pNB5nAo~nke+zgL>3qBn0JlaUdKf@Du0K*G> z&jz;p`TPnvdeKi+=Jh$hoxr`>T${OG=K74QAU`>SUHr`o3Gbt!(~a5EVm?F*eJ)Bh#hn_Kqx zc`EV%%1h`_a{$^G*E583EWB(SZwznjqn(sro}c1AsC?RhqMa9!HGSV24j zKHIm$H{p5nW9q4G;8#AdHqbbH(*SJgz{IY&-@vmPtsi%;19Isfewhn?PC`bFpXc{U zawXN^p=-E2%W)I!Tzl|LNApMOj~(D(5xl#B`v=kAw_T83K10q5+nVr!#EtS5c!@YM z?25QC?lt$JA7S1@KSCQ~oM>)CTxl~xzRd3`W7bLRN|6Wq3euco`JY?DU=z5;7mxUhZncL7$OZe={Z?_|ZztL~G zA>8NtGWr3$0>7~oeXZmBoKE%QwqUhrTRq$HR{^W=gMlg?)+~kn2~j>4t987mwNz z`NMd^{Jg%{gsdbdG( z-U8Q`fn(2oc?|ik$^7+U+rj77G$<>^i-W*Ncku8IzYlJ?PX@IS;k!&hFX+1(7pCiy z(sm%$G{T>E%|c)P5$HXUc`l+4Cc*=*Xgq;I)}gUNA!*PyRI3r z@%!LTel)fz&zS0v$PF3em=BCtS={Kut2g3|{8;Cy!NZ* z9V7pUS91)mU&=@3aoxz!DH5h1fLbw zA@Wni%E3qG81;3H>*X7HCUS)86!Ya1vl4$t`lr{i>jCFx=3z~SKF$jrlNfqE-<834 z8PD8_w3Uw1(EN!uWgTM`(B&v}0&QO6QolUk09-IX@!g8&CIiGa^h(rUh!^dN?=gt{rEB^t zDszpX51!Soo(+v^9!`7%55EUqu7gkITY1*=4f<5Y{s7xd_{Mq{d3Y_)p9CFUxAW{S zbC~nWAcuTjTZb5qc9%1k3xLhDU*uWO>T=(&XB%~cPaXu;+VJ>JX!s7}90CoW;d|6} z{6yOVzO9e{&okZOo#tIwlccZxs}V24>v`GCjd>1a9M=yHhOcktvkCD2gE_r2DB){; ztHQip6pcRverX$Ym7n#m^rh5=LDTS^^xOOOOLW;S$f&ecm-(&<{q^hk?s~F&oysx~YGp-Dlume@R~UyyR1X)mV5ncz+^0S+ji@eo(h`smSl(*7sHG6YK(~^0w=y z(`kDy{ir*BrETo{7z9m6<{_8N!Sf=1V7$}OPrFBwcj%R@F+NTEh`)-;34{(%79tKy z*UzkGuG*T&6^TFVkJ^KOWg}v;w9T>3AYDTfaua@Q)G9@uA=V^}#llxHcNqC4a}T@v zAXCguTjYBZ+&`k;F;8b4rv8b1(?8dU_;CjO&*H5fjeoW0Msoy-6F6DKDCii`=!pgm$5w~ zSKfAC^L}li8Dpu3%zNwKTN~Df|KCN9wW%K+ndHK)H)_S0VN*XukG;>Oo^t=}%frwe z@RYhr**G1(S68_d43`?U5t?k9q^^ z(cBYX4|oe?4A`yr{sj0ui+m}#G~U?NpZ|gV6WUq7)(#nHPv4&JqR&?c+WnZF?86GZ z*nD{613m%#Q-EO`Ff|6YC&8gLZ}S;f+g^p=7xViS@T|3*+V@*3K`-$75Mx;z_b&9? z51wdEp9>i~^l2vdn>B++fz|b-XFC!DgBQ=6pUgO2tJ62*_5g2-_`DHbxRN=H%>gg8 zp9TCat5NqrpZ}Xa)el!cr2WtTt+vh>Hgd`4+Le2A$odlL+>1ViGM}!I)4n#Nt@Ty! zf?M+;+EIN&b+0vT;VYQ8u%69Ywsp+!LhyQBe&VBBYw{ZWA$_DxLwG9c&#XNQ9a-3x zr1fLOAmJl)0B`!>>Gk)t9@O`?)>i*peW)Hx*WJ3ltv{Z&Kk7IADr?}=Yxd!9>u0OS z)LGU~X_H(7S4T0m0)1p`AAXg3Nc~f`d*WZKf6S4qbM(2~pQ+u7b#TyCpf5gw&gung z0ER%b&;j##P8r_{4?e=Be9x!dp=}fSHbzpOm0iyUU0DTK`CWOvuL-)X6!=2VdamDi z_Y07XBmAMw<{Bsz{OB#X}nZa9wlwJf-cfzed{C+O6O9_KmpL8a{F4TCzD0{Vshjb)xlI`dr5LPcgqQ`F$?m&0(v99_1PJ zgZuTf!N2v6h50RVqMbS=d8cFOEBqMwPX8tBvbI>6GZ&inO|`4aR>+k;jWQK+T_?V~ zwy(`JU%3sqgRjg37{|E|YHj{x=xRKtA9NIYB-Uw+_jI%Rbx48g3 zY7?8nXV&TI|GK6xJ|6||#&WB{xBmV)!9E-G;EFN`s&54;M_tvPc)foJ#q zK>x?_yme#Uus!BCT8&`b64WOZCr_G>Ps{&H!S{x8_$4Ljw+R>hd0o9KkEX4{qU7VfBg)y&d#rlQ%gRU3r3xb{X})L{+@BG zeweiv{|WD;WltRF11WFm++)a`K2PBo$ozeJ|3L6n>=}@^c)#_pgxTm7r{#rC#Ki!PT_asMC;u2yNn9~qrmQ6nTzhH@28NB@!WHb zMZR{eyaKS82RaV8j)C`FyUXKQ>k^Io^f9bWyqxEZ?_v$l{fVyAU5TC>oyC~&p7yUK z*I~fuySR+S+{a;k$w$Kzo98>Wl!4Yf`{)383Rzpt^R7E&(!Xo#%ED-P$GsZMfnooO z*iG76&v-ulf5YeX;HC}#-w3>eXj{GkF$=Ixsj!&2|cm^z6m)>>k##C@I*RR z@cnDyr-cqNcVMg#^jDWetYD2-L2jDgU0?k^H=&O)yt!uOViCAg*S0_=j1TSy=Ejw< zYvunZugG)aiAM_J&_2LzZ1*?r_ij!f@Wk2t)`I_sfs5~WZZ~koydr-ZdNJam;Pv3~ zf6j+~oP&O+zFB%bMp>5!g5db7wqm@D-hxt6`bM;`QnX2$@l`wn{Z=^kEfta}XH zXQr(+H zyuf8qc3M73`}FCWfGN;r_5Mj+VBk4&)#{Scz!v$aSPKdMnhsy3^>pZ&(9ywf#%Jmq zb5)^hf_ARAT05)Gxt)20&e0!u3Vcb=$XUf2ivD)Qbdal{h9>sUsGIb^LO)qcAU}LS zyReh4uRI5B)KB{6o|mHSG&gC?qHknvfor_hF6xJ;L1K{{!Fw7AV+*V+{O6Mk0H6wIa8|+$J)I zO|)}QP9Nqt2idfS!ZoFmv^kx5mgPD3=*)!Isxq$e$$aj|e%cclEBrk7>tsWhxg&rJ zT9oHm*IJuFFKaR$2Y%Nl%fJh-0NYvZi79#JNABN*Y`&C(+(MgE7;9Ar=G%lh^1tUy zozK{JfG7P&>p6a8-sZ+8^#+zf=uBYJuiRUWTpHs~>jmFb1gF4J0vs&idWma0R}Ju0 zkE=e{uepo|&sXT1=#*dh-Sf_i^IKQ0ES}frsL217xH@osPMgEfKdK%eAi0`W459X za}IO){Z+1}w6Qp)S_^b4|F?v8zSC_B{Xb9#*(R~zkNf9h7fNAknE&cb#>ZxD0mpYEn-B8Lap3nZo}a<@ zQQ+%zWc=QG*eGD%!q`{yTj)~lZR8NFRY>O#LZ^nUnuA=14?i2&Bfp>a&5nis+Aw|k z!g~wcn{h`c=FB+iJbf;6R^f9+UcvnW!@$L-mC!AH;6doBo!g6j`5qY5L%yTKxY8Pb z{ruD6$C=P?FZl93ROY~AU02yQPp}ufnHR8bvn}vPoMb#u9ULjQw}U6ob22aBSqE1_Cgo;$Q6h04+388;zD3E2ha~1lmlMn=vriV741%D{+BTC z)dR3+;OBYha4>Utir-xCw+6+%Fr9$Sxb_g>ePSTG4;ostRJ;+qG75fXoc{E`xZOTF zhD}V@n}lzn?F(9k9~E{>A0yUNq)Yh0`oP+WsOeC5n@63Mfqnq@u0Oc0?)sJc9bIp{ zA3B-;6R-N1?iF598J+@n`-3B6&kXQ1lld8M&f+(9&j9){b~vvi`h!n%AXAy&>GYk2 zY|P~OJnpaHd+=?{*BX~J|LQY73tn@eU-*ti;UV%K=EAh`;diBLr^HdzO^GApEp54Z z*RbKi$B}!MpO0mZ)-y*-egN6#@El?^|DKYhBpnZGvI zy#%fsnIm)UNIUCUEz3G3v4VRvj2Emi3p+b3CyDP4hIg(7o(t(C){~8u&FPv;*v&KX zZa2?6zYg4KW23ICIpZs1Cmu*Xg+6~_Z0&4b6XYBoKly+}=B%5JbNiG(^TVFAa{_H+ z-)s5|731-@;RSPc=6^DWfdl5?xog&27k*cqJXRYT#Jbd)fr)*7qHPk_JP$717kdRT z>C>76(XW*ktuMQVeq$|a6*Txe@NUQ_W`VD^RN<3(egnJ*BeUiP`?p4q(AP%pYrm~Q zYXDpe8AIJ*Exu>DyaJ!U$!C6d=Gh2ejQij7jAt>*^R8i;V>FjF1HEm|djxvGv%K#^ zUeqZ)>3c1>xEB0=1nkrKUthpI7`_MFvkq@)h;668S=?U??l%L6xpHgW`Y_k`c%~Ac zo-e1LzO@>-r{8J7wURM?znwWs_u_f>oM#-?1D^-fqAieMh11z}K75Vixo8oWXp?E!d|^f3u;ndl}uE>$!~6X;%+8 zX93TtjNuvfo@?_2ZJvaWI)JBlz~yr0HI??}>6$U7`-Lu~|6iH^S?GN0x6kC6k=#>f z>_jfyFZDHZyNLVl(N(Yd-UQbOdNO_)U~b26t>EKJtAcNyTR@v}wDr842K2F#zFimJ zNn79P_5(0=W2`0MczFYOo@W=s1Jk+pHgt`%bsF(oS$=aJZXWP^#%2bzIJy;n4DC-u z7Cd+7Drnbe7;^=0yO7yu;ISRRHk5n4_}#O3PG_z+LBF~5Q3^P#Lx)(i>(3Z1f$PMM z(1Lkcuf86b`<3H9Af(C>11`9tu#5SV8G+ZJFOolQUV-3~sf1+|<)7J;g<3?!UI)6*>mBpv|?(6t025#N&)sA_aqcj)oI=;EeGoXRz zO}XZ7t&X+S5o>5muLd8rYQnel)4VEvAD43dF8ESLUB~Xo|K?;arCp^Si5z+6zI9@+ zgTGch<9i_odnS030 zQ!nD)^IUtlJZnK4a~1!`Ub0HnkQ2T`!eZxV5yy1EuED#rpuwBc8vZ$t-+t!0n(GCw z>=yJ5{x*Q$Wqfx}OVftT37M@*M?1mY>=F1A@Z;Bm&>tn?N8rA;|G)bMMde%4en8}) z^@r9TnyiUAPx&M53&qIs{2W@vZVE_K`Bxk6ftdHz@6qi7E{bTvgnvTu1iTGA~s;_)tHgW>5nKNI<_+Ky& z-)mSUB<)sx_<23|_P~4AU--`Unmq3sgJ(coQl4hKnCsOK)88`ps0?{#hA6|&cZTae#}_Tc)&b*n$KP9i&_iwSFWMS=W)KXb1{D< zpNCGAzs*yHuN!q#u0gn8FZAQXx!4jeb4KQf{7w$M|?~ zv1#oL{4(&R|Eb^kSLWn7@t)&iZ2CSjKNenE&)gUByZhs=tcXn0uV)F4Vg4u5pZnt4 z@ck2hf01W5w*t1B_`Ja4d22T@?>FeHHgfYCaLfko?fmvxU*wK^?kk+aGb6#tMDG2S z{_cSW%a~L5cE}rW9?x&hD#M%nUv?Py=kvtsv_S^eGOwD<;}rD+^q$Xnx4>&%f$4E@ zU54uwo_&+g0bCvE>wLz02zY;`|K}L51-O@H!Qd0PagOnfaCu&JeQ5tg6YyICU9bM9k87%;51HSa$W9*mMcoPt ziuGb%d$QqUcxg3rbxtw=poKan@0IgC z0(ypzDxF;i4qsLM5_LI&tJztJ&XE@aZ;`J_`z2AMVXh**9-$5wzw%A28M`L24j$^n zZ}L*%wTV~@joP2Wc@1SL)+9X3OFwujw2}w)Yg~u8?MQ6$;G~vT-#GRN#r|#erRxnp zfRm^bv0kbdbaa1*^&-{;1;`> z%etSyrDr7Fz`g6aF6Fw3%NYLvu4ka@T)yw7jW*vimFq%(@%AnEijvjBG8*~rkju0@ zx;~g*4~+dS#t3N{8_Ib4PU+gIkeR~kckTlY-_Z5CslXh$LFJ|%W4cb4UavMMsD6y~ zwt37k@_w-&$}=Ub7e55VD-+s0ZGm-H=I!brb0G)vzxL3aocnqgKu7Ij?01?*ABO>l z`7>it>xx>y&)SgBfd3Tm{w2@4U!(>)$C_;A!93L8A@rHRq0cWJ%`JKM<0HsSj& zDRgo8@5;h##)@3IzMt#F+Aisy*1@s9p}q~ew+FBK%qxK<=&rqv7$Eeh>$)3(C-i4J z4lM93nV)o*=25Hbnum6ACopbrknDxhHb%X!`--iX)bDgJ+%?dsDfm$*x~BR8y#FHd zDNjV+A=Xdz5#$ML@yy%0k0|!W<$`bHL*I8OuegT#0lefp=GC7o8BgAEFF|8yE)UgU z{O{la-;3pXi@t|@=&I9h6Fe|gI(CE?fTsoc*4K@?HTP|~w{8P)te_ury4C}l*L?wg ziM+1w)iM@668L7)m+P(atS13Yi@yER{J zunh;n_r|S5+T))9v+Jqy@p;v`504LkCKqsT40zH%TnvAI3XHGkp`RI}Pt~MGMjK$R zbs4{#XVuR*kum=UTyKIq&pdSxnt4@qnrBp4&v-33l>dLJme>pRoc2O_@VsXI^eqj* z1@l_P{q_};wN=lV9|FC%f}a@;lUlu>fvG{0eR~Sr8|eOliy6~(PS=?xLBFNo!S%{B zna7Bs=#WPA&pcKzhH_<{H@>X`w<5)w!9sC z16}v;4*t@-wgvjQZod#*`~}+UE6#;iVy|0U?w>>d($u|f(#<+_a~5;J!LQ)yY;5+o z%JwkB`9rM5i4EE#0>^4SE%IzFitu+9CbKgDWKdbbs*w zBXFpvLPv$4sGbVk89ywq4i3PDK40L@xZS$-@VAYP^tnUVe8$|h*-?{yRlUTwa!qO3 zf$$q}`!2i%(7VrIWC@wku7n=Z*O~&%?*Df`oA|aibq}<#wnE#YE@%u7>|$Q|?Grs< zoyB!2==H4W5)f2c5Wsb9Xb`F<5 z$(J3_mFNohoDLiYet=NO#2l3 z8njKP0*^Tz`D7yfTGMYHGWKN4C)WLFhhp!VJfaeIR zFMLB~&AeH}UE%Py8=cS{Sis%x+{70+m+!{xQSWUo*ZmKkX=tpX4gE81%$Yhb z*OcU=$-pO{2-6?&M!McOo%2rnv1xrV9sVrr(-z);WDKDHpRPlU`ZReZYSHv%<(C)1 zan#4^&rXDY^k+VykMtg-&HU#6Nn<~KTJxdiG17ayT|+U})2|7AllEmpzgyccPlbd+z=XYu>fX?h6;!t-y0%_{M$V%C~Ea?hSvDs~vc9z3+*E zNo=8Q+|8WKjku5QFO`rH=vSj@5_8n!|KOj<8>jVq+73!5*Cb|xC+Va;)bGrquds#E z#JJ48aPpJ&gRVK~Uly!YAu_H-E#h-|Zn74&hyRsPV`p(_4S+JK4Em0UtLaCdd_ZP0 z2lF{a)l`Ju37sRn!WposU(7R@HKpeCxo;?H5Mz&!@B46%&>85sa?m#R2Wg8cKpX9l`-1L+7TO*C z%QXWM9?|Z9!!y?VxF2W~zgg$wTD^H^*X6DAQQths|NGIGxuasx-~B$bc>Y1~={}#Q z>D#?N^_Alh#ASofi@?1QyqpUTmND;nj8Rbg3XQCd?~Cql1}z(K-#Gu+lF445ir~OA zO`c_(mhkLrz~2zvHjaCF9r1U8?`+zvqWy8eSDDY|jG5-O!uqN{?WNfiz+Vl%jroIi z=8)83u7gTLdCR=Ma%{cm0)A6wjW<0v&l-Xt?Bhqfgc``dQ>0behJuRGxf-@m#Lyt%*h&yAUDE8+v1ywAM<%$3LQ)tIw<8S5^Q zGc|5gPMn8vmwfjOu&GPUf4a|J-^4oSe!2KBhw;5!;uB{xH*2gqLxaFu=+wYnT2|$I zb$;m30$*zw|WJ~2VFDS2#z8b5Njr$m8%@M#;R?IeRE+W)RFF) zGdE^^x4P1J(6!eJ(9JdHIOE=2OXPoh1GjiE?lT{zd}w2g^9t5#vlCrl4oqKd7wtR? z)V<(2@Pd2k4r5%`CDg6TkNVY`8tcTL2j8ws8GE^hU>mes%%#0{FWsSx1#1`hV(#HG zu37~>l%qD#+S(QUE^}tu@kaDpo;KtAqWc)vy>su;#|GfKpXYM%FZ8*q??-$Kd?zxt z`{>HSqh+v}zX0Fk%=Z;O@5fH6o3)+#+zqP&AN=qPIQ%`Dhn|zi()n6>O}SA=htD1U zw)Qh*$vlugfV`;wi`YMGrT&#UZ|QH&R2fs(P0UJUP5rHp75N=w8tq>mymlRJV{emr z9M3Ygwpm$JpDT;5;TFW($ipQ1EDlcenG56+yt=lb{nPdp;F1Nz#_!`bElX+tM48fG)z%gEK_a&ub)?Ey$*;rQp%fO>4ku_;qn!VeEhUF_-q>?h!ttcENp6^UyD`=gECe>ZU7c zGamk`#q}27&p?-0&#xWv%t7^zXAHVu$r#Y}oE7lhpv**%JkUFd>sF&Ha-glT+D3TY zy(c5k>G$*d-RKkd9qnYSyV|2Gv(R%b$<<(68rDHyaak+15I$~9yCvu<_Z~HD0$lmf z583)2Seir60w0L)XojYd4JLjV-JXDWJmv%y)Rg>-vM{4Bd-i&M;{57X~q2*O!i%{dk^} zHpb}Yfc2Ytfy;Z)qwXIoUKjaAAFbt5@4o>~uB2~c?VG{>RP=}MM|96%{^7)i!0;T* zP?53shaZMxgQFH-8a|JH`i%MP_l!xePr0{%akCozJDq|?f0Q!`-JPac zf%F`hAJ68VzQBd$k9uB50uN#sbxSZ&b?&!Vr9@LBAEvxd#Qvi{Azz*2CIb1VFe0f`T@6*x26Ciod#De*%-2KOgt<7)xH z)qEDGzbnyAzNh8ca`69A)V!5pEav39QG5r=_Wi&o@-?{x^W*A_E&5OV6YYaOi1tyR z!#LcS%DK9CB78{qO&Bjl9PPZ#(OBbcJgrYC9`qsPNptqrU_Ztj^!cmCgR{ zzO6Gc9&&x>CiLCe;O=>z|BBy?X9~lw@1C}2`cc|6FC9)C zn2mkn|MwWLB)BXN{=ORl4ch;^J_}z|A1R&Rb4_0y8COKjq4v8L-#zon7~5FF^;mgc z8(^)VXKEbJT(|Mv+N8+Qsr$_dNc&&2(EISK`8fSXYmL+`r!g1vaK6*rJ)xc(u(C>$ zqxytr9{``$=$RKS!<@~9T5oj&?dl>g-Mj7MiLk3NKlwtrjo3p+Cn4O!#w-o+8owy=zAUf+?T%9>s@H8JRA#dGMQ`0b>TfX#<}Kr z)Im={GvPLlt=0@Wq5D?y+ca?4hOx##2Xmb6^|<%{Q1&KpUrzb|ew5y|)(GQ!B7tqEm|!I-gc(J=O%m@H$P#y$wC82q2l`})3g&F5G1 z`~7=7PM^>HxvuM6=e+mroWmH+|J4C!`jyjw)nVZHlnw=r-O--$gNHX6S39noD|-_d ztjCzFPrDD8oyU7T`|23pd*WbXcujbo``_cOPWLFD z*A#prGpw}|f3I=B{^r&6W!`iy*SBKa$Btuuj7_{6>n^WNu~xW#Ut%55Ph-Y;4)?6Z zxUE%t9X$7BZq{dcM#41S{}{0GT%~E?SleU+J{vNghIN4veI3hhhcWhn!0v2d?i!D~ zz^8do&retmp6=w{W@`YuI>Cg(mF3@5F?aAkf!{U- zPjBo{=ta-Co56Ui!N(8KXf@Z~2A-3-&%NQwbBt_vj*)xunPPj(OR1l5j;@ohlhEU zHp<+j^3u4PH3Qa`x<BQy*54}ep*16Qw3Nmij5*r_V8s7R5*=USZ-%Xp@x|X@< zRBKb+C&2pDzVx##^rZfk54ES2wbvj&W^k``sC}LKRdb%}F!q*XuxIJdde#N>^%yYM z$CFO?qF-h43cfF9d=FL8ANRTr!@cwd(5E%wt=bp#?D@RzooOBH6TqSCu%hPWUG8rU zd>)~%nwTv8{;_{i(`aprwf5>>*Be>W5?O8ithSJ6`njG%d-_Jk`w4Vt&fNXah5>71 zw@r~P*3;I3KTn{)pZLw1iLIK!XYfaF?mL0+J-Dw8JpDb_w_x1z)F0r1Bep{}bM5gi z#Tse%z1QE|1f2EZyR!U4?z2YM_4&)7+rM(}UBJ8x*R9*#lJR%r9UlOj?SQ2XPDnP(Bv@2`3QL0iE-UK8hebfyLZtsymKh;TpM_ldAib;DD!e+o$~M0 zT0FOQk>itxwJj=n*4p00Jx4LG@U8xxF;023oP$+2X!~n-8Sm8Qw}#LDR6%dcpL-H8uce$&ppQJ&tNWfh0hqq28_>u zpCdN|;~l|^dbAu**0xs12-Cn!oe~>6{=#_PX`V$mZO?mMzhOKe^2gk$a8Ne5W=cOH z{+zYJ=8@!8{e(k+1E8w$54NKZc}E*Yy0;Et1b9g9So?V~^tV;RmGg-nh`ub(N4*)k zDa-%RPh!E*1F=!1rE&~Cb>h-f;*i28@nUTZbAG8`l*W?3Ez_8KAij5E#ICP6Wt~Dl zs|WPOl>gG-kl0}QOm11oYWFjiwypP8M(++yM<$yi zx0WzAlQysU&Fnd>Z#bWOwylRPjl8n9HE{)N`jmyn(WD7$_&ft~#n>Vrx*vGaR$T}j z&AnLvU9(o1eykf)u1y0c))~kjZ5lvBw6z))_Qg|NZ_nS>5v499e4-4hq$6dJG^5Ss zni6xSPyKPm-HfvR_PgTdd zK4j;1g`RYeXnEE>p50T{u?TqCP%b5%b4HF$81Q0!%Ksn6+J z3-y3;&=a>V?5neRk98v2SJwNv@A#!Xz!kiuU#U#&0Bp>sTU%kRusXsu73zswxGw)$ zAN&eDA`faatxF%Da_^*O1r9u0Nv??Rfzz*m;dA^h?@nr4@b6;!T@}5RIKyc@>^LqFunhy#x(1I+$Y#|q3QK8lidgr~HXuVC{o+t6z}X!&8B|@jh!1x7@O@Y1A3guz7Q3 zmAXCg&PBY>+SSC*)F<%?)cex7KBP2m&Eis8bc?jCta}@I;W{B{_*8hzwGyM&hAul5 zvD25h)|0tv<2OU5xwcii!MvvDL>hn77nhC^GqpAZ_tLZHyuP#zeiirXqg#ih&M`i> zh-%36Ng3 zkwd4}$HjJ0W*Se>_A_1_dn9`nTUVytp^lSwQg5L>sLhdeGse)2B~0W!>J!g&D({6V zydPb+kPX&&t;_WB(BRgBgc1Ot~WsC{uRq1HaM7 zIn4{7jUm+JT9j??(bTP@J3}Mzxb=#{FLvxau0Kipo>oOO7pxu9p6}YQuyc)1p?zwd zm9>c*^L-C~w+^vMZR{Vu^ZH-bzt!wJ#vt@D)LB16Q!Rk|$=qWd)VRUuDEQ31@Sftg zdGvP|u=$klRgClTHK2Fei~M~#I2gkBb(#D0x`n=}w5^QYh4=KU$~39{SU$HPx+6YD z=uy8yT9p5!L2WYa6XQbh1Ee=&JMx`ya=p^6^l#2wyF=d7_HeITW%Nk^)L4x6oH-6{ zI%^P@Fy5?Hi`{OHTsz^*tqUFwK^BHT(h?x@G0B#!dy9L4$v9}^`S5e@aq0c@6g9s;Py&ubTWLo zcMo(LeEdU~BKK|mT^XjUvu&JnWMbK#j;$}LX>Q2+o{yk`{@~cP zGV+dVW!!V9J}^DDA30HQFo^d5Vz*ukot1efawTyLb)9*TvX7*Wcbv%q8~-v!U5-x# z*UrTpiFx_RoajCC2H^$q9)4)Z*p)x-{j6WRDY8|aXKmEz9?%yw;M#I?Y{tjV0uHX9 z+=F}7gU!IHb>{Mr^kKfmT${4p`q@!DCoGLQEJQX)Gx2$h4;ybV793hJAEBLSjg@@3 zA$VGYc^LclQK&6gvMiW0}c3q`BWR zp0l{G!Fs@x{*v1;x4kxVmcOm%*nxQ*3hq6pQvdjNX#UVH1<&gzwPZ~DfPeRTe}U`T zlY1~O&q+F$_w?f((y;Zp`qkF}n@{O)VZEYWw-zv&HVB!{IPL^qJ-B8LZUV6Xg1J8_ zPcZgBb%#HAhxu;WJ0PL9e1Ze*Q-Z=vv{*2!)0e0u~#uwa1J>xc2FQ4pv}FB_@8`u{5kcVoo56(Ly8+hLQiSqUdu4!|+fB9+9(`U`mYtWGXkv6CP zkbaPUk9p69?FzZOU?lz%_gzO{E$S6A_rxLiSWThrPS~KpXfx#Z;iJF(^ANNj{zqD62 zV{XRc+`rW|wzGM6_KmWh<4MLauRi$Zxet+}?j6+zxR&>g(tmiEcXwfq<|B^*o`*0d zd7@(#xaNJ=X42d@vaN{?CSmtheUI z{h~gl-%pTtH^WE&Lw~#QE^9Fc^X&7`b?8>P8ks8XO1ILgdkU)~l55ExYx)rCjL6n< zEs=JtG9j^T>GrEmg)gP=p4uVvCr3e}>q3j=c!u>u2Ql~554lH~w6+XANT-1wy!caKAbX5nh@XORk=BU`G^PQr?#a0t-cec+5y7Jb%yFI z_Y^;cv8$(ALwD|V+YdZuuh>UMGIp-7IkwO__cdBMrs$h89cPTvvNY`Y+#6H7JoIbq zDK#b1vFjPi`NPDF?**RHv-bMI{eemMmA+Z%TiZd~$T~UaZw@iBV)GVHfXnC>>HTM5 zJ`vbxR~Y~O2zW~4)`plX>;T=L0NtC@)|WXP+eq7@6?9|_SC}pW|35+#(ywP68M_U= zYI9Gih0X?!uD>qlvAgoyCeVxe)!Lxzxo-mZOaN!Gqdh0*Ct%hYS@S#I`7`et$(UUu zYOG6p`BcWSHGe(Uo z3qJ^dUR7%>O&ibi8H_y|&*7Cdao>%Z$1C*rCZ9KPZ6AI=pH`zwdaT5ex}?m5<^0Y9 zcw>6Y!herFB<{ppIhUjDZVf=CjTBrOm(!m%_Nfk%FV#8Qg5U6?cDym;&%v{NY0TWb z&HMaj&c?iqdgd+WF0UE8(?>SGIf>8Dpk4WI0b^0Gct%z7DB3N?j0bO1@Zq~dkTV^y zodDt?&5&-GEQ$yA8DJoKK=( z?Xm&D z&)vf_Pw}_)1y#Vx{pHSQ{%`U8ZTxP2Vi(4L548SAuIU@QzuZEuUsRV`GsZ9q5J2{QetY_OM2WXs6A5_~%J)xarp4#}Hw#}Eo)!3eKT=N^o^ycu)0%)Ko z`2IWhdakW_ox^>~Aai!&)VP`U%$nR^pTGM-i|PYwLmuzPcjnuZ`CAil`7rpWHFi9- zu`@VclTUq5bIX6|hg1N}osOSK1!Ihd4-Xt(;dg zr=;93$J*50!aj1r{i^l-jAJMhD&cHQ)%=T`T8E-G^N`C|9B{j1#!l zDEU!k$n=Z?(vgcvvPMPzYn2L*OP3?e6+!(tB0UTbIghNDQ~AS=AL6g zB6L26&-vW*0r#hV*u5n#1DCHu2VZXlJu<%9+#CCDb+!J%ZRB#9ms6t?9T~pP{w&$| zNBmfSY3-i)v2IWPwf52&ta)u|*7GUk%|%tnGhn|r{IX5GLdLrHrt5n%-tdnyHDlDq zk_My8r9Z$`a}H-{PnvUWqV;Rinm(Xw6qPa3lQx(&KzCFZ^46TWF*ajh(uMY8;=tNj z`oHGBZ(w|`#jv&|`NygJHl+=8TnApIoy_0LPsgkdkl*!F<#k~eU8ap&BkPbU$}`tR zO1H|cOL<;7W$dj#uv12v=ac@v;QIu|@*{J&xdU_$9~(n<@5DEtMeU_SfODCj14m`~ zwa{F2l>T+}lzz6bjGj_XYxf90byZnL8)ugfsOK_`7ej!shmTY<<}Yz|UH^dVJSTi7r<5_6J7lWaE4f z^(u7p#n7PVb$O1Ru{`(I>9#R2q?O^asyupVU*APq&)QGnq5m0}7~{1bZ5cEqY-;>a z&`_3Dsbke2b-#-6g!?48ZfX}`rM$9cOkFjD=Qm@F?nCh;usoN(ujQKZ<7a+5jqmTE zx6NH&;WhA6*44plctw6zKZ{rCQ2*=~9${|Mq&hi1Sa2+DYU9eg%2s(-UrU@?kK%aE zO&YH=Mr7{ZSX}Cxj|Pw0o2{Wk_t`O*r~j+1sSZ`{d4A)y@a48N<=Vc?@hsj~IVWjW z8g(9Jo&i9a!%5&v4X@kou7IpF#~mtF`sY2fii1*#vo1Wm#I&V zV~(DC_8r&1NB(PL$e*);{rhbh7h{;!l~3m4TIR3o^Iq`i8dGyi#?6IKO>U_VbV@%9 zdB3rR6Y0k@eT{E6;9g~n>ws^k_2)f%SJ$+_O;K zB-^&&t&bOlRE-aaI@#G#J)x_2gY#Cp8pv)>dri?7~gdI*b|%_Hx&I| z2YuOsd)Gjg^6bToWi<10zcJ}xHZ=8IJAPx#UxUxj2IBMb{rIpcK=zj?d+MnUf_c{jZMFwZZd?=P9_0`%KJ#=Rxie#39iGxx}#a_qCbp2YD> z^N!ytA7r(DlqE>t!j5K)(0G0Rp?yhi2ls&z{a|ttoKs?&Fc>j?!U0J@&R_s;Zp3-jy;zue!HzM$ zc((WGl{hQQTk)h0jl6xFIX}kSl~v*`^rla%Eo@9W_OA3MPA2g#WsR~`9bo**nltTD zW5({S)r2;{dx6K5(3E?FgxA%f#;laL+Vk2b_4zJuw&J}#>Axw@8&~Yc-_7`*Ih1XA zbwq4D=}em`G^IY!wo})qzEFEfJ)o^(U9&dR{_ulqRJ4_hdAc`}`>BZ^*Y3J+#j51H zbZ-5^bjF%^jQpvsq`nnyjzwEjJ*ur_K3aQTc;}yXUw2 zeb?dM*dEekXU1;K$953^%9{AY z>RD}u*a_mfEn|=$jsK}%v_H)&XoDuNAY9G+npYUe@9r@vO;~TPp6NKY$jcbJP*3!# zD&iOJk+L=SSsV8Pba4c*k`4|9*5mo!2V4vSm&W|fcV7%Wzs&fCbps~#z}*;h%do<3 zI+N=k0gLDPeG{%nPF4DYkxkOMw4z-kuEdiyQOZ;0sBsKs$Q$sNI?%l#To3JeL)KB4 zFP4t2mvB9dYxtBCuh6eGf3DNBF3o(L=LRi+-rnYY$pd@FqxrX);3IVso-t<*svR(> z&s>xNo}WBw1N1v{`if^qmuHzre4x^a(dZ#w2HFt=z_pcMf$#*G7lpWFQ<|VaJe`H+I(dHbN z(9AJ<29r5PbBov4g8#w8#lWEvV>8aB?)dW>&^+)q|943p=EZ#7YuG&Bg6{u0hv*k& zr1radvK%`MFQ{`o6H{H8{O(_YVeEQi!20sq^2!$d`SN__7j5`gc*k2kpq=f2^TJD9rM^Qa`oKTTNoh&p5dL= zIW}y>yXp73LExU>CpUuz`96f-K7ubdra$$uG1w|-)-weg^NcXPoqJkAyVe1?R{Ue` ze;*pVWH_=A*uKD=g`qZ`@>JdNB;WN#v=!VBNxJ$CG;$_$HCO8%-Ntku@soZoLQZw5 zhn#8(tl+Wh_$=cmK4W4(!A)gMH@1vEqj*t2iyQNJj!)P-#>8wBqcqlYE8{EI(wFP# zt)I7c-nx0?ug0(k(WkkJ)W%yAZymgR5}UcKlM-uj?B!Y)`6jfa&99H>nDr4Iw>%_G zS*vAyNIr5N@!PZ4q;fdE`*+}7S~8XudeSd6zG$q&*rL4V9HpZc;6h%zhWpJk#9uRB zZ*E3k%00h5e@0xYr(fp2&d@^Sg7_-WH*uWUpUJCK+H=Nb<*j@9T-ClDiOI@asn<8& zEDW^wjPY2f7TTN5@8&K~;hH{@wPVIH^p*Mpldpi&Vy-_0&6W4bFeWd(TFZPQvgLa2 zwFdJ%o_FtySE~zK*I2djS8W_&=lTlQZ@MS2_Kx;kGoI6K$T=>q-}L+zYnzQHT6Y#3 z&vn3_;c^epXfxN{z1U|ZbxEKpp`GG>pw=zBSH%qOIhyOndUL*tHJ&x~hV<*Y3(rvL!q}7p#U8wM(AM~Aj3Y6k z@Ok3AWj@ztk!F;~=CR}#W2)hO<&!j0jvLkFDZq_+Ic?dRxIFJm4%E2E6zFCY{kU$? z`f}IIKFT{fY(oEB?*<(VNCq*}C`l#BLqZz+GmoWkNKrk+F5->2&YCO~W1bNpQGWUj-U(5cO z>kbz4YXC@OJQ5 z)}7Lvc+;*|?--w~56f24n|detPjM#gC6;V_GP*|`Npr>{tqm48uA|?cF{*>)ue+-Y zT5JzorM=<2c8SDg0x7g9{m_u}9^saYkc{M>j0&{5inP zGb&v7tBzX6xXx!Re*)L$3)NQ-@to_*wE?%G#WxOJ3mf%Q?Croude)9L9-?f~o{Q}* zeX4t%`})v`I!1bw-`tZ)U&p#peH?RkM{&(L91VTc-lL!?V{=RBvuj6eD1O_PIe$h! z4?vqY0JD0`t&GdW3ms?TH{m~ZXT};E`%~bceaC(hT{lNqIe1j%l_3h?> zXZ;lOZ1Rb*81>M?c8m`g@5nf<(`*B-_J`)*<^JF@F^=G|ET0mu$(Xe-c>OPHHjGnd z?CJ__t?cz7&LeNjwpZwXf1Y)}!pJCVz_dl&vrrkVe>0GI=m*OK#)GVtcTK)E$Lg5G zhm=*9_E;Ggl5Sj6XAPCIYp;%lU7(6{szzEht_Q||W>{bxK% zy(bMzJ2x;6V|m7TjV&4DHg=Zv<&$}b_W04rgcF-GKK|Yt_`05Bm+Hb!oy8p91xLn- zq?f#3x;7r>Is<81J~xJ;t*9JweStpLSwo9_NO>)R^=nyQ^V8bM1;*8jxm-y<+I5ae z{x(*$1bRCfnVoe7%YcXHPIm!6oAcZ}#(iEBbT4gdaMKtYe+jtF+JZWaYZmveXi&tH z76IqSfQ{=5e!nMjs0z3;-keK)BJaEzM7Y+#H3qIPu%_)L{yv#&yYcKN%;|PuHI#9g zcWe%fF5vyHBY1}~wdMQj&Zo}$0pm>NxY9;ExA!{q0Zp&DKDYv|PeH#8=xZ3Tsp7o{ zG4@w@_nOe+k>Ge${&=PT5T1_wsq~vtvlKa`y%Af`{91g6*dN**yD|32a(%+s9p&`{ z=G(&8%CNujx4O+Zi?(BU+?bcLUtZT9(bme^0__rYUie(koA(!LxbwMw}HtT z(4KKHV>kNvo>gHS%v!4P%u88$FEm*N4`{Fa793g^YVAkpQJ=#cr?Il^Rho6T(&kz` zW1QfpJ&L%QIk=Y4%TDzDF7Il>b9eM1mj$02Z&}b7J8Y|he$9KY3twFWovL$Y4Jxqh-AwD|#ec>?{?4qSL<`4h}>67PL$O=4=mWM^PCsXp=y8aGc? zML*s6-f0XxH3ZqlSQ_))Sl&D#~EAu{rcNxoV$aB{+cI8!UZ}pn70`m*z#y$a_>In6Na^2XCa{TnQ3Rznz z@9Zb`yZofw({^wzrnD}d8{hv3`q5rc?y8eo0b}=a)NftFHT_lduGSoSW^G;m?#Osu zTm1rah>Z0e_Gx@w`^PxdU%C{rRQ36kJ;4n)ID|RAy79^}mu=U~eRJ-0?B&?Obmm%) z|0IqejEv7EM`LV7f5h4d>un+v;)}RWEYK)ij6c zI>s6FWsE@|MSgb=jI)_b;tJZu+6CHB*54+!U|v)E!2MfSG%f6dqZ^{524WZRe);<* z`i3-WJqC=e#Wh|yhp`;rgmHm;_ZDsr3~mL6#(v~aZ8PbuXG?g1XJ_`}8Zhk7T%S1^D1Y5>hR;5oeeUtIUx9M5~)W)SyvAwC1W-ON2N zqNiTq`=QW4?BYsWRb7!7Q(0d~=h}bLy0oF)8k$gVXmhAD^tY2EiVdi~DEmFBss4ib zOB4D5srwII7=yDO#d@j!yjR~w`_9~>c|Y?VuH8`1n{S%Ke3k9WboU-Vl4siXfHru} zx}!g|!M@`8UvW)8XBhN3h_TM)IqSPTH}^(hY8+=G&lwAUg?p{lGj`L8eq1m9C;Ghu z+$k5rW5P)u53)0oqb7C&F0_&K$E@9#_N?=8UqEv)>J;fj zpR2rQQQoP&uKiW6@e1C`w)=v$i?OXLuAr|G+$1I#yIkFEJj9rwcDQ`{9q-E?(B+t) zwLz}CQ16P1#Pp2enS0VV(dIS|kUdkfH?4Ben4R&`oSop`dB=zQi?X-6ks7MhpF zm3P|Hkz>L`dVQ-Q@&tM@&bixGg@0-+$oQslOy!F5!L=mf(Ac(d?bJL~@|<{#jE)aI zowq2swpW)Pg&rTySS~_l8W*x=@HF~$??=yTI~lBdb?;KeFL8*(Cr(* zz?gw`9qOGIxbJXi);P;MjTkpAFpu7MJjz_VZ`tLJv-nrorlA8ria590d`jMeidj312VQ~5WR&l{MxaRm2c z^UTp3=;K}56SNhy4Qg|p&&)+S&wN7Pu|cGr@S61FT;s!PcR1(6nM3GFyF>Wvb0pTO zY&C{v3_;nduj@ItsZ-T{(0?#qAUurQny+zRCu^IG3kVBqER0hsgC2*L)ZhBR)>UYm z>Hp^34eNggZn1KXmA+OF#t>N&J1cWjKS)=hCwasx-ftJZfVf{>DL(!U818rgXrL)h0WtS zlQWp}W$g-^=REFHADQ?5b_ZlcQ)pp8Vc+P#Oy)Ubv#&yPwdhBCcJK&tCydY94fhuE zY|_`k(MG&~@GxW<{r|)mNBTVD?8D#2P26+s9%$y@;9~&z+Lu1fao*k%`+;%n$h{Bq zzO|XtHQ>2Dbh19zdhosjz~y+};W-@pfk*2&9%sCVAwRCG0#5w)4*hP!_z$U%?%=n} zdA@lcc#P+7=lx~6RW7WqPEUL)C*;lG)0mgIO#Nx>;Na7}i-S}3zkEBIv1#L|U$U_R^~|TR->u?%1`wYZvA=n{m!YUTf1T7lTW4{o*aQgSDXgo@+xNd+-ireAQ^= z5`TXVob@x^tJJ++`hquODAsX!e#T7Zau(ko?8a}^#2SE;KIZqkx<80`iwU*-Bub% z@GfP9uvUh;9!j06|7@+e=R!1rt|DL5O+FX>8T@FYiX-K?IMO$9Pe$=!ZbX@JOQ)6o zns$wKzUDj5qx}zkdUk`g6T;2Bzx!>w@7SsQeLS$an|YP(!PsVwC$gX|yTp2__Pg$Z73JdLI@)&9`IQedmx&=wR&+TG?dl@+cx zk=J7vCbwyhS{u>zC#&;I5+hN+Cl@5#;v2=Dk>(R;6h^|P>?dm9sNV)9HYwnX1i%)OOhV)v_jqT2R zk{?TM%=KMw@b0no@l6=x`w=r#VVdm$pn^}kZ-3Q$@TU)n?;P?&q9?|PR^=27QWk13ElCq?7kMZD6Jt{va zd%xzL%HHVH_)O(B$ku?Ei`SPhCn?XwpEEY4AFcirN2%ksF4UZbHBp{5Auqi=5*p<9 z*ZbFmpx_O&r!d_xRvtP7>VnEl*8u0#6|XNG&Z6h)uz+-IhXf6 z+7cS%9iKD4tLR&PF^1?qh;K4B_hitP?$E5@lf~eEI(_~Q+SrQsg+HSIB8MvNC+)5p z8)bAMwH znz`!B8Yj@7y{T$tjKDoJg{?ZyHJti$Pxpr2!Q1uVB=Sr9_y@+2*nwx=)}e2G9d(`c zChOC0&Ru+mzC4G^`mVm<;SlceOxl*<@MrGz+*N&+R!)R>-U=+0J(KA75%78IIP70| zvH3a}>gEOXyDf!}Tk!A2bJVZOheT3g1q@PI;}2R_9vR zVa~$(D%Z7`k5n$a#JoS;9T*@tl+mfnU&KA?SJ$?*rQeQxx-LgqF^2xup|8_{Z(rok zS-|jl`q8$IzI7dpaa3zXS_2>Ji+?|onhBn@W~48FTfeTKqwI)}6Bz5;qz*w^O&x;p zoCGgq-KlgcJf+9PX{5h$j7As`5Q4Z&|T5 zFyUH!NyqsKG@rc?)e+*?+{4p6r~Oz(Ki@G%ZA5Dp_8ME@$aNORP>kid=52d$Us=P@ z1^DjB{jNE3kKJY5Gn=uSCw5)jEBtN@#dR;**4A+wL-`%={s1_NKm8%kO0%ZnHw_D4 z{Qbt{d+2L3;D0=0EAN#!kp5EB;2u3k0#j=nTrXoy!-w?S4B7c9@3XGq=H}oV`rH$G za4nE~C0ff+3mlx?9lX%?9^Dn6Uw)RptZ`J1{bB7wce>8pbt|sV(2v=OzNYL6J@+l*2z{|-ZiKhS z1OKCG>3>yrdSr(7VtqjPY*%a?#wwjFkBu)x?W3?CbRVrm| zWQFoo+L!LLp2v7)FZ#&(4&xKr2g(EE6uS=~uEm(NyGQZec&0v`^1&E}>&E06b)9n7 zI&{yR_PmJI#WB=Pv7Hmgn9BUM$$qgFn6EHVmKt*@+hAosPrF$gOk54-`=QO?L1-;; zj_eDTSch>Abi+l#Wsva5k;?Gpt$l^wt)sBe&s11?$MDS9MQz#!tF?MM= zzKr&|u4Fws7ir^k1}xm-6nKT0Q98ShaqPIx**6h@(~6$?;wKVz-JL zWxuwCerW9Fec&tY<^JuUBVza8yyaTz=& z2K^m$t-b9S6C2RZ*49%O8~=;{Xf40IF$!2M?N-Ph?dq<;^Ve0#rp5(t$Pd=|yHC|# z+`CVwmHvM##{KRd$W37SJnue`KC997p0m6!b8}6^RGxpWy0Eq9F*er(+z+osPQ}hE z^MP=QoR;pTVdrb?%72y$I!g0y}vCUjd5WWwu%j1r<%-{01V_qFU*8;9jp>ykbTz{a8z$bMGDkFUEk}=hS*=_r8)QKf#7j*KGl8tfABI(6*Su z*j*PX-rPU39oNhUPK16u=gT#bmkvS>GA84CJJFAOU@hjpo#FlLDeN9=XK;U8`h1l> zcVo_@8ero9yVi{7y6(t-+5qIyCdgxDgZ!XeF3W<*$k-?9L4E1yK;sy(-?ZD7BX{(b zm4|nMgT=fzc3SrRb&pQ{HTQ1N?-hpbcVTYyJD&fDXL@mM1hBlFc|^8{Hswv}?_T;h z&gnV-C&UeV^YFXIcw6>bNHu2FGcQ{xAY`$yoD zwaMm}cVtf5Q^o}vKtpqA+NZ9klXg7Y`5oxTSb$@Sj?B1}ed4?=eT)Mh!ggw{m2pGi z92#)!u~9<<%4ls<=OZk%ORoiX<(vdltl9S|F_ki}C-+vFcazt1Cb{x{9({NYd4Jwl z#dq^?p)2`ZKlIPMs3)}L-a^`^){lg*7jFTap^Kr6)&2LEFz>$uUu{(3*b}qkD%;JWLUZ-k%q1Df*PbF&xm?4`&LW4NA$?V9ir;ODkF z=wF(4>#=RoL(t;!^szd*t9>M1%KAC_XnM>4jKjD-T)I+kGTa(o5KocI;Zt)(K2i{OW8l%?+G+y}`{TUb5<~2^g6xnC3`ft}PWO!;)TX4-B zzx7Wupbz=o`lpM4vA*Bt&5Qacb64?6w&A)mx-*|ouZ=B>%y92L`AWO%j6sDy-H>_p z1pYZA_iv1$0l#(Oxewr}`x(pU+e0((^?crQK7F+2+9P~757>k`t%?SMfB7;#%2YrQ zza;!9j^#u3?xx^MU0bdxR<2lgB@UG@!O7BU_=VqR0WW1t_BC=nfN>&q;4#2T_{?n& zpTKaS=$ExE-|@WXXgo!89%UOM@}(TBjf{zWaUSODq}$M`@;mj>*1$@i`n&hSE9#iC zJkie5hfV#faYf~YvcDW(j1JJh`V0N52eQwlb+P7vvB@3*6XHT2SKn6ONS{{N>lb~}vWVwe z^D3;RH(_}#&#npmtx9i(ej)>1PoxjAoOv3@RE}ls ze)3hyEo~S1M7foH8he8?WBA?Vk3r0hPi+`=jDCl7qps1<)1GlH%z?Z=ev<39-Ir=V zp4kBTrM@~|)=CSpJ zrFMJrQi0`1j8*&m6!5F>DE`I0_DffuIfF4h$oPcW?({7Uj9{Mfo4M4Zxjvs}+|4={ z`NEoiZ5ZnX9vUZ_&wX^<+41JtucIKYWjL903kD#TCY3|we4%ghX z>q)Mg*Qn34AA*k?n45KH55XU&bI%U^zIP|&5TCrhR&^cvt_!@^V0?UfcEk_JE*`DL zYisqRF^yVGuhwBSP*aO()Y_lcyc_eN|A*FEX__fSaKk+<(`8vGv zV+Ux8-;Ck8KErsJK7@R60Wzq^9>}tFpcOtn|K!Q73SL-?zFbG6e=!caJ(Ks!3j?5y z=Dg3Cfbl;4H~kFl1>@hZ!DI5oi^vM&Ym0dA0YvULpo=)bs5?i9xK13YpH z{p*@s?fC@$vH8vOdJgf2EwP!w*%=*I=61XFShbB6+e#gyZgCFs zrFM(+&~A@^rah&O)rPk|L_7Xqm@K*^F*5Dm<<*7#{v9y7gYVWs$v4R*vqk>oK^G0#K3>WnQ2!>* z2uN$zKBSgeU&6SNc8q#CwxG4<>SpDXbxh{HwQIC%6Z;P>8Gp<=lB~bX8X|ox*I^o) z^t>ANxAu_ukmmGpjZy07>Wj>T_x6CVtwpm2)f$Hf=)*Odmog9Kl?qpO~g+asP`sSRXNhxo4f(rn{pfxqmM3FZ(stwzUTi*0)Wk zAMNz)_n@t2&AhcKFSbXP(TB0mxf>Po&OM`)b5)GjJt551JXD4M!u`fq+&9XY=pyb@ z270!R`Hm-mhjsSWWf&iI-%(?vo)_>Q_qtxfwQcSns6VBhpiiaUtV~RdM&GLaVBpSk z^0DjQCUWmg?$wX4Spx@5|HZo>1+J$uwg=#Y4zyB*8rxM(*M(p?H^-{ zby4n3w;fF%?6>f5qv6DbxMy=@(MaC$4P(IBGwO=RG?;G&1`^0>~ z81&no05@kgW!~Meo3>|c-2WcD;+a)PZU7E|*O%NoZykIf`n#2J*X8=8uGm4qWkL7< ze>@x+m0V2O$5Lh`)=w%T42%D6Tu?q$o<%lS`eKO*%7dxhmdCV# z!(ZCK$}{zOct>B-bvw#z&!eB$mUq(HxB?p9k+DDD@&Cl_ zfAe!(4^sAXrmsRStCNhQ*JlW2pFi6kVi5!j$R!^1Xu(DU1(K<%YDB*IA zt*ERuKJXrY>;EWUwE^`N<9DmmJf}o`X51$GiOu5~*rg`V6Te*h?|XieCX5*x&rzQ0 z_vou9=6^akavhL<`>#hAzPmc`81SI%bghj3dyVhTeJ6tlYnD9!ro6vJ_u9x!-giFt zn+MewGIy{TTphqW-Sd27#{Cy)^B!o^{VcBF?>WqQVHLc|ecFGZxK_iKg>2lN_e}#& z*4mgSI-GtU$y5 z&yyR$r^t`%puy$5uP49NqBW+qrjOdpe_!T%4?i34SkALUfa9I~J%f3+;9bWs{(js) zmU*tvJAdX{BmVA0+m_aWX6?J{pBA-6KXA{r{jiJp+@5iG_VWVZFna)g8t)j$m~R2* zi}*Z@;&!+RA0Stn7bA zt}DykLsnbMdSv}lWwP>Dd&YQI@+tC?Yq*S|>zl3*EG``Ztbl?0`MdtmINhpZEyn76 zzqVmykMLN)JEylS;NnIM8;r#$i)PWMww^jk8&ALVWyYaQiVtdTO8agC z_nME2uW6jwbwtJu?*g{kZ04N5q(ApyczP@7fI0qZE&78#^)1ik9r}~X8f`FZfiH$` zyYE%lTdAi~4{1}4;W^L0(T`MKn6sJ-?DZed;2HB)`i$nT{sdp^BbvXu4w&3PGmoX8 zs1G<1e6(VIUja*fJnOB-G{uhTjPBy^R>0%l?F;|zc={g7vvt?w-HfHWHDhJIq0?2- zN@#XfHb`iu>_fyB@tl_Ivl2f--6btm#_Up;5PL;i#q}u0?<(UU`d;Q5;!kL+7}t(I z(~nS}>5Cc1(}#%tQl=?=w5(T=j+R&BW6<;;T(_caW2|E-znO*UqUiMYSO%fP~Y>b0R#_hCbi4Oybc%Ge)+r(IvB z?d5rG+kxAE@b}5kyR{Yj0WW=q`ShVK{Fpf!Pu>Ok(eJ&O_vjaxcX@_B*5G~pS^^iI z(h>v#jXs^Rmi=sN+LW#4gvZWxa&Dqs$lb1XHcyi`@q!vzTvuY~^nJ?8=;-ezvi1ZGQJQGal%k z}OyvZ&}wMe>ELi_%Ktz&;5N0U;Q-tyN7mtRl#ek-v0O@|crh<^NL z;NckHWqrhA=3@TJ+B5z5^Z0u!KK0)>=DzJ4QImpfJB!~oVa(<~UB`G^d-wzVJOY08 z>8+{G+D3V`!(edF{nOyPvR{8T^WBJf=+nD?RDY@^eC634%Xo)=z4ohq{RUmY8#J{g zaQJjLXcjz~SG9iX!!hWocEFJLKMu@J2F~V{eqf%n*MX;*hdEZy;C)^@nRy%UJeKBO zW19eD{e91bT*UXuyk|N0UBtK-HGqHDEO=l4{ygZZ6}Wr>8vKB97+>3xv9@NcyV6%{ z=Bbb0iq9Q@*Iit{ka_Cck7pe1#(_WjUZ3|g;eBU9?{7h0U(i=y;IkgESj0G&Fz50* zlS(-fJ!{OaQrDL4GWBchvH#}dM;>TIP!B@%Nc~}B9Kyibnb->23HrRNvk8(1d7rVr$e2>Ipp6;dS6#0hyOTMp+f%EcjABSN za>%^1a_4L4U?P1P*YMnK{a09RI52ij}FwSVx8IlH>M!(%-QxnS&WKJ(R2 zeGVFupP%EtF9sDnD!g4!CSO_S-3VGU7p*UN6yv$QBQ`0#HlOE{mwpHw3K<4^U{_0Q~$-6Q0K)KRJZBJh=X#Sc5>3vVr+P0490Ga zF=%ILw+rLcgCrjd6 z%}=|g{W$v2Unl%FHR8#rh3HtUN z!L69{@1djh&`bOFU&$xRhkc>D*c!>ROa*0Sz7WRJytcFPJ#&TXef_ND0OL;y^Y~QS zzvfzu-^`*<{Uz%e2X!duI(a$u?PbWjvVU|Q@A-zgn|o6ynrpiSSY8Tl;s-57Hnf2T zTvxI^V|f%_=_Tu*yd=6l&&qB|}QC!oP8g=P;0(jETnaJ<%!J>cj4Di&yF<);U_C(1THhU3`T%XXemC@B9L$;kZGCBd5%1Ra zkd|EU8@pZGVJ>sB{_9NU;@R1*i!x57uJ#NP_j)qcZ?|egO8-w-r%oer19L~h z+nA;HYjTAfGFJUNdF^4I(gS}P|$^*JN^Qi~j0GI~V+GI5yb6JvPyf_wE!a<`Rn z7g+U|INqxC&A01=%i#s@#;%GVnb^u)a4sJkuM?(sRpZwH4}HV$=|3?$>qLxyrk328 ziM7Y-sAqw3_IENb`$V%Mc4GaAK4C9ttn3pu1t$ALd-uRM+Ph78uk|C^6za6Z_>7gP z+l-IA0&gbvVI7q|nE594TI!RRGHzpiE9xPS!RK$F>C~qym;cC^)phPY#-$pbegU5C zv@tN|J*iiJV+Z8fK;%02{F?a~@4E(CwYEcjxFvn`;k_HJ&pe^G(;44hyxW*xGh~K( z(zxHMfu*_ojIkNd=mXX#(l~(YmTLr8=FFxT%XN%&uIFPG3ui~z_ZH#Z+N~L zM_T6 zgeP~vp6riYV6M`Y@uywDnfhIu%KYMS%*iz+u0M7Cm-uo0X?LDGn!k78a}xJF!1&61 zq3vH@PZXItz2!>3M)|4V=~$JM$$P}^RzAuL>P7kCtM1@>FYfJD*oHMZi{XVnna8-~ ziQj{Z54lhKJ9$%UQQ}8f`(%vRJo=@;(E8@Tz~4vmeFNSh&CaR^eSn`iz{T2)&A^#^ zNVEs`<_PsOT}K;^vij(k_9i{F{@ z9CF(;YpnZIKAV4;O@Fn3nK9`Fz+xPKDuazZ9|mq*Gt#jmaN*h0n1g2$d<{HZJG~k7 z<5`zyaos%?j@*!b_M}hxsb;QOGnBPLYxDasaCbNGTZivEF}HQOe>rns%x~Y+Cf+yV zKj|z!U1V?KAJOHjlfgA`1#Z#L!Z$FL=B%X>ruuz9Fz!lO9DiF`ES!_Sciqo8XvFi0 zJS+YR;4b~;EWBZDm#Ze?`huKGQmyVVbzd(L9y^c>!6E>2zTx{pthO=VfVxH0hIo~L$S zDW{Xm(AKgBz`d2N8!^u6`bPD+^7=?k={cir>_=|aeYoT0!q`X$I*M){Q z=lY4@#Mr4i-h99Qm-SEXDfSk$X`cUSaB~TBH%=P)eFt+i$DvJcOmq+MVSZy8^l4nQ zJ8&P$Jw158_P(-xU0}2;@b1fd&HGyibvySppzr;_musHPhm4}%b{)YFICu{jHfCJL zP1Ola;lH`yLLG1%Fn*b)+}{vF++~;kjelpwin!=J_yx@5k>y0ketFs%Mhb2fyl& zw}F3cXyL4;*zdf5Ds&b78b78SUyFYh`6mrT$EaTtOH}8^7ZtbamU0c7zMJbL^-uIm zl!c!%4t1_LO-#m^fjO+;)LM0QP4Z6Bx5~HFDm~Vld;0TC6YM5nssCyYN&Wji&)*I| zs(-~@H88lBPuF2Af!^!zoH$e`xrc|c$9S%_0X1vTprfwf%RJ9KuD{=?unYAg>e7$v zgHNCzGxuD>`#hgzI^*_?4bQlLjyWF3Z^2(>jG$6?iM!OX$h+b%zJtEzy}U!b zsk7wA)%gqMoP7Asc!GGcmdu>tQ^0F7eY`fb&_|X2gZ{TV$(Y0S;9tG;20S5e>Pwsh z4%JP+s<%=<$+POG`p|kcG}LIV!mm(I)#JUMw{k5oo5VcL6Y4vtmt02{eIy_2GwM53 z`VAc!uX{pxCWQ2$525ey1w5^NDs5Z<9jk}bLE0|rq2JX<_He&^K5Jx=M>kfg-jN>E zHPrK)tt)+> zPM_1zA+veLGnabMzxla$nD61h?*Q;&eD_YC|D1k);BWPjb+~76eHY%LPBK^bbywca zI3Iw6B&V zn$GwM(th-hGD`iUJvIWEx|gQw5_haxX_GuQin;TfwS&g|g-A7=|>%*uhGy9bOnjk?DtiU1-X_^U1~hMtWQ&qlX#i@JRQ7RKWuzF>wq)Y#L1&? z)wTL_)*qzy;1uAXtTt{?uF=V!O!4uQ2d<;gS2CV%&LXup%7^T=XS_(bMxMK;Y+`cO z+_VLkHL+fBtZbhNE)Q&0=xp~Tkmrr@TBqL}`nMK&5pz2L{#Mo-e~)}OzB{Z5FoaH( z_1gf?!~~2HnXlJ&G*@aob9?aVS?j~-=jGtY5umR-P)GR=}&*|bKoO?T*rME0Z;4A|J(j&p^>uQ)!qt? zNFQaoDAR(rRp=r0W#RVggYrw@Ain*m~e%l2(BtPlfDZ6^`-tXz}BJLdr zo?n8$KBm7XOmit^6 zE#C;k*f+v3G1cfy;|kVj8?TPu3_rNWPP(59O(mw_+4km~)PrC1E^8pwht^+fyXvdG z0u7t*i*2etbDgQWOMlAvmo+NCflvR1oXq*6#vyvcAA{&qTh#R*`abHBi}^gRJFy33 zk+#b3xo30eZ#=(EgvJAV?T^*jj>12%Pkzrj+Q>FxFAXb;m21Y8%wuFtu(_t6Dri-C zmAI36re2IKYkie9?(HVLq)TJU$x)vRev}{D3!W+MTE%zT74b;(9oi06@aGbqbKR~q zI|cbWji!zt1K-aDpQnPG8-b&=x^QFQ%k{wPEB>xWU;1;x%Y7ez4W6vAKArnEg?_%J z|8B^)4Vh>58yZUghk^HRcxH8Q4NWJfpIC&xm^R(?maF#10%K!ivDMWd`eC7OYdVz~ z<(f5RMRbThns_MJuNhB^><}k!(Vsq>u?=}4d{C)7%*AR;$`^YBbNxAaL%y(1O&wxh zb|5empZasI0aJGvM@)=EUNNS)AN`bLaON4T%M8z~!Mv1B;$D8SrtITE@JAK424fur z&aA<-=EEF=dSos5Kzs2JWR3Nhr-DcQ1kc=@1OD|5_HJ14lzK$F(7G>e!#$u8d2B=8 zYrHS|<$GXb?C%}mq(5lBD*$`9_}Eu^x0Z4E@0vdhy-(MC5zfKP~e^_&`}>JVIM4bZ`7RIW%Ru^sc-~zEnC@ zUaRZoZdK&Fq``~&7V|FCp7oFVF4CF)W{vFuew4e)Txmkz&^_x9gXcXzKsh;;ufn%J zpTd?$YQ0CBN8^>XAdi|_C0OkjSYF8Y8D0aAuA$k3?+4JP(VFo0`+VL+qx)ahJ@9i) z%>l0}V9w_=w99EdxcC&GZTNhN&&z1%(5|F47R*4kLloU}exI#Z6_K!4_~t#^>e zc151(|6axzrve9cnRVvMx73*%uU)t+yvwJ)vFoz*kB!-O27l7;Lf?T6(Tnk0E32QJ zz4}Hm4&`6l;qX=C!j7)XSW^pU?ZmSi18c_WKB&sbYk<=(eD^HvHe--WYr=EYMgGlP zTW8+Wm1a!kW8T%0XO)#T`?}OC{OK0_HnR~l&wS-4Wrw+e!SwxD&w{_&0F!x5k#BtJ zYbW+{=T1dz&3tYz#$b-F6AbZp;Ozbwp22w)FwpPT?sP>j3L8PWQl8&sj^SjJLM<`_8}sINicH2Y`>V zOexFuvP^L-%JtZfv1ek-Xg5Z-Yo}|gB;Kgra?J9-evLXzn^C?F&&Hl8>oW6rnN#Y# zT+^kEAg@?cixdXt(S=@gj z-zSe)Jse{51s~DP;>CIyVNr&Iadu^CU*;X3MR^$<8rus@goAln*9uH(S;#(plGFeM zK8fKe&$O-ePcG+Kucp6)EpBw4t2w=4*{oe}>YZC>wo(cCj_gZ)4{xsSQ=WyRM(jV~Fw!UvTF)QFK zyser0k?-0O>SApk;i`Wfni6h-RboNXj&!5E7bby+a$TFpJ))hX`$~o;oS(AMn6j~A z=V6^+Xrc@BVva{1mrvabeGhoHJht#a;sEMXb*XrFoZ9Z{MDbhRYfzo09@}7K5oeVr z-IK_3O7-z#Zwa?=1~P_W1+2o0@ukZ;K6F@)Ma0IE7KL9~pUaQNr$#YW>j;yNkAD{! zM^EcF%b&)T%5mn@c59Pa8?P;9&7gWWYqyj^uWwZ7SkIH{I2N0k-=Z(ojp{jTl3f!x z7da<>tP$x9Ow1+z2>gZ3Ex`0`K84YSyib`WoUGrzj(K=4lzY3piY%VSZ<~QTp{xo|Cf1g9I@YkcCZ{FiR5v!G1y70l@5sA@AL&_K z*uSt(|KWRWA8BJ2d?PI9)kp6jkFRHpSM!_uQ&`t0tb{$v2Na)2f5$y|r8jGVm2=usuJd)B zsrHdJ(HNeIE;t5QyJlQCN=w#z?8&?KqDe!>0MrMY@$6WB6St8~fw}M~%K+)gb5GO- zfsJqhmH!bB)W;8<2^(o4x>0%ytr^#~{@k3Zw4v{#-=n;9&RIvHzY`r<-ZR2{s&=Y) zH}#$4AVT-1^Je+NKk#!Zw*Wg4%nuPoEL^buG@4uvkI z3u)82N8W@F^b6cmEcLO@J8R+8f#x5T_1XsFTif0IqA`R8+-r@jGXFIGc5ce})Wog@ zp64)s^FPLmUWSLAr*rHMOst=O4qSJEZaS=otY-~_HKt0M6*t{S08_@9+=gQ=<0!mqt*>-yj9Q*`9?n5M z`~qWL4lLwb{Wa&3T5<7oDc7BYW7n@ax*;|>V^_{QheNnuKAg{dS2gakoh5JSs|Kcj z2M<~IpYf=-)K^c?w=|@WC`{Es#vb+Cj5RtQeK7ToLBVWql?|yN~uMZQTu^7urFzztGl%&UdC=Kzo4p39WZSuG3zot)OkbA$dL8QM9$8 z|D9-aXz$aSH)4FWNwn#-Khf5PHcq5nPJ4n@7hDdfolL6@9~?)!iS{+ES5tU^W^D0q zw0hukC)%O3YiK{vrs5;tPqQX<2zb7L_9CqzGVpww`#CJ4)!VFy>#X2&D`;Ul?IGGr z$eJCuU`({w)ms8iL}|Y&uKff!LauRU~38&5lz_5!W(R_F%Wd|KlU_`b9gXmeByBluzio-((JrFBMQhp_Jkw64 zJxg1s3SXMGFYQFy9klmoRmkpN(WcNmJInRFooScT7SK9&g{Nq5(OPeheL}mM_D9+` zv|-)&jrM1nd8L2Tw%LK06YYK4=H208+9cX+TJ0X>T4-<3TJ(fAXy?%yTUX)|aa(t7L!oM&HG?a)1IUC>BHC57w`na0fG?WorER-2{6>3-wuH9fKz^egK$}H-jkd`kY-ieZ z+AXv%Y3&BXm$VCMi)d>P!3LzQHxxdjT||4C)?gQCfc9J3TeKsF!GE;pcjeyU#JXs2 z()x@*rqN!Z)gOsmrH!ZENBfF4b~oe&?Vq&!c1Ne}0X@(jq%|9bk4vjH8oQQuBW*FQ z!Jfp!X!B`nkHO}lT}8W(_C9UoUf9XBwZ>w<&@Q6AOCqTE{>ewBOJkrY)g0pMad8O`yF->ok$^(N3h@PWzhH=~#H3_6OSgw4*06 zcG`N!{eKkQWtde}7XaWhb7zL`5|EOT?oJT_DFG3sLl8xg25CXMyF;W)x>G=q?(UH8 zPWj&N$NMn%&bjC8z4lsbpJDFI_?Ypmp-nqIooMa#2fA{ESRKTU1-v6mN4od8GGsR+@e@-^I{wy{iaW|n~HtZ3VX=fS5IdL+4{+C{^l|9`^!fLvyGQj z9S{VA*h%t%?&TTBRvwdUkaMt=cN83K&*Bn^hNyY|B-c>=gMqB(U-AsIer)9-KMj|U z#2Mk7{KG9i9_gNs&RizvC_RfM?B*3;j@ANCWM%OwB9+!)LjGR!o0`m&I)S@MZ793abV=VbwZ6FEm-(3=?qbMH zI-;*IZzgb`S}P5YtgG}!=CGgKt6hs(T&46HYfac%xyoLiux_2Tq40X&>t{8g4eEyR zTqM~>Yr;Ro-y{Z%;wRfmXiv8{X zV~M>}Uej=waS-<(W8ygrcDtA2G5Pm6j+A@V5^D+Vb8krteq#!Ic}Kea?#-CS9)39> zSGdoZgYH+!e@K3i^00HTn*Zo>#QsapqxJ!&a+Q3?xAQ(%!eoS z7LF5kN{{D9t`KqBx-pnCXRHl>5_MLbh5JqsV3R;wojYs7-d0?yCG^49_WYO@6V0t7Q4t8t@OQ3Zy%R%H{pURutl=Sf-|M9uAy*J)n+Xe!k~=Ic_?8}w=5KBgH#{t;Ngwu- zITRLDV;}V+!h&}6Wjo z{UXLcNS!z=_?rH#Bbsmgm*saJ(krQXe-IX|;4vR34-3Y!g+wXDfxcX&c*?M#9(_3X zVOWqgmHBg)`F=sT(xJm75 z9&?4{)x&~HOeao_Fn`llyvg>ZIPjjYYK8?X+4GgPB5^G>!fIYp{cFc^g~Z>u9xWJ6 zqT1Gul6As@X`Cl--LRl5%ehaHdSO8$Zj!gY@w1Q}yd-&pu;3eJlc1qc^wZX|#G9<9yWNET4{5t1KX5oSf$&$;O8TwOGNG2|hQ`e0WZe zNnyeD$>KCcY?#Xy5>M5WrpX%~@yT?14A-gpyX&xq^CX<1hWLdkB={pN$ie4)#}F3I zv=_{B9;UO9wd^FAEw^br$C|U0e@Q&oI&+!A^VBil(Ti2w=Fj=oofqU=AU~POmW9T! z$b9%`hLCWP}K`E**l=-~p z*A?=TS5#W5mZ`T&Z(pOoF_E*BTB|oRiCYw2XFVCnU!++d7F3`fi#bo^2IJ*9$u>DZ zD|kTUX1T%$Hu8`(Tl5twvxbsett~(Co+N+CH<~ktC)C?!Em^~325k=u+U(Ge==Han zQT~X1jBZS19Y;xW)S6L& z_B`d2V_`vSx-yy*JRWZ~vA@Q&3E3{`e2YEt_ zYx0BBu?@RU+- z?KQk5|2uJG7+0zApLkQ`y*gzcr%4cm`|+ai;5#-GEi639#Q+|VJ3KsS#aJ#8BNQHV zU=D967!e+{sQgEpKeW|Hur3DY@GSkmyI1kD)EW0EEd z4|=el>>q>&U$cV`e8aCG&H0m)q)s7D+#qjC$FhT~eEMN{(1p1KsltO&^k5kYQj0OI znaT?ar4dtZQy^`4@GI-NO|*33L1jj=miy%WDBSNQ3lDx~0+-2=-rSkW5kAV`njGhY zjNyJ}Cp;L)UZQ0R52`bULp&rw=J4P%Ix?5&AImk`v6duRtO>(-Op&bS!!3GxbLo9@ zWp@k%Sj085<_HhwbDA_c!-HzHXFS_^OX*zU!5SiRhX+j=&2sLOF;93Kg{MovgQ{PrgDj(fO)cv_yxtBjl3p9q41y{H_2RBUbBdYq$?60{J;pVle(yR zF`TC)FBTruU>JM(k37ZIB}<7>LhRVWbIO(UIj)kblrb`cr(`T09@Jt7k)MbwWB7~Y zW#l2>F^Vm`A>XIr!7tn)Us?IYV9pc!GwaAy4w9l=xbIClo;4&Y@0@gIE=MR>Av|cy z7*3P>b8+P`1uOa-v)RslKCEPZv|tuT$y!;hv7BgC#FnW%rAk#f!YnTG@fYF2P|{ZO z8V=C0y7TjtoHgVDgIUHYUXcDvvEp~$QnIG=u!ra5{Yveyk4ClB2Fv)Dh_B6wRYZLw zR~g7og4$xnRJM|`jy&TV#`4$yAJ+{J>hK%$c+3~|^iX2d*Bh8diU!t$wY;TqL-oK8 zu9CNr_23uQbBQF4)i|x$#|KUHCgyOB1mB7^vpB|E$~83(4v?^!crlu_RQt}j*vey) zG#4wTu!PLt%R!d&kS~4^3wDvdg>%!2qvZKfUtt`pI8Cab)G(uXOu3e>&3-=oIXtMz zc-Hfbe66etNBQsnAGh{7juL94=h2!uoF-3O^~W8Gw$u9=&PtB*l5FkubABdT2Qi>7 zV>rS~%5@Y6R&ts`o%CgPll&KtX~1CCbCM4`%LA%+Q7@e1HF3L!2SeCT{BGevS=ut3 zxttTde679$X=JZ)?C&8vGU>OeU<4 zT;gv=^tJc$i1z)&ibDOZ5s3zb2c>Dm36cyH3+C{U_=CcO{4{4CH;6S@Y}mp((hLa? zCb5??L*)$-!;Fdf+@|XA@F0AIy_jj7AlXQJA+xwnp;2m-HC!h&T7C01V>n0LG1iIQ zq#tWNxJ>qO`Xmo2IbIDgmGBArHGMfvwu$yB_7QiI{g)Pu;S5P8hX6qSq5l z4G%KWn33F}$~5;VyylDPa+QeR!-Mbni_|mJH@`5ED-`&{Uce6S^TAAOMi=IDi4SMV zai+47$k}=%`^h~gJm|$H-co+9T4g7(=jp*TWE>yNms9lPPcD;UfqjFy>?Q6(ImHpe z7wOfEU^j^un=f;D$ftiAE3FyGBCgSRiTH7t7t~m4e57BdPxFGd%gv2cE945tiM`VL zQir*`rQfRX;4CRtt7m>?412gup*8B51^mqeVyq1hzGWM?39U0nnzM#SbX%`KvxQqE z-(Vl27DG8g>Wy-ro}4G^CcT9P{LO8OY<9224q|PwPq2^VTiv^Ikn8mP%WHT>zHMSc z8;)|`AZX4@Q5;hi#b~;vNJsB%~f*j3J(Ucg6RKG^=nhhM~EpblD zeY)}SDPM2Uh)Lu+EnivAO+GwhZ>21=xk!eyVn!PVFrEEGo|DIX!+2_)*Jrp*{R?8t zT<#J3qMV^2ZCS}%3S6?!F`jL_AoXSUYAj$CM~HUCnApy7vRt*lv5|z=?8Vff9s3CV zYYa?eAHj9~jT$s#4Ikamf7r%xzP+ip^NzH)e7!+?rn8su+xjKXseH#=xj?eJa*O^f zVgu3cg$F;8{=RWAf#-bnz_CnbBL_(F(0v;pKQcbrGn3=IqtatzV>gjc>?wRl7Z$Lc zsHgTK1~Q)eeEm$mu!CC9)g1@8$A4sg;U0?itR(GAA2XNpWPByJ`HscJdhHl$(TCMM zB+nc7O>|}#pS(2&4io;)Yk5!Y{~SZL_x3@olApZ|1$9`-9`2JkEEH7dIH|%zL0-P# z4_=Tp6bdTPhQG)W5elaBmL8Fz-~drkp`a`^8NqFmL<UgJ`5j@##Bco0M&8jYb|_d%@;ITO4-s)g!4{q|AzmoR96uB^=NSbOgn}R0$#)4| zk2HxwK{*C7pFMn(I23%(at@IoNyy)83;7w4P_T<9WK9|h26CPx$wI-WbYKeC$@f7h zn8-QGBoF!iV<@;w+7x2MB%bhj%8=iuWPDWnFci$-F||^Kg2QA?9SSNEnI`0WkD;JF zQ&~&)w4tCYV>w6KbfKUi9r%MJABBQ%nZhwb=|jN)F7ri(P%wx0q|X=%eqk8bsGZ4r zQ8sfZ*iYJzL%|yEk~d2zn9Vg(Weo-6SV@X(p`bgfh?6}Oq^2Q#I85stq2Lh(bIJ!c zagkKHLP0a;a*?>XLqQWZkR(qi$U_}=Qy{O;F_8rM#DZ%S&F>s6=LoS2g#3+eF)J7f za#N1Btf5UIxyO3q6qZ}0EF#{FW+P|FP&5>jX9R0`OS)p#nO>~rHF=5~6N~9lA{3nD zHd#xG2je);O>&l!Gfd+F*-M9lx^!nFZ;0`U8lWWysZ}NvbmKZN8UCqxm6cz7#}GoF zg@VG&<|y&Yc^$pE`u~s1hl16-Ct(H05&B$A7|TDzs2B=LFoJI?g@Wzmsq7rgAaRvY zke_Ds<0dVuhJs38go1h8q-8a8khk`F@!BN6$g#3(c$on?Mmp6R*r7>`x+%@GS zlUUDPVt*C#H+4e6-<+d%Eo;xe4Eq)HuY!~~vDuWl&l z$u<(zvj)uN7NPo~pg&J3)_4h5aqO?Z<~P@1u<ZM>Dm_F^YcYdD1lx1&!#*Ix>B)_ppZ4KZJsKEyS1!OyV6qe+&hmwN#(2oQssL ztw|eWY-_FCyFUFo7;i_hq*fiMH^+6CS3ShIr{{kS1*eJAOWZlh zDcbh7W;FiII`z?8cuQDcJ)KzW;{XNw=}$~2et&ae4H*Zx9(_4Mp@CvXqd}qI0__Kf zf_p3*;&nsi6San!+i*RFbR*>MNaGtNhNJZoDvh!JEE=m;$En%z`aMf2IYI7mo4yl6 zL9|Jspeg_I=UF>?a_)}kC3$2!f zf_5Bcz*6lk2dY(JkCW>3lrhltw4T7UGuG^^{fho1IwyB&LEQ8DK7Ug0 zg7`A$qF!*x`f-m&myLl~SHzoMSLHC%u8G;d`T+m1hjQ1&f$fyKVeME&$(!cO96r5e zo%!Ilb>_1>dH`AP8ao@wc~9Iab6?$%_ko%s`9ou3>mz&GV?E`GzE1q7pYnHog+`?wLoeDZ`x z1e1s#ituwo5kYuFL=Z^~Vl#wvkrCc+77^T|R#Zd~H(G?>FBjnrsS&;p<8=&(5fL1s zYs`qC2Tv#wD}4MZIm8i;agsBf-ChIFJSBboS^EMy}mxyeI5@>76< z6s8D8DMoQhQi@L~%V(6M0+pyjRlcAa)%lW|d_^t3p$>JaPXij#h{iObDa~lk5Bx|= zTG5&|w4(!^_=PTXrx$(b&p?JUoRN%TG-DXY1ST?xDNJP=)0x2^%wjfkna@HN@h3}I z$}*O-l2xo`4QpA)dN#0$Eo|j4wy}eq>}C)9*v|nDahRhV;{+!;#Tm|Wj`LjP5|_Ec zHLi1mo800yceuxW9`J;xJmUp#cuSB^UJ^kh(TGkAViT8m#3um>NlX%w@c}7FNh;Ei zj`UQ3Jd`5XH@Hv&JLRG3!gPMFrExzU(>QayTG@ucU zX~MTOqdDL613%J|pJ_!K+S8Fvbfybk=|*>Y(2L&mp&tVn$Y6#tjNy!6B%>J11ST_$ z8O&lX3s}rjma&pGY+wu9*~MNCa+u?sWnXYuFH+|{PKn63MQH*6GQ<%;l%w|3dSl%+fssX{es@D*QEo4VAeA&qIucl^Ll z{7f6#(UD*1N_T$cH~KMvK@4R$qZq>^rtt@}n8Q34u$ZMRXEp2C$X{${C%f6lA&zo_ z)12cXm$}9bZgY=^JmwiMdCfb5LUNr*q7jq0#3vz%Nk$4%k(Q6hKqj(~ot)$$KZPhp zNlH_e3RL0?YEYA}sY64W(3J1^o|d$t4ejYn4}PORgBihS#xa3OOko-`n8N}VvxH@= zWDV=t$Y!>(gPrVV9|t(ZQBH7%3tZv~*SNuL?(vYvJmVE_cu#m?xlI%?h(iLBkem-m zO9nENg>2*`7kSA?ehN^C!W5wxB`8H1KIJpYQ<2J4r5ZJMH+|^G00uFbp$umvqZ!LMCNPP~Ol2CsGlM^v$!z8_pM@;q zPnNQrm8@nh>)FU=wz7>K?BpNzu#W>A!;qn%dN(5lv{y_q5@ACQ8Sd`N22kdBYYKxVR#jqKzg zC%MQ&Uh-3j!W5-AB`C=!e9C83pb}N7Mh$B6HFc;@Lz>Wx=Cq(S?PyO&I?DfN921zt6s9qQKbXlZ<}jD}EMyUXvXo^kX9X)+&05y8kV|S9 ztrJIRTT1^at&h`@F}&xaPt*^!%2)%ke(H1FC0AMNNs-U=dDc+8obyqxyn8%;t{}HR zmm9>bD0f-RQ<_v#>%3-6W%pcF

    KU_ z(Lg-8&Q}ff>_)yeZYJIKwBdN@ft*>`9`qFpa zu283&wWCINHBI>*_8H>z)Vo+pwqM#>Xad z_wz5A`#V3KI7Ws6;!Kx;=1HDG#z*PFdKW7wI7DtTo#&JpDi3Hr%yVQKt`>Ml$q^C3 zuVfl&JbXAxAK?YvN2~2I)`&D?#gS)}8)vT=ZyfwIL0i_|mENV-^^GKP~B{?k1ksh3zQ+AXyY(`uQ$fQNKm zZXD!V;a-uFE9E{zSERu%Ggb#s}TkF!Yf59QH3sj_A`QJ?h*X z;ut-TIp(;S5ISKz#677u)0;l@XApxK$}mPSnz4*$B9oZR6s9trKbXlJ=CP1JS;lf! zu##1*W-aU4#Add#jqUu+E_Snr{T$*5$2h?$&Tx+NT;wuWxyB7{a+|w6;4x2l$}?W@ ziZ{IDJz=NBhX|q(li0)~0f|ULGLn;$RHPvtACZAfWF`yQ$WAVDlZSldrx1lHN->I4 zlG2prb1G4VFQ`ThzTz9|P>%*Qq6y#9jPLlKA85gk{7h@w(w+|dLKnKzliu{9FZ~(F zAcioE5sYFilbFmDrZSD+`GZ-^VIB)u%%3b_Da%>OD%P-$^=x1ho7uuv{$e|Svy)xy zWgq)Fz(Edkj1!#X6lXZcMJ{udf4RXe?r@j;Jm4Wuc*=8L@|w5&M{ru65F(N&q7j2w z#33&6h))6%l89t{Kyp%$k`GBuT0SBpnfaKkWG5%N$U|NVQJ5kWr5GhBNohWzEaj*` zMJiF5Dttk8YEYA}s6}n+(SRm2qd6^TNh{jWo{n^)GhOILcY4s1Ui?NM`Z0h(3}y(! z8O>P6Gl5A=VH&?PgPF``F7sK;GFGyNb!=cGTiD8W{$?ltu!nsd;2?)M!f{SS|UJKX0Xk9fi}Uhs-HyyHE=8DGy6B9bVg5rde-Aub6>OcIikj1Ne`hos>n z(vyiSwYid)6y40fqjro@E_<^5jMO!-X3tj0!FZ$4* zK@4RCqZ!LMCNPP~Oko)F6YHnWAl*v1Za zv70^Y;{b;_!cmTMlGB{!0++eUHLi1mo800yceuv`9`Tr`Jm&>3dCeQ%@t*Lr)}9EW zh)yhG6PNfTATh~EK`K&{mUMhX1~QU~%w!=eImks`3Q&+j6rm`^C_!n;@EPT(z~@w= zGF7QY4Qf)0Z>URs8qko&G~rvC@*T}-!B4cL6>Vux2RhQ3E_9_E-RVhh`qH0)3}z_9 z8OdnIGLgwlVH&^l2Q!(&d=|2ZKUv0dR)v z%w!`M`6xs&O7RJ0DMxuK@HrK!OclPMI$u$nI@F~;4QR}_e8>0v$WOGS6>VrodpgpY zZuH<+deeu#^kV>n7{XA7Gm_DaWgO#~z+|Q{mFdi2CbO8sT;{Wwr7UMPYgo%V*0YgK zY-S5v+0G7jvWtJ%%^vo$p937?2uC@_2~Ki~Go0l-7r4k}u5gVT+~yt+dBkI$@|+jE z#VAe*N>heU`HXUurveqJLRG3!oto65Hg%{+eHzl3Z)wK&{6GtS zq9s4mnl`khJss)9FLa?hz39sThA^CwjAjhun8+liFr69v!7S!5mw7B;5sO*MGM2NF zRjg(W>sZeQHnD|m>|iIm*~fkkag>vsM?B^U&v?#DUh#%^ zyeI5}{f7vmh(>f`5{tMbBne6RfaIhk6{$%>TGH_m>B&T9vXG4&=^AO}?fM^=V8~n$v=ow5AR1=s-t?Gm5cHU^3H~!7S#ofW<6fIjdO9 z1~&5-JJ`h@_H%$k9OekIFPcC3_>_h;qA^YQmhqh83}-pV1upW0XT0P!aW9D(`6)ml zic*47l;#u4@F`^}M|mnxkxEpdDs`wwLmJVTCiGw?v)IFa4seje9N{R(ImszbbB1^P z$9uvq>qkToNfgnDP7Goao4CX$8#(x#N>rvQUr>$ee92dQO>OGZfJQW-4~sd;Y0h$< z7rY|I71ty#2}ndX%F>cnw4ogx7{DL~vzR|w!ctbSlGUtZ0~^`IW)5+LqnzXvr#Z_x zE^v`cT;?hfSH+4bq7#!?#33H>Nk}0IQ-q=vqc|lfNh#{nkVbT&E8UpDL?$trDNJQL zzcYiG%wi66Im}Uxah#K!;xuPC%Q?<-f%k-6v;KsLBpT5vP6C__1~#&Z&1~T>wsDI)+~qzGdCXH@@S1l7|5_iS z5tBH?ClQIsNG38YP6#R9qGg`bfFvF=|N9^r5C;FOFss%kxe||DbIM$ zE8g;+@atkubYc;g1SBR2H5kS&^4^e3H|?FbV3ebSTEaM8fU+YthWH+}- z@kWnl1lxGV$8X(FvV`z=#zsw+aGFH_$vxUKpF1RfZ{4U$Jtpy45E;zoI+epBgCyaR z!4C{&XH;ZxH(F${EoNk}K31f^FBloDiW?cUj~5x-iys+uO%NHJN*Ea&P81mwN*oy! zOd1)CN#^6^k-;+JeHa-u<_M)zMFt7dL8+-eVi-eTk7lWPa!6Kl&Aj^!|s);3?6IM*9A0WYDfeWUz}bN<{_@ z`H5fX!vxlFlz(|m{L+y@S_)HvX0)OUefgb(oZ}I3KZy*I@)4g?hbFY7GXq${dj94h zr?^e1j5v^#v}C0ypYj=B(ts9pX8@C!!W_2qnv|cq9vvCORA#e`O&s7d4+$?D8N?~>h7{eLCNJcT5F^pv#6PU;(CNqVpOk+B~GlM^v$t-3whq=sS z0Sj5gVwSL!m8@blYgx}mHnWATY-2k+*vUWaW)J(=&moTTnnX1tgB(=gTY4~o6&&Cu z5Bcz`$RH1O*uaOiM*7-f$-k7VV}3-{jSO<}4ZRr45@Obi42tn3 z$?8W2nW;fXCi53Jh|@qn<7>JxgI(MsVMD!vHZ0^i=^8}_^%%z?Vm4MQ^kh9x$<@Sl zX-sQIf2$Uo>X+OnRWtQZKJrtZI<({nH+ad%-TVnkrU)jc4GPSg> zl%Nt{(vWfd%`Q%Hi`Tp*&d-rSYI0GGvUFrHi+D@6R`P&`a}VLHqCn-AKmdp47xoqoU?*0PriJfc>6^Xy>ln8rbZj^cYk~H0QVD&8Yq7T>Cto>Y%itv5P8G8 zq3URuxRH6dF_CbDxsZt>ROUA}@Puq50=?PDb8=4*M`m$>>%1h^M72qNDzc0tJSXKOdmGId z#1fA2iqw8I$!{LC2Eae>fO{e>#DWjq_XOw=@Sq8c5T#1^g*W4c_T zCY|ZROm^~un7_+ua?^w^%wr43dBtnu%ut`?BR}P-LrZ>UJnOl`eB~6gvX)FU?E^&2G8a;ilQMitEqusrzEv#%6D|6ALBSq zlDY0D7|U^z%=4JB94E6eJZ2)NNxs-)CUTnOe|pSB zPLq6z$4ul5DVB;S9T>@cPLgJsYcid=JR|KPIw( zC9Gr{CpgJ%-VuMbHKQ!8XhSbXGJ`Gr#c^)&j`t*5qn;^7b!yOzUl`12#;}P?Bv|V@ z6rv&n*-eaf=D|RA6Jx!{RAdk)4YeHze)K8$DCHrMAA z@wcl@`m>KXJM>gWa+D;0%RMG?mQ*{p~tl=OpNPWzn!q3d*Adg6V zTwkIN16jgR9+3Qm7*doC0edF`EOtC*eswiNbtAb(+wQJ}e~cl)U5!*NHkU zXUIo;eq#@GLADuNGYSD}ZY~(GK&e?bQhsNjaZ=}9pT$H(}Zh6R8mwes8 zM*ik7=efd7Zu5rNm*p4@X-hk%u!Xb4zGB_T%V(6M0$mx(be6H4zd6Mn?vmuH||+5WZXa*gQMR!(l6}OuVeA|s z`b}{o!7Y7{+kAUlE^?Gxyx=vl?zj&n2fwk1g9LZgAmi}E{y_|qP@Kk$U@P}Ycwf(? zAfHo@R!m_AYuL|KUJ>ts+@cuOX-;=Wvw*FfiJ2^90|)qzTrVBVNVf5W46o!k{aC|IlD}3TbmLDh690|5pgprWLA1BV zzzOn zI7^l&*QOPNqeTU;Xcyi2i4!9#C`|>bQJtoAVh~Sw$}{rEj0(E2j+YdQ6%}-36{|VK zVXpCln6aaR_!QzxnlqW5Jm(GB{890;)S^36*}@T$#f=J5(~6Po;S|;UG3J^KVj(Yi z!+)fS9~ES!IIZZ(IM%U|E&RhCq9rg!vhf8oImsJh_=C-#(~Rc)z)!TIE$!&XL>951 zMdgh z+)1N?-#9^*WKlskx-){AtR~F|a)wV*LMbsW>!$?$aML#vOXf`6HvUhFc+0TN}5@_W&J zp7@!ff&^rs5EbdkN^X%lb5xLtEYx5L zL!96=k111J|KfYPGK{(G<_U31L9rSd3rLL3xrqqJoT8wcJ30rhB~DR!x+vVtl}RIa+6!UCEl0D zLOzP}BSY9gyqZzLpB&^W{s>2qmZEfH5KA~q-CBA9C%M9FN_;JDv||uw$oY-l!!F|2 z_8Jzlg7|gBmg05Q4o`_$&)&l_cCweFoZuW6dBunIM!;w!$PHb2pmQA}nJceqcEM&`~Z)TBA*sNUE$ zDb~ao$oQ@GBwkbb#4BPnQ%9_14Tm_xHSSXEJM&=$kD1imF=YDQwJG(37*ME%y@qit zVk3!u)K6(hUl#I;@;^ldW4TK1me!0tB>P!!Vm2{b>GKq!0Xz z7I2J&ZS-hLP?I0&%_Nqyhs(SqUR(2_1U31Q-b`dEyST`6;_6i1ZfWw?7RY%8ifXGhjoO+Dn6rum|^cP@OR^0=zzsadH z14ws@2q+Ds9!ws3`X?aha!+@ZoR z_JP(cC*7~+O>Oq^8#zkkH_u@!*T~n! zdBOy)QlYE!l1qHrO>T3Tg5C8Jx-f+`+@V?zxy*ES@mNpK<2*%sxfTmZ{=4gX%G?;iN>YxN=S<)r*~f@Gm#8+@ z`j}1_CvJSmpX?+1c=6#gdN7~(3GV+G%nDLWl>0PcEL*tG6O-%_KQo?fJS692xx-j4 z@WvD$bC{T^zOUqGRuY{ir#MKq>0ZY`_K5u@)~xK^KWzF z8~)}VRsL}eHj!zzdnHD(opN)moyN@J8hPf*Eyi)22b7&>TzayQ$b30MEyi({ga!H% zLrA?)9WjSTR9oZ>rYoCxVzIB$gQ@H$ZizFLz2sS{|IwW3?4#1Z`uH+?z1%o#BL50s zrw)x7$7Y^cspoQ*$SSqPcw$z|E1EHueWYC@u5@D!`PQZm-*a-E`wq&lcOH;ygL~qQ zYMT%K(_2_c`b~NetGG|m%|2%-_jr4Y{bCXKskGI($aQLLvv=$#-F7uV4caoF8Q{b)Ux>K->Y}d$5jh zFtwk{l?VKA$o>9dYhcecb)X3HeCwlh(>bYMxS;oFwmQ`A$1FkmZaz zV=mWu>8!7vvsM<7{k(f{3SW?;3}Op$7sZekOyvYQFS&Q3J1Z!7Id%Ao@ob~g75CVz zC+Vv3_=y3`WFx0Zam_wcj=F57z;(TcLp*jvuJI#-xImtp#$yf}DSpfTvz)}+;>U2# zQ1Xsgv63`*^3jqu9=6n#9C}p{(Z) zg=1s9FL+Go&LS?7GtRXc$^ml5`0&~4x>5SEm@t4{WKM7XEaJ-y*2rxNWsC{c=)^?skR?-0 z_=jy=ql7?Er-;b|H$kzd-qBG1Q!uUJE>sK=PjX|h+6Bh02u<(Tjp zy;;mTvQ>!*UoeUrJpMvV7{O7hyciRHWd*5TQnM`O2zg#s$24OP1z(ZxjN@Of@Y<{9 z#jh;mFsZ7_b2^i%T1?4B@Y48zHpoh@7Mz-k?vh{X9RnQd(Yfy%W?9(9}`~UYyKtq z2QlFVIxvUKwbcTXiTlvpsm%}k!vRWuSCq9V@v^)LnqoF*sMJdzVH5W$^Sjt{fJc1L+Zjd0KhzErNY=*~OyWMT z_l*htIYNPc_JgUMBX57#pdXibZGb%|>p(Tbc=k|pkR0IzWe3YCwvggay^ismCEpOw zWgz=0Gt{1w?5~(mj&B*xPF@`@$Cyc`5%Q4VxJ<>7dMvFO%X#vTa%M4sReUyD&*eG= z$5<0-#;OUn^2|7~VFu5PcRtdI*_TB#JPAYHsq>e`=gXoF#6PTxSB=Hmf=QBYum1L0`_0eycp=S0;0e&$qev zWgGW+db^yV6W7VILk#Fh?ww-AZyX@gF1gQCu2XThx?(V4kGa#34czCmz2e4p;`Vty z9azp@QtwymwBsIS4(OkZ;yeilV?r%{pg#o<$y2sd^ssBuoAKm7qBb~2=A&|zsca?l zG3()9(jJ$iG-ER1guG%X=O};DUh&u|eT}xPBk{C;z&V~fV@_=5Hg(U+Va}5JoO^h_ zV;RNIJ5LzMGBRIKlboROMS0175-+)Tpb3MyN`=e5*I*&}uc!@1v6c*1#ghr_rPwvG zVFa<)#gQ3YBEt>$PrOGLRA_mkhS*S-Nn9p>GN03%Wt=A|d2Fb~PfX`B z=~Bdo7K|ZX%GmHc{n1-i&`q=O;Gl|P!{xoF~kEoC_HgseSDKo`}0=z^^ zCbEy`GRKA{jN?32v&4oTETdr7*wC00LLM@hRa~Q3$yo1E z5$pTOSnqG(W4f?}bfscLC0eqD6wk)`o$IloGm|;TE2WLe6!ww2jNE1{Ye+0Bt_&kp zIgc@xJ=`K+`B=Ye)%y60-NaN7d&Y2*3eSlxTPRd9Hne9JyGj3iZ1{+Oc{}PgB(Egz zxJ9AL>YITq;RKN?>V)^`%65vsATRirhZKHMUGO*IrP$Dy4V)nB%W{ihoT2r*BjVMjq3J;^AxWU8~U-3 z+hl&j9O=wtE|TF*wM9Ed6W&stJ>L7k*o-2kw!CIK>o`N=hjN(ltfJsYp3iEM)sY+g z#(FODw2+aF1hN<7mhOJbMYbR z3ughb4dfGBDgI?_sKd`(qhv$-&2kdIiVaWk79Chg%CF@e1K3ZtM)rsW94A?0eU6Vg zO1f{XnG<~8L@#Qp-*SiFnyDk+{nmNI2A=p%d?@_AeP$fzi2p%e^DApf-#pg8RkBwM zuuQ?Xi`6y#13p<1+95EJsM*Mqg$Q zCEMz2OyY}n&M7@72fjwN} zrOvToKE-~sw>;g&xMb;S{`4VrH_xLDx5(ICPH>P+Jz~Q*v}GwLDA`jjQ?r-(afn>M z>y5Nw6|ud2P7{`s;}7%a4;E0kkNsmgcloxjSnyImwazNi_mB1OjPz_u4G=SWGmdR! z87TH#A^RZnB->!Q&m69k^H2Sfj*RCDS%=79eql66$vRZs@(0UF`pdc~J1jQ5MmG*} zi|2={d3te{N4z=0{;`mQT%Xh zGv;uN7svaU3=^z@rlgqY{)Ek3qu?Yxfj_y(?8&hq?-cXpFpv0lsW)>C1oyru^;SVM_fvEdUsvw*UHTMIMTOoe~+a;9*bEVJGF@fEwtKgSut9B%Q# zT=hzkd7j57^kNa`sWM*<6T3kFXA(=f$y*CO#sTsy5-aABYOxse87HW@L`>Pk@}oedfkcZjy7qoa0UYCG7$CLeygnv$#smgYG3*&n=!hq}MW$ z%Tzn8M=*_T#2ztEKIU82QShkR=Md?Ri6iaV!DSwj@woNy2ipiI)Ft0Dk+_rgfZrL& z7Oqn6lXc{!p4OOeXQNx}-UMn80YxlP7O_9jzI_cGBFkmz1V8hxqii^N~xWzT>%syI#-RG-e}@ zXmn5fSVz+R*bt>HGs*WLHhjqh7Vzpr`^{A{KhjhAmc2X{;(Y%b7qTRa3$0kdW=`;8 z^0?55F3jN|X;Z|7pQ)NME{x(3by9g9+ew=`&c6kS3(wJwRa_(~CN31_JNj~xw6Sra zJ`-3?%DA{th*~sdACIUO9~bJeh%^at;T>jkp7=;y$jKWtqYo>{o){O}vWz>to)i~4 z(3jQZPZJk@pdWiFlr}DWOgGk&DqUR2OjU+)ki3t14*Pg2eOze3UFv6u3+p_&t^7H)^MGCS>nRitf53!^CM5TxKNws%qDO4xbOip$ehD`bH;@a z8O2S~<+3K8;}ZsuA$MGOg$_(4RUUC=C(ZNv8jt5Q7dBHpf1LL}j|)pULSg}PU>fBf zkMsWLabY7Dc&4DS`I(`dCGQh*fgc&kLNXN+XNEGH^JIH6E_}skiWQCvuktNJ*uVke ziijf}*}@%47L5zPbATLAxfVY%l=GB$Ixe(eF}aG_e>PCQcwG2}L6j`vHH_yZsY=F$ z0(4{sr@2Y7XXGKj(4ECxA!Dhy@CBo}LH=jWo%1|fIxh6*Fcr&q9t+q^&a!fgyEH5p z7l!kAd9h&xWhqz@tTzHQjETv#Yv0yBb=Y331MskwasJXI_=PSuQ2C*&NZmU4z- zub3a#N&l)`<0#KnjSHXiC!09IE#9vd7ye)ucPa2%T&O@z+A)`%B)qOa5LZ3Udtt~0 z($)}LYBQWA9N@7xe4PeN<1{gEdObfdku79>OK$Nc9huK9n%7hx?B_U5YQ=?>>?QGS zv7{}tN&AkTLtAEXkW}yLvwX!4ioEB#{6?nt)i=}G##Ns9z8u{~h|v7dM@HE2S6HuB`B_J&lSxhC)O8`F76rn+(AC+4!1 zto8Ii>d>5doZ`9qV#x^NKbJ4GAnprwM|*}dgT16~;CeJ*+y6fP(w^}Fj z7PF1Guj2fSwHjg+$I1M4oWJjNesP^@jr2VJ;nT)(VJ4ApJckrboOk@gJ`$U{K0h;p z)ue1@{cPq0$-i~xFp&e?qri7@;d>5K^LzP3i65+ydE6qVd0cpbp{yZC3w6j(9Axm1 zabY=)Tk0dNoVA=}L~G;n&QEHb$j@qo{-kfC@A5l`Db-dim`=uaap5DnaDfu-y@t47 ztdYK)q~NbU=D7~W?HSK=K&ij@uxjv z91F-fMBd?tyFyidVlNr~vQM;RF{gQ9nEYWD@x#>;bBP<_d7P%`NONWwCwV~mQTC2o zygJ(XM$s{P6>G>n*5j-tVVu{qmB@H!Hci>ilN0ns+s!=S-#TeD{0{+<)@XLcNcTi(GfHK1You>W$rGT`KP6`&XQ4uuT7A&2qW7LT_AY zk5;*lq|0h~xyHUxZ>{`UXAH)#x5f?n29wFY(KTpFSB^35KRL2V4Qw`l61TWlrY7}h z#ssbrwwf2;u#*Qozs;G+e`MJ%kLbX8zT2VZna^pS-08e#67xAjnqBgT9$Y5PZas}L z94BFqIn#+-ytG#ya++lOoI89*cNS1=zq5*exJBUu_K9s&IOwb*>mhl@D>PstS7?7& zeo^I!UO?NU`Vs?=>GRwn<8kK=8@WfW6Kb20+@RV?d(JLmPKhhaXmZ+XxJkh?YK`ys zi^Q|)pDTQEP93p~eCOpfe{+W(7kurazCZ<<@h6!tsWXOfhMN?;tPWX5p)0P%Q&-gq zZJEvs*VH@rDRSL?7*{EFL;T5iQ!nB3Tb@UT+s;#llktvPqBC<@%Wf*(b$ufDT!(h- zpyGY|${-%_`2%z3iHG)&S#04jm&p9cUel1y%x6CtLVS3h>io_@Vv_k9by&p?(j<=$ zxpvBL=XKQkmmJ zYnJmumiW+;g{0@r#fL$h=Ii|N;Sx_25LX8B4@ZeUZq1D4CWQ-%9jTs(_wSqI z!xSnOiVt(S##>Luhp8On3Ka{-hqOiF!-urtJiUv?hm23fhj;0~D2|ZjX)$L$UlfZE z<5@zT;_+b^SxZIg^>s zMP4amk9e}I8ek0h%h@yDq#^wo!xeIsHwOJ!#0KtBtb#c*hz(?Y&OT9>4$R~hX)4Bt zP8=ffd3nHko{y>%dXT?Td?-Ur263GmRHXQyH#D@$o+IQM9m5sdkQoQfK zT!*BWjZa;Epf?Zb`-(BR%v-O6)}8!&~uTG3jfnFP3ncprNl?( z%`h&Lua4SaEho88g^%OI`wS-UC-Q^Y+$8s>@{O6?rs`+@GiJI(Z{Z{tIEGJdDeQTKas`oVgb!CneCw->zILY*>?OQiZS-tQ<>)AV2rrzqW0 z>^VSUE4`S%n8G3Mlc9BdD90yk;*Fo;LwyEun>;_8FC&=F1?sjj1{cZO*5_>G9?!J1 zPaGp(`}oj@v()>=*LeI_{gJ)=)FD1h@VKR1(_a27vVLvH;ix1zD zyo(;pB`S6`9($?LEk10aM0a&eKbDcKhjp`!8$8w1m~5t4ulUe})l~T1xxg0AbB|AZ z%Q4FS;d!hlu8%mgmdt(iI&SbnKYf9oT&GHZd&&c950J0?N6UfgkFlf~Bo|prgTd;V zlz-|WyhAVc^39NVfA8n~qT*1oVg*;J|Cha`15?R5OfJxawY)xD9dV!6M(DXLCe=v$ zO(VLpj{>92gOO|_+h{e-OJnR6>Bq*0&v<;C++-gQ$TMD^vw+MK#Ek)*B;7>Ur8gNS z*<+4TYqFljKHi>UeeB>KUr)7nY$3}uaiQdN{f{g&oC{>0XPIZ*=~em_+bFVHUa+2OYxFP*t+j5xTqloNM`XQgv5LFAxxu-~a~t)P z|Kh_?Hj}VP{?LX3o8!Z;%;qW?w}=(fctpLea-Ra*^h6T3%PF?=*bZ@GKlgZcr};3G zio1-Tet;9CDuXHf`z8 z6$&2KLs-bGN5q9nN4=i*$6WWg^MpUSNzoH}7_FH?(nZgGxhPs=TOF@;6s zIAaa`%N`y-tC#RIE68z9FQ6AwxJu#k=E^#bk>!H3o--s|^nB{mnRz5$(!c1=2F{W4 zvbE8izQkU!Zdx&q9pt|K4n69hh~gmG508yDj~FDE!X)x zbwZfRyD?tNAofxyHX*cU1^0L}E+MpG1bN~U!bkkVJ|6O1LPA);T`ENq!mkV?YhpsE z&1AN5mRv~*;VWA44+YaCgetUW6Guo$n-E@M3OUjxgx^>~=EuZ>hrFFWAq*y226JIF zXDFUgj2OUq>SRg?OUawr$24X(iCGfD>-69lRkNBS<+FL5mE0vwc59*)letW>90{R5 z+j%2rLbynLu7vO&t9i(qxf4PQR#QGtLTJe>u2U{=LTJP+&Jmw4A-qao4v;;6Lim~C zY@=8KV=kLa+R_^mT{Mto=xyQmROLkw6R#s9SW7P20Ac=)Mdqo7iq~la+kB8{KG|(mv;@m zp*>r8xbGG1l%!ZzNok`U%_p7bvygsxnp z<%{A(rmudBiy5StRc;;2{rX2$q$8pkBRX-G@I8mxnldcS5E|+;gY_){& zAww9;Yz~t0HDi&Ns(ej<_LKf~dqYiHFq4I>@HvAS%^G6gkQ;nT zYkp%ENpB{E>byr+Mo{D}F{d+Yc|g{h`VW0r%@%I+TrFer3k$eKj<@ABP3b^y2D6Sm zRC>qyxJrR{6TGLqJ*Oo@nZ-dKQ0TpcP=R_hW-j|V%{9`$FE6MKOE!~+3V_AyiH5`vW9~stCtXp z@)_Nj%Ms2|p}xFhC*?mkFBn1&TCH2o?E|#{9-$)^Lb-n#nKPFqwPg`&M7zdA?>X&wl4z zV>B~aLE`t$M9Nc}ujt4Q4)VkgdNeDDG?x#wWCOcN-aJ`kswX9!2RLb5^PMGflk3%yxG^1`?KeC&~V@x0IzC_36n9Vu#5=Iy0L)WEw7Jyv7gg<}_i1vxz<& zCCkW!@DvUBfsX9p48M#~AZr3Ol$&-mz+*H>uCJZ2RBG zFKY&MZ|WK=FC`5QD~tU@*kxZnGb7;S!~|?$prQgSz-<} zW+h>%`sML|J`+Zuc6Wh1}q|ea;%P@0aJSBJTk`m}CdlIGxx| znnUW2nlxt-Sq|%2^yVnBN8}$X$bHm39n;8q%=*~Nm&f%kR`dJ`_g>7T)JgY~oG0Ow z^PQvQJuQbBN18MGEPXi5Q)l&WF3{|pc~bVgJR!ve*QFt=$bHeZS;lo*T{0g^Tvl`3 z;?*nq0X476O9pa_YS(XjAB3U#79C$4wE4v5*o3E z%n@IsSYjk}CV5gM)M6aBcr%T8v4(1CBViF~(nZ2d?osQpNcf#}=_8>ABe_eF43W^9 z)eOoQ2{$N_DH48QG4E&gC)+5IB@%vSH!o(5gu&dPXtqdb&uG$Qw{|Z4@6Q}!!4Ekj z;Usl(MZz@JQa*Piv>|JrNH{|0ypeE}YWX7JH?Hzs{z&M?R9+|$33EA1*~cS(el`*w z@OHsS7)G)u#EXVxDijH&s7ectlk}t*u#RgqFB}Occ&B~mKSnkuYoV*~Wd?Zxl3ubeiVikwgZT%%DHbAG}8aFqNnMnVVn^Uh0hj?KLKawPo8S>Adj z5*Bcks;{~>W650Awduud(pB?1{^Nz$%$c3M^13}`F6FA*ca{=g!^f;A*BjzTD{e6P zP5DL4TlSGpxJZ0WdqESn^G2;mNd0ysNl#W%tWG5S%Rw@J90~PV!wJ%VVxEj( z7SDVt_gKm!>VIY|MstE}bt9oBpV5?w+~k>ha*jP*d}FmIM{ zird6Dh=fW^CE1se(3qHpYKAUcr1V#j@DqzE{I%R?7W=tDwMKG?MdWX6-63a1M1L-O+5d-J!Cr%DD{JVw}|`A^QgveY+x@{x~OYba*tA7IkMtO{p%pu)qHNhT=k1-C@IYRZZa*0d4 zKTa-jgBs)Y66TV6f|%2n$V7dOHYA@U7W~9O{^l63O_slGp~4h(!$U?)HJ52#%PL}~ zJNxNRt{LXV20ojq?#MaII%&s6Uj18qDfo{ZV-*jmHrw^sK$xQs(S_xdnd>ojbAylO zMZ$2d@Y;Ma;xY{v$S0C7)Pv~B0m?42@0=oGv9p&n)TJI{7|SwNkaLOspc0jNfv@?K zmBcUAH+V#{fAs`vF@jO7XCs@q#{(Wwd6}{JgfD2zForXdZR}(ZcPY8t-tq=@_=E;@ zp&LDz!#w7*kj1QKEr&S5Co9x81DMS|4seM0m1>z6`G5~;$0QaLze>K4L|UGu3?K0^ zpE8Jr?BWoId1|m}M?dDVkVP!!F87JsDE2%_5niV$V;RpDc5sth+#%^daiKLo z)0W?u$VyhTj{n%tLC$cNhdd(LCg(k=c%DjBp)tMrgV`)*8MnC2UE(*ZF-lX8_vp+} z{$UAA*~LQ&ZPAB1CFafY*`*kcdLM|mpHlrD^AEirpN z#t*dMM_SREKJ;TK6Pe849OopN_n9Bh@;MEd!7Tn^E(^HHZSL`aH2d9)kb%r(BPY43 z%Fq180v55Et!!r}ySYck1MX*dkN2s~M|?~JI@5)2bf*WsSk6igbDsw!9aNj7<1x~c zkzA}J;gCMUA$lDa(Svbtg`<*r!6Re8>C zDqqu!*+r4-&KNqfg@O(Au$x2DUUcOK zMRO*Gk7&m-p30RN-sKO@QY3d`Xv!aKBPoylWGbt;$xC^S!7854ml%4oiIb$v@0xr- zOQur1fIa3fW^#`jk0*xhoFiYs#88%+tmQPHKOt}Us8C|KOqM6@3oV#JroxHgJ!Y_y z5=G<|6In&YqH=~|oTlVc*2TYEAm!7EAuHv1gMJ((OR>aIhXZ6SF4q`KYzccxch-=v zWMb&dA#RcJnZ)o6-*JW7r4qy6tR?xg=F4X+4sLyat^HsG(KLe5&^1PPleXoqcBZ|H*riAK=p%mjuTf_4iO82+qeogVO zr9R)0kJNZq9lfU~u={=2|3F^VP7I4b)IUD*+&b3(vDklNo}bDO+J2@c>WXJQy@Qzg ziQ#uTex4Y<`9k~~=q+D*9TghtHMILmoW8b}Mu~oZvUPl;Co~a?c%&Wcr@k?Sz_Nz59 zyMu8$T4yJ{foYxflHc^1E^4={oa6OwYLuqk)mjg|fe}5$y_b3LyFeovU9&EpvF@&LF{g-$Q6Z_%vWkg~aJW|i$@+duE zjDAJEvGRGG{TQ!SCa9~4`obh8>qS$&hMLp;Im3Eps>NCQGL8OD3?I){Yb4A~3_r|M zV+-`_g^A%OzF3?XcF}l=HT|0yE-_%4b7Z-5Wre-t%*w>jXO)^>lNjbwab05QyT_4B>CRNkcL%=Fq#>xVkf&fPO_t3PikU_C7uKlNkcj^kclj0B|ACE zOHYm_^Y82;halX8JFr#z1orxU}6{KGxIJ|j=KL-eeipyE04rQUh*qWlGq@gmiz z!5h5EThyc$Z}SfC@;)C>n-BSjI(*D0e9C9kr5^S9l14P<8=BCR@A#3{w4ptn=tfU^ z)0Y7ZW+=lM#dsz$l^Oia92Rhgk{69nbJkPvlJVJ3najpyCC^_`2TW%Vk*jimFF3>l z@?2B%*PWm2B-0Ih#V+#Ql>0Pd2E}f<4mLYhdD-=mx4-|lENX%WwQ?UlQz3G)00#=l0peS;}_O& zkK#GamovPZOWYXGF4E_=W>#>4oOzPM_jF+n*Jzv9+BwO)`RosCIYGMoNq#0eDGVi9 zfuyjG-P|J8<4K_xhq%WZ1(QN!`m=>=6nr8ne8P506-o+~smFihebOGWk`jfjpL4uW z#PwLs^F_^xe%$7hr^K2i>?J%cA6Uf&5{e~-Y(yDFf#ONw9Tsw$=Sz4!nM)>xCpblh zXOhCJlr5DMrZe!_q%f1Md{jCqJYFU#lqs7Oe&9H{${C*?oZ!Rq_J?J>Qz0qbAp3LX z%0INIC>GRvJ}EpEO$yc6L4iv0fIWOyIVlWd6OXuE#k^jyc4n}fTU33~{?mp&>?Yew zu0=;?v5RCcnUv2S0=e{-j7J4mNwf{ZS zmv;J6_vBxc?c3$I|L2huU+wj!8Z~NEd*pxr|Nna}7_m#0%f-L-_onqq9c#WZI=^Gu z4%L1;5S@AG%=0;4o*Ml+&(1%#TwD+xlp;;Gc}r(S?@#>t_+RCgMvoksSMpKz`Oyil z%_)@Q@TBPei~DZ=^vjt4dpytTclxCKbZRtdQjOO)99$TEa`4jFxK{I`hnIG*RVn*F z(dgD(!q*=%Y&&zsY@j zPBiO>Q+|JS;jHNYGtWiQr$&s*R_Uij(N9}1soa=Py0Jsy!V%n&-ij-^p&<%Lg|XLqgy7<+_Qeb-000rTN^~m%#3z? z=KD!Qrp$@Po_S)z{c5wLXS*I*pBOhk`gMT=MbD(3AKkit=H3f87DNwzUAledxN7C8Ip;)|XXyWSno(1u zuhrW3#iUe=qT62Y-L2iF8PVONkIoprZgKQzZ0cx@i{qjnRR8GL2X$9OPZVwUeu);N zqVwlI{Y$R1&8Q>zM3ix&G}#-~qxJ2ZM` z%#$5DWSklu)S=M)Pkx;k-TT=7uih9jE&Ae(MxAD^pB*jy!=1Fd*G&7r_!r;#(qE%< z&xt;E>gwGVu#=n*Q&p z(MqRxjTl;NeKg(O&GYj-nic(d;J!KY{@WaFII86H8L!NUPJ8x`u6GBFie{XUIbWr< zOQQ+rx@P&f$joTB1r2^LxnO2=e8x|5++Q>(`u`*9z2m9;-}rH56e5`+NfH$jBBh=U z4U|G;Riva)D58jrG$eb^GaTE&vG?Ak5K194QbI+8-~Ii4-=DsJd7N{f@fz2Cy{_vy z4&E(c;cPE+5cizdurMPV;-{=Oe`QNT>};XgTtO0=Io~!lcTv!mWSUmAZ3I5zKSEax zRzh2GrfZLMEqe9|yD0I|(4xE0P^MFjS}E)ww8{WM4vdhjd2Ln-oo=& zIRlGbcBYEc4G>xV`oa9wY}9R%zho?&fT6xxBl%l7=nU`keS40EaQ7WK4%`&bR07^d zT}%VdGouc>;94{cFi}3_q(Nnm&~XSP0xhz}MXp(xe%3NIuqhu4e{Sw>aO}pL!3PUm z0d)xXvSi%lFGiPddSCc~Ox*VB(`@$2Mc0zN1D81+9Sqi#u9{@%EA~{5_GW{fY*s#c zhk-7$_4_=z^Wc^0?De#%7@a+3o4L0aVp1sNZ(e*R(mXc44LVJO*GbCKvlkgqr0y~o zQYgkF7Vqx^tohjXM4Ec!c{xO=RUMNeiJ(^thFDW-PM0? z4R1(CUApjCw_h66)#th7`P1;e!u*r$Vg`Pzi86XcqrkcOdRE*qDyH-X`1W{5BFgdi z+s$`^k)&xQZ@4-HUkXn+Nv(+h#YMzrTsjIG<-&nR$5WxH5&b1nE($v`9XVNfjGff7~d9hEL{1*jOg| zdNVG(uPy>fe$vaGk&BNwwU+s5E^0Y>S1KRLLxW&Q(z?`aBq(M)eE*^tc}2I@dd?2w z)mzq~TFq?SJD6O3N-qoK`w0)ZCvqW@e(UCKF)Hj7{ET9WIL%~X8oE#9DNW6)paUi; z&^RB)$MiK34Syo;NJmjo|06e=JC261lkp!1j5ENt@|cK@5FH*tYxjxoEI@U~8sl%G z6zq|UoNOD8hxW?~s|d#wxV)G2JyA--t^w5>Jl|tb^Yw;P(gYnJ?suNCA(=bXW9QFNiQFBgLQ9swDZw?s$t^!#{sBIGsh}q^uS!w+f^jB0@Ius z&0A%wk$?Nan4xYV78~zB-V^=;E<1)-e{jize({<0PJ8QcODywzsZ%xLe-1G{@GFAb z35K?wXd2EpTFIW=T7s3L+3r7$E8%b^bVPi#8siDlt6BR~@M=@j7Qu_fupLwNa$Mbv z3+4`shwNJ5_F+jdU%C#7Ehl}OBCD`;`o6MaXg#{tT~zj+Ys1};d>L-ODtt1`C@2|d z#nHkpe&z9^f7eTPhb6>348^9lYnJ$)j$an8RZC(KIJDKR&6y=17P0-*(64ncr5yWc zWgY|8Ro^F7M55rO%+#zB7>SxftJXeI61Kz!oVs>134WZ{u2KC60!G> ze7=oAC^YBhOMf#3!Z>bV^Q8?@@V?cn({q)GZ+-JgkIN}=VACvUx)TJNqDFPuy&$X< z>9ccD2u5n-y=x`rN!V|GHpQITAA7ubWxhC&K)XZ|n@cC=>&!UACX|N7X2B^n&QP%b zP04o>CGzjsL{ef79T!>4w+x*r!qb=&GxvVP!gulTu2qqtIMnbqoW4F3uP(@+6qxqM z!Jww&mpTIRtX7wvWt<3>-AjfILKLV9Z@a<49R@4EJw{^eDPUTc%lvC15o~f}#s)qS zFxk0!L&Z`iT2~8u##~9n2@d7+ytl#-nI6Bl{#po@iyaTo#SrJ%RAb9@MHEO;MUpp$ z!yu!fFv3wDj>pF%j}!*SVCY4~EsD`IY_9oob2dH)S|xASXnm((lxNRp5tUMCtBXDB z4rvAb?|_i>(kCcoZ}ZBvrQqrr$$_uJ1?UL3ua!8R3vu4<$|)wqd421UV#6;Qj=#C` zgf>Bi`E7yavZskCJuS22;~^USU;a3#eu0Mht6~TLrp3Ty?HXgn(JV~pe)icLn+%VH zWgmn22+T@^$~m8+V7646L*;q|!VQmp9gipSgud(VU*Q>0leV0W>7jymKyPFCXA*{z zdZU|+Nr*MRC%%;{9SydxCrs>9aY#0@=%;x+-ZZ;&d{~)yr%-69n-LtcU5E$gWm((TALB5sIu=WQ9SAY0gVGWl!LVwuOxPk6 zgs*Q8N`xMdfU9O@$nr{}&S?tfN_GxJl$3k^&HQLE;&;8Mu%*GB!>zL`J_4Uy9A-X5 zN1~_v%hY07DE^K=Q&n+@hOA@Ni5*7akmIw6PmoANwY~p&T`ek>!~$&@vI)rh#OLHL zOTr$XDTY{RJi6_^P|hfk5Si^3yWTJf4aKY3NR=dHtW9TGKNp+rcX5wVS$ zO@w5S9dCFf>EFEmw{HKNzxA9WCudP2W=^uww!e;tKK){sp-lwX7PeS<8i(PK%c*Fy z^Cak}l9z1U;t=RE_))>g#N*vkRo^`*m|&T_`FA4;cb;f`h&oD#yJ^wh zqN$vJkDI>EA5N@Gz?t)mJ^I@yP!4Ns-NTd};X7L@ldp5xMMq&K@! z!6|Q6?I=Ws#L|-EiqT}0+!-fzts=oNcbCI6HVRhG%Z_%j#X^1L-bl`-*#GiOES_D} zzPR&h2-+>n<7cmi;r8ac(yW?99d5kUaKpJ&+}B?3aE-kUe%p&ZylxlaTxN^^*)eq_KwGbD3MKpJu_-6vg7)Z-WrCwuf83L>_b_=$X>L*o0Oo48RP z!o-gnHQvufY^BHCs7DE6sVv8|S<>+O*A=bh_ByD!h7H~1&jN#|xic&(9cL&{S!BG5 zaYfrSe&3f|qz3M9vL_EgVzn}TU2H8Fx15KcR&>C9z4dt3$$oVCISBC|Xhk8n-D5td zS~$&!y?yh(1BdQzXxe(Y0fr-PvEM#ap>(J>#k!a{S0eL`zrU--Hs!s0&aIC^hvVys z(C29wD-TY2qD{s|sV(_N-^j>Xj6LX}m=1xm*MIo=8W8%q?&OQv8mta^a->9o3KdU( zNxuWx82&0J{@hs-;!YSFn!)UuguZjOzC$|K#|)&2>X zU*s^Z*%5}H0yhp`Iu!>_^#rEdl37@4TaLM3MD(Y5b6bvWk4J{BfXTL4B5%Au`0{US z4#>CGTK^Ew#mRzkoL3ElN+)CH#y2Voolli(bSHuTkJ~d&5)JR%N*x9sBqLl?)lwxi z4PiI_t`YjhfV7Cr#&dsCFn05o(G4mM5y3}fMDE98SWD9{ab+Bg7t21r-W`jB{Co9} zUwws>H%C^>moYGMN?+$XEeTVhhgPxbMuEzs$9YLK68lT?&HspILoex_w|`7CcF3qN z#43z~ZNk-K-{)ey`?}S`jw>Hl>Rwt#@%iwW*{*tiI0wE+pRc8)V&n<+`@N|OII$~k zr8yV9&y`1iceoN=VzFnHyz(vL6ex-Z;m-8_(CBf?z zUxEHN&h_sMD^A%#0k13|=O#v=8?lRR_$iVi2>NLap0!UTz ztP>#WY=HwlOfQLkozBV5;ru8AJRh&d+3%$z`9sy6^137hHhqb|Pvr5fM|IeLe`bKY zUGW~jc_cQhFJ5Fe>(G!AKL??^$_04JGzopO)Qg5s|@pE_Nmv7wI4W$~>#Y zf!eRXZAyx9xbWn(m~j?56NN+a-_db(Nl#8UtQ#ig z8K0zj@nC-mT4uU0Pwq>>x+S+u$Bz-?Huk7G9Z111U0uC>&KcO$-n}pLU^;XZf28*H zq{Bqz(p>y}K02@TrLGjtM_y{rQuty%^v0I#-TyKW8guMu#=R`mSw3(GiwT8bcIKZ> zy)wu@DX?%|sDwG+{qy&K7enM|9KY{;0r-^;m%Db-P%=_I7~3C)yxr0E+^?b_eaq}m zibVm+1>(d$R;Qt?wqjMN00lEgukISnh(VUZJCharBfc@l2@*=3Ee`(<2}}7^XoK3s;OT6belNm(p3j+Pm%ERK@+>xu2?*tWboSTi$~ZH z>!cDT7C+wiaoTi8$CDt)lp{ZpdwxN-MPoLw;i}obp!s_v}#||f< zkCauWZZd?OL)<+kN8Z78OU}0uxnhjhWX$h6S%CGad7|3n4%{;M`Cz?uAtaQS_gmHF zquzAK59U9)=q~^6WL%R1ovU4z`LtZLH<@kb-J6ONq09*}v(=~x&KcYBmRRT8XO%Z6 z6`^U*C815*Dd4-Dm%g?&5qC`29!enUTlIy?L-`>Lh|@ejRsJr+jY*3ypYNoB^VQJS z+nMp;i^=v;3oXQbt{DR@#blJPTX=o!3K>&%qiQtSEV$KWeR`>uhp|r;C*`Wr;5vOj zu}ho=t3zcbKdxj#^0nDJ`^*fqZs&?tUYiTU@||-9@9UwWXI0!TM8%JqUEi)15wF)* zw9Kz;g6Rw!Pe@=f7mC z(F5eBvQci|5F39!4)`#Vg4Hh;h1!nVqi2x;I@{3yD5i<7vN!(C=Ox zc%S!Tec2#!?#$Y&j5i}Zgv}+8vl3}8k&@fu>%qj9r2D&$`0IVty(zU32`?@^Jf~L& z+3)&}E;}kvqgaFv z#b}s$_U<>)*M7ahrs`5wjZec}FUY((a9iTvem{e#2gmrV!%fT3{aV52{A3=sz40?7 znJ{4f%_NESOcsKCe(F_q>&I6oAhVPvr8Cw9ZGjafcYD(zcHHHGt{(#u+X{Asoh9a@7^0G+od;dn zFE-nF;}E+;a&66zOiX%ir^IBGLa&a_HGM1(=hewC9JY|)krr^~#LZmHmPcy7d_~{^ zir$s9D`k*k*~z>skBrLQPTy(O2{`p4_l(j|4D$7j2j9yUVdf#Lw0B4*%DDW;>s&~% zJNQ8});S4UsuvZ!j>p4ioo7kHbvnW@TVPH%W&5p7g6p#( zRPt0{DMF7=fs`rGhHZMbacP-rUM&Y%_>TD`jMo#z%IX` z7dCCbOq+Q-u;Lcq)LWxmoGs~-9`LFS@E2^`iu@v@4^}U2Vkd zE{9d`i1mu4(r;C6Pezv4S^3(vS?D%oV>X8X)5^3-mC2D&&GhJgmF`JHf+-(tsgqRN4AB?5zh-% z7?2+Oa%sL4qFMtg9tl0z!9raBE7F68rk{{P0W}Dx>@~w@Sda)NGPurowcG{r2FdvDZ_SG#> zE3j<0>lSBB8iJ-2p1Te(kepCjVAdRh%3Zg3l;Q~dPR>*HX>%*Iy&hQ`+f#5_Rktm- zyoR_Rr^DW~l|z7PHP)F@hzoW)jpiKjxSdl`5wkiCEVD*g)NAFKZq)13at?#837?=l zcLdB@NLjy)8?cq@FYE0iQ4ss}gE3T?fmNGW=Pg3x@HfM#iT`pGmTu?VWJJYbv(0bQ zo2sc``kqlQ&lQM6VlS`UdP>12jmxP9-I2H&Vf`p#Bp1J;r+3XUUZvkzgYmdT*~T;>I?Dnq-dziXdx8xv{L#^qhRrHtvTn3NGxg|`1QG;iiJn&yEh1= zA$`va6J`Rx`QNxCq@G9E$wflgt6ooJCIRb?R?OfweIy*pZNy<6TZA&QrPBaxY)_l$o&Zl1szX zjYNLibAeENnzLc}ArZG9i%Jh`CqQ;_t*Gq1Bq;7a6(f}uj%CN(HHDYLA?E7*V~==%2%*2M_H(zTPHmy3h3pzK)Suqztv6q%pU#QPr{Kpcb)MC) zBSEq|xx7^<7jq@%oDa6A;PlL-!8W2l%OC4c@sdphx&EAU+PXUAOdK$L;xq~iUaIn{ zxkSkO3%s@^`Vr6Sh90(xSVSltS(mt)hRMvlMtvzV`pjD5_SB?dzEi5Y^AVBn{{MA} zM#SLRvmY-1zw3s*w&srxCZI)mjm@iG5=!mPTq-2`5dOU7THcNbXqnP&>WTY;eQe>D zj(QZaXPeBOr1 z%82M=-1Jjr6s5vJo_;As)`~(en|S-g_CzEsA6W77V-(EmPDF78Q4xBYugL8{64sbn znU7y9h0sQh;Yazo(D^VXd}0^z{{PnF|HefGLK21tU7v@8nMLS(Xiy~Thh}KX^`+QZ zRxItJ!=LL^>01yrpSl5B_}|*CG_v*2s+;9R*90|r-4=xawb39@O3OyJ!otrpVR-X=kOVi`=^A;F&V|{5dAk2-lX_u)%0L| z&J*;0cqtLz2i$0DSCIaF&I9$N#ppt!jyRREyLT%7-@g5C-&2nryQXIp4TZoJqp}f+ zU>GUwsHPG5;J^487d)4{k0ldC!g%aF6pE*Ze{yYFNkvM7t<+*jE)3iaGxt>mA)jw$ zmpXy-`+SI&PkZT)yq#UV+k_HvJTX(zavd4Ie#&cibB+RojwS)YaOm}uv9x{a9GGW4V>Di4~E5+-HtG{A~aXG%Q0 z8XD>{(?1E`q-}xaOoDVi6j*cuso@OdzjG*>3uPehRkE1%h60GG%IsCzTZF8{jE^Qy zN}+H-;z}%m%k82H-RWXbaF*RHVfYkLrzUjWV=^s4iH4h>;{FW_`#<~gPa16kf}<%!oS;EO95pY9*IO ztT-7y56HBstNFNFowL5KKN&}I`?4>|<>Oxb{?~OXMbKSi#%=J1z@^T*iHsyt@LHnF z?%jDY@&`M_z-=x(bTR3cfy@tvJEz(d-G6B{hkVp zL>{Cn`4jy@>JM?5=vq8Celhx5t^$)qN#ro^dK5BW4@>=9iOTrGvfkukP#$TpY%(rG z&r9BOD>SljE%$Yd?;k37jQ?!8T}lK}6pN{T}G9L^+rJ*2|^E-QH z5$5|Rop=d;*5>}VYgVOnSWPGwau7VwT{e95*jxbHOUw1kcCmP^`&2J=F$ayil`3{* z7r~{p-KT}fyH}&v`K>T0Mc|qzX8sEam<@~X%H5fRCtjOQwF^Jp{{QH}13KAMxt?#Giz(Lzp zN^__RKMip#m^Tq~>^o^(8w+u?`K0B_zE}in4euh0l;Pywt}ni4iqU^B&Me?B4UEF_ zmAy0?eAsH&9_UKOz#6oP5&I;1-2C;CN(Q7hJ#2Sjyg`hr!qLXKSO5JTg5#Wtp1)E# zeogq1^1d_RA~#gZkSs#3MKs4p%PQzQY>u|46<}RK-_}P)mAI^ERV%Qi5dIu~Rc+pR z@V)+aKuL~)&i?h!4MvM$cfm`2&b|a!J|ExlOS=S4Dh>{iEP&nF(kc)60wgkmetr(g z!wdflY+D}}W8~a{O#_e1!JEOG&M#Pswj&oLKc?nkdiLpYZl%J1Dty z=Ucz$fO*YMdMQz7{@?jjgOq=P(siD|otqBeJdyYHw1b=T--hC{4tIBQZYd;E!Zi

    GP49_#BDQ?R%%SF+(`4t|fPo{fD<#;2S@*|^~EjmPDusbw&?cQjZv4=J4 z=Vsu^5!YP~19UjYXNs&a&VfYo$kgw*gnr}Ur`3D)GvMyE%|`h^4)$g=RTsC$;7{l# z|20=5u}krN14TX^C(?QE@&?BvT|OeJ+%p$kr`h>F8X7VM z+TR&hp}}shG$%Y3ul_R8tKa0qdBs|ur`1VVZDy+3p-w~Zs^-d$iFC-@iy!7$OW>l@ zX9w3xHDLe7iGl>Ha?JmD9g!iCg-{hU&u_CCcxX~w(&Lr}2MO|<2JTmQ=3bxksbc~; z>;jFxg@k@&?d>ji<`O*IN7gs?&4Q86+T}~K1!(%odcz?-2f0^u@;0|NV)u8_I4v(9 zmBY628N_}HE#9%T?kR!V`n5LE!gPGmm-Z7#FM!t}BiV;_3=9Z)sCges#nl7;r+H?x zpu0E_e4aBE!!3t}Z~V?fuCrRhR0DzkMP9K_nasq}{?Jn?Tj^LCWwhe~!E@KEe?Bee zp9Db@HqoD(YhdAPDDt7S2!*~TM(Yl~hUkL-scumsF5KMB={b22pl>z18{ zyH7EqTEAs_YNX?k^?Z=dFDew&1zTM0TE;XW*bE z`^zIvMPU3Ed8pk=th?nG(kaJm>?<05FeOt1_ODBGHI;eTQFe~DL!bm*{ZCfUwqQTLtc&5RFtOlkqlK%(Bd? z210AZlOEF|n^fzX%e)#Y(&he!@YsKAeL%7w>Sz&kjhY;nxy% zd&%i+ST2++9zH?j7fEaW{je=9D`R+}`xB=i7Z0wjpOyUI60jO$kiLSDpNx)J>f zj?3CBNvPnD*;U$>+HGiUA9-40iR<8xaX(~%4WI`8>j%u49OjBC{cgVW&oMDc8} zSr(LT(Cu1!8R#*;V?w#efE;gSf&HpXB<>2NyliD)=xt@5KnxAs*;lstBvqk~+`%5; zm48A6l`>SB%?S}hox{aJNqdbJhn}+4cNTI-a40z_j8#j<@@B_c%lIttg4P# z*XN)-vgo*KV+FirSIrcC%Z0k-9qmA(u2;(#+;LGg53XCYbl6JkP+b*Y8R=4wJ7PNK z350I%TY#Z_{i7<_ve()5^Od0X%`NwqCp}0zwnopp@dGNPIUap#@50AbPv=HziTCmJ z1$L#>pnKhB>}9P3-v!5vCvCMbOMt&C5eGcG_9@)At%l|rflk7}0bkSkse>01@yF`j zXj}~)T^l_Q$z-+TRdA@H!r8Zo~*$G@vy&s zF-6ckE8gkxxD1b63<@qcS3ut>kjdms1EuJu-nsugPu_+(zCuSrJ zu2z5}Uv6pecmmw{>%V?-d$!Ys2wfKmzriMAHv1v}`VbVZOm z30#5_8P%=r9u4`?G?Q@E9QX(vuMGSeg}0(^S1%C!X4EHMx0j!Dk-yt(zUnN|cW9)X z=+H~WFaEq!;v8g%lZk(Q#7e``SoMKicRI#q=AMfaI*lV;)FfF&qJNC3QDs?~h{4^- zcUqUSuz~sU&cV(kyr=Dw(WnT6&YIIMzc})+`_{w?E6H%wMVeIj)W@T1Q1(SrL_gA6 zf4OG;%7F0-YPS571bk?`dqJ-&3)BbooC5NMZj`KhTF9EH_ovJ|JUQbbxX+og+}Qy) zomGEKA_{T2M&{nDgcQ7dooQ=RH;R}M)PcZ#*fm&1Y!6o>qinU`C3`v&Kik@`Ka+{o zoEN|JoFjCL>wSazgOWkd;P;#&&c(V5Ox}A&GQs^U)5(VdYU0zcBu*BG0zppIFH^F;qfj*-l*+oM00RdloM#j|^K(9nY#JOdY`bsYoB-E9(&jsP@^K(P)pko_GOCi> z_qjHtq5S9gx$E>SG_@XFzxz4~^7RVTKshSBzRt7y9Zg3nzdSwhK^k_&g$vdYIJ{Tg ziUzwCWaP(WTBo?85t2%O}n!vfPHb9PFl0?e`Km{$q=#o#U-pkZAm&nPo(WimZ0Mk7y2J z0;zfqNpw_QInFT_Q;A0_I&FCW|IWF;U+Z>|{zRjH$ve`xocKiTd@``HS~lz7hI4pKck)w*}bw&$#_+!u3wGIX&m>khQ@G2EKtxQ3lH*;VzcCPM(RwTZE zPEQNxjKgJd+j#wu42--Qc&A42WvoW*(+9r>A+_5~Jx#a>+0jX*OGF@X1LsY~>qp?W<~?fmtr5q%8yr8a@Ii$GcV{cX6SHkOkjO^x$LCcw92ERA zktFz)w>K~ZT#VgPyq^={)pPi(u5&zyvzbYQ6pV}gr-B;x1i?{1^X{G%;kZn*7fR>z zhMU<5a{rn%JW{%;?EZq#4LO(jmtKE{hM+a+Zy5eKKf>QDoRfqqN)dBcN+_nCu6Fyd zq(EGWPf+VgBeC{Y6n2M5JU7=BXc^vxm?x+M=QZPa)U_7^_| zUF{QaSn}s}!JnZRkCl#WstF-{21cgpALC(k+uV7d(sOi{cnoM~)*ztFaI3dI8PWok zbGr!q+HU8?7ben4xWU~RZ0JLSIN$I2s^B09#<1skCBz|J|r4Sy72VM8X&L0UutLO2)#EeMzDxP@9JR1N?HdV516`@0l zv*9-_v{Cd@4h*+;)Xp|WgUhs$zv(^czxk7}NjHtpTq6@_j2Xk`dIUZa-dNhhc|aaxAv}x*||Hm4Mm>6@yDZ|2MBBxUCo6-E}t>f}@ddUGkzZ>ilW{ ziK-r4;S|)oNbm|&>Spy$-l%`$dhj7iU(r7X<4)_M>It6XoCYoh-OT&<`2WtA zz$I6@+fF_s|2NKR=&=VMKNz3;Z{Pp79}F9X-8WPT-s!*nnLR5wkuOW=0K3XFZ*ehD zlU{V<9HCSC-*p`)YgY$_1T0yF{PlE+!QZ3#b!U!+gQ~duqFq1{uBRS7`|fBoo;;;z zhJ6eD_rB@3-Ygqm(NNFIlWsUi;P(H$o_%FnSMqqszt`z%4ow}qUkjP0ehvd03iO!x zP03D#KJe5$6PrmQj=sF;b+$U>-}7&sE}xO=3&ThIv<-}+dy?j|+7 zB>#(p6w2ed7b0<}7xYZ%u>F7Ien`81sOJm`2L`JP>!hjw?K|ba_#hMbE{D1w!H;CU z?A3}Vd>H>5|NqvD%dqN;!H=~6;xhB!_5b_26#QZ7Gjqu$`1GlS($zgN_}_YLeEa$7 zLP;W)c4{h6y5pfT+U{{OHUdhxx5RoZ3IE%lL6KprzpIncwrwhOdviQK8wwu|kBh{Q zy+8hV)F)z^I&FQCsAv8cCmX236t(Q^|JF72-}n9Bc>dq`Q~u5K!K~gxPL(`-{;FVO z(w~6I-J2%(B@?h$i)F}Uj*Q!qcZVW{VzKr_%uBv^iAX!|Q=on#5#e?XAKA|kx~Qq^ z+-7HM;gQqHquNhLZf*9EQA#{Cin$c_NfGhB{mbZ}4iSGo-!>PQ#v){}dyCj{GI+|y z1GXE{kiU62+aMziId6ZyaXLfvXROD(>kK3ap{ z-N`t3m5SltCM!fuX;`)Q2i0;*Hoi%kTrcxxV0q7Mr^QbO*5ze%#}1U@>xx_QS#3G6 z`s0)xZ=H)v#J`B*tSo?Bz4Y@N(fKG6<*OG=yq^|fafP1W{LOlNvYDSB^{vB@h#Gy* z>RS9gmEqrZxf*|74GNR9>JW80=DDW760!bkdks?mddob%>>-alOc>#gtK z>97@}$l&aJy+$c&+OC`NwB&+=a-~#dq6R!jcy;z*GS*#mQIWh#_<`J}FAnxlkbbx4 zFZ}`G-|^Harr$0>E9Y0L)+~|NPN*atx|s&dtWBResCV?Tjcj(@#VpU#mAO9R*W^n8NvpssAZUrWYFGDD+^sN47_R=&}gFNUt8 zN@%4Q4L{h+!!LvEWwOmqizCJt9atG&FC6qjcmQ{(eA2KNDghdDf4h zlZSAb4m}pFT)5e~r7p!+VV58y#MYw>857%eZ$3fJ_!r zs~4*~2)zlt>EiP}_QlA#G4Uq$Y9@@gjGar}T88oysd;Y*o$mpQ2qV#|92^kfTO3SJ zhS|l6oT%7#w9Rf_XeIilAK$WD`<&8HO>+o0_)f>yXQ6%1D+qrOr;;!$;qxgfNOn9$ z&jnYm1xwLc;{G~k==(|_57klf-}V!FqWMp8(e1WGf2EPHaYb+p7x*2UWKR{Mv-e8* z3bz`>RbA+w;3ncKc^zSV$-!gWt^Yxv-G_fpgc7I()s<=~jU zpiu9_O!WHcwflOcL-bC7xm8sKPCuTt;E-j2vgp6ELnjUk?GoxGGzO-2Zy7yuuL4n) zhp(SV+S%SVQV=+N8!>sMq64e1;Qr6|40c;v}Q@AIANdj4*T z0-+-BCY3*F_^^2P{9)qU@it>BZcWI7)iF6zdIzDaif&01A>!!Q`!73Ybx0Uro8ok{ zwggnIQ<}fxGa&EnEEN3eBjK+Qedn#kK#@uOfC?vpfB6+X`gJ)O>Zvv562B?PCf%iF z1m|O1eysedZXU{>sQzg_Oz5c7PqAL_WwT}Vc zu^FzOZ&h$&W_zAV;LsN;7p5N?mP6L#*uxJaHK-QL17BySGe7*IQALXXk-?t< z$=%U~idLbZ3A(1a3s50+Bfn66M;`W;Ij(=3R}SZQsfA0$1Rwf+;lYvkGDKw+4oO{2 zhV1Cmgs#~Vm<3w|nXSo&XfIQuk7Xe|oL6<-AoSo&4_)k{%u5jD#&W(rI}-*2W%8pI z$uKc)I({4kAGBxk=2$L)m$1|eZod%@%5dmo5PI~~YM(8izZBz7N18Lew;GpppWGX= zDTPCteZCxDK4Sg3EUnBUQL@|l*d@7ejOg@Qd+O0Z%C2a6cB>9HACi4@#WOMf$AxOx zL;{cek+!DX6u57;^S&=0k9_*=wapgMm=|v5>O~%AFVq~4PR~L_M7u42XB>_`K9S+y zMc^x8-hE<$WI|`x+3|^&0ol{vN5)o`;8Do?qL)*7$a|7}p)flhwd~EMbGH(~eQMe- zgYd89zZI$Yt{ev&)BeiIRqM+HCFC&OXW&fDyhBxIhK*xe(Rg3ZG3 zZtz%8V5ZU^-|9jJopqsoNQ&@PD!zC4Do}tJ3-$;5oYKMObD-zgaT09$tu0>oQcz=X znYN>b43$mG+6xjHcy4i7=)^!7%(6#4-%7TEQ?Qv!pRE+ayk=J0qpERT!Yg9$wQ9nz z9nVZB@_}NcM)O~KCT_AdYn!f1!AY)wv-3vn7_(;)uAC*}|6sQfDLEIBckY{k(4BUK zMYamtq$273LH$BBLFV?nx2jPGRw^w%s8DFTY!IUt)&H-<_6BYLRvX-=r1Co{>$*AN|FI zUsp>J9{)08S8fvQ?0X)!mE__!-~NtsDlvFvWNIb9iQr>JlbjWTqi|x~7|THl!H-dL zTCUTGeR=KC?DeDqc17yu->(t;cf_6y@$co>yK{ro142jjFsAGX#lhb%C1lK&3^6?=9jk4b zc#^c_ewdr6f6Y2J7~Cp?&E16`-h_`%rQ_&?*^*y^@k9@?gc_u zI>4TMlh7GVeGs-`A?n6Kmc=vW#&je+{V5~$I|rE&k2n6BDMF=IPjvKh3Y?y)F*8|Z z5`4-_h1|qcSUuWu=defxp11jlUP*b4fkG2Oy$jFr^iGoSf!Z?6GIr87O2y)NGw9-Jn&z&H#3OPSq+~x zs-L64{fVEp??!*jgvc7Q5;#m<6O!SaywBKlYe+`ME;y$N5Zw)(xzjrT}sj$%3E#hr*= zvK0Tr1Mzrl^P*=sJ^|T}U0BV({vW;LJ;s*UXf&}Kn0+Stdg z%aNRhhpvn}Z<(sFd3fk_@em2dba|ok*E3KXq{pWIBOS`#!98BSbj)#EOfK7z!KU{~ zGyg#HfAhEuCae!%d|W+m{DRA^0fHUD-PW zg8TOj-*?Y~h_*?ffOy)!{b86_OuOsS{(bKM#)ojS855Q8^UYo@DkgMZ-}@(Ti?S!9 zr=|GFJGpF3CLH|Xv?c@9gL5}3UnfCcUpeTTROY|=S$>*zR^iBk=Ec$u7UNuO>CAX| zncxppj?4>WAIXF;ee=vOM-u8Q=sB4L58=?*#%`@j_zES8>nH^7$yCmE{mx+ezwbM4 zdrkL6E#dFq)KxeeP2k=KM0mGr5kBVs;$vIn3De(y2*1xr^5Jf-1Ta+|+B$1Q{JzL? z%#Ka^p~#awf=kU3Zl;v zcoNC0lZutoCmEvWQ}Fcm(|g;La}YH(zS>8K&`&-fznnd8;Aq1~Z4 z)0dg^@qPqWFv%y@Y$kjs363AsiW4DTAjRy+oQb`64l#4PQ?Ntp&Rwa+I3(8XYg+Xn z6t*%l9`0Y0;kaGv7Q0sj0u~O+oZcOUMwJ$u+9AScTO>U{bTJ$sx@;5OS41Gl{vg*c zg(MV79MPo{d}XbHV11M;36p(Zv=eFx_~oT$60jl)&WSGWtD-6B=LqDx=+Z9v5&p?%8IheE*V)V{jU3QfA8<_uO9R{hvPHe@9Vl=ujk8Se0B=@l+p-u=*w>{ zTW9~iF9{O394TfevZ4FisF;{l7NlJs*XQKTgQ)pRPJ{RPaI)^|S(9fuaBGKxw+d$( zka>nYJX>i|TZ7rERC2&XX6O7e`i+ln9hxi0dCsicI+fM;MkqMcEiF7> z2E-D+8RL)HkQvDL>!DE=+`1lmR%v%7w3ysBEjWYvq@Bm^-atRpYZ(>}P1MJmp7*-R zSw(;Y9xY93{5jBe*Iq_nxe?4arb1MebK&x@E5{vgk>NpJ(Na-O3f!STrqoKp_h0_L z|Cf3;WUSa$_(&o@WQVSAF!mXesTo=i?2Utfmpk03FBL*TEIFnxtrA#|$mS(tzo|1y z)9mi$8mO7J6CVnRhi6)5&trd;Ln*(a`0a>1s0oS`2(rzCdM)}>N6KrVgM9iSmEkD3 z#Gcsuekv2Ji)|>~J?fz8L6=#rV=a`pt?1d{oN0#a2e+dO;nsyOEzHH^P${%daV{D4 zgB8CktfQ*n!2K&c)JLj8@&fBu?Smy?Y4r71+{;#|KK=WlzGnm0TLMkCj>WK4)g7CQ z{0{Q=mnO%ECBQUesF@xS3t#s>*0Ph#LZ74F2dje>5MiRx%b*$v&L*J(iO7ji-|=OK zlC(ekeJJ9W_B9;XMoxSS_!L!9i6@nMc^yS9iaAn&ONEA1ixZ#$IGFv{A|!3bswzz>0i6oKMRV6 z=PpB6jn-43{cD-&T16tHI#2tWKozW6?tjevJQQYMvyW;7ghPLtL&C@4Lb%Y{o!x-f zHwEXAryorZTwhxk2z*)u%KR_RnxUpqBtKUPtX{eYFnqCb9CfVvv@t6guif$e<3?!fsZu>9S0 z_l9^4l$Z&fRX`3wdCkHXs<252KW1~T$-VgBg*f|L^OCuZ1@)mgT{#jnmB=uZdtsRD7~ZL_OB`N^Q~4qf3ksA zte`=?Hv{WoZaJI%sjx>3){>&K;p#noLT?!nqV2zpzZ)(Feg(gg1L%VY&f1bair2lA z;Vr8-xA1ziov-DpO#p6Y-aGU_g*eiRE=M#W>X{`9}cn-)4+3$Y4hW@a5>+MGK zMR38|LoS1#1e(Qv7#{WK13A$B(jWA*bq*+vCWZEcHvO`AVZ>)xDSftWR;vWwm&D0L z3ztL71A{k*K2*X(ZjSRNEG3YAS;K_ey%4lFSsTd0#USswb~-D$0-B-@P|qoh!0Ag} zeosFa!?C5Akjs5Va3p)C`2_0jkMZZtlWocHv}x0FW_vnF-&iI)BG0MID%xtbCJ;8= zj#q0qC%}(;gHwzOIWT%>k}J!m3RoS-AF|^dd;h9&YU>r`B_%K&r|w9`x~;TW+A|b> zsFxA?KZZk+Kq{}V2oVO=uExJAjDkxliTt}fVxV^>s)$ZB6JYj>-g&)b01|u;YGTl%b>|(ySEAVs-C|#XdK5;i1B%03(x1gVL!~g8lhtf&#PLE}Y zjQx;2TCR%uN+N6>=sq_{mjjet;oBlZs^M4|7%EVefN9yto7)m9|LiUH*Pe2nIvix3QvsWKI8vaoV{=U}L&3qaGg#Yy%wod~ts`(!Oor5poUNtlj8C(5Jre zOT6du;Vh8Qdz_khGZGG$7bccH%7MgB6`B|OOM%iXZaF+40XQy8@ktM-L*>zXYhK8w zV+&UIHbDLJjILIo^qy=;wo^B~5rY1q3+H|E@j4w*Y&f_&kpc5}gIpc_(jakoht0?D z$zT|7>2Y#74KBVuR={971u;{9*JM5#6CpP(ZA2659IC8UXefFEfRgFE7Ii$%zto+~XmsLX zzDCcisXhi?{24XRo4|Umh|b{8*BW>w@S4CG&dMwDgZkH14 z357$YwWCXkvGBk`-Lne&t@k{02(H%xAy1#Ryw*1k-Yx4mx^UwA{a)CSJS6=D>x06lhP6hn$)JASG;6^z9#s7+LIUlRK?bo;Kh(qFAaQk$ zH#8dDKNQXg zhLfE&uC%8@&_y4A?bQTmWPWON>SF?QIVG~6`iAqhe?HIL*QX~XQBV8d&rbq_9p8iQ zqn^2hl`F3>9iR6>{U0A8FTtp`;{6Y1^o8&GW8}1(2+xu`vMaWs-twRG_P^K5lBV~+ zxlRDicpA2IGHsBJ!JjXXPc`!Tu$iS8@<3+aNbixuIY+>QG7{=CtuoIx%$6np`?(rd zb*aJ~bN>B({`bDsJ_PE=G_jyX6Zq*dZ3aAO`mJ_2x)?m?&imz6WFzPC_IB>y=%Zei zl{hL_34xFAY+l}53<)s;PIhkS1Lm^He|#VjF3TL;W8##7b5eiq?5$Wh)JphOgM9)% z>a}zh!*FPAFTSBV8VP~BuAbLH9+$JSuu-W~C=^!4(tfK>2c6`wt3KyZht?3q8t;U2 z5Z)Kjis;vb&6Lp-??d5XLi{-a9$ZhJ$>`N2B!XaoXwMajJn$@=TmS{+Bg#d`D~xBu zi}m~5pO-SAKF;q4|1v%&U96ax^%Fp@zM8gX5Oo^exfiLfM}bd?8&&dT1jsF%w{WM) z1(Ui8M+MZauO#l>b^Kc<)H7Z`dyc9aw0f^_PJK@UW2w`p&f#;Bep^i=3HAO95M1&V z{YKi`sV=TiRKvnZIxW3dCJ4GS7Yo_tL*?lHPYMr<;iufEt`@>5$nLkhLPYN3f4{DT zBG)p-{nv{jZT7Kj>b7zi_JSz&JJoV$5B)<}vdAr;j z%ToZ>B+4DyR5-7?$v#qoejBy)Hz8eG1#mi_Q&wCo4@yHsV-<%=AYFggVXqwx|NgwU zw(h3?FON!DUO0y-dj4 zWXqMkn1p@z?hV1ir=Asp+xSc$yBhhQ&(#V`J_nay;e6_UpZ~kOWTDkS5!{-kbXjOC z2L)O#nwyXZU1z_zY4Z8Pgx$B7Uk~MgvV|~D`++$)@{+weP)HAgH|CVM5xBgHz`G42D%9P$(>;kj&}>t1B)y)o-N( zlk%5aLTOQ8G`*O15c`-W_xV*1^Q6J^eqBECkzkluZCR-t@W&*$n8c$=}Cel?3h{0x<^9hrq~hk4Syd zI4JopdZoWc4x6V5TaN7jm>=O~tvE=6>cRV~GoI=2Er*_s{4N7rp5}?~=Zl4|+7Q~y1$-n7|wslE^(NhnMr5BsRm zXY(t{KN6wng71AUAa8Ccv>v{bO?tQJu{r7kdqt3v#hW|ew z|NGoqR?!isZHe&sXPerQuc$+}ms|3)EQ7}{weNJXCW7$ZxGa9kYRFRs!Gw?K%ZzIn0)b+ncE0?J8O;;w1iA3|5N7Bcf1DrqSFKCyYRVG+2xu!TLRiP z2U#A!Ap>x>W>VUrU*q)qJ5O-lMK13=7@brB3VYk8+E5Q=d#Kiu_i8yL$Q)rh#gBDP zqJ79=4)Btpm03)B_88RX}j2Syn6?gP%cTwKdMeFdUplE?FOdT+PVn*d(0y z|Dk@j+?@)>E8>PFr*px0-|{^SCifFX2=pPz_oCyqODWmcQu%=Kiyt0&;)<%r<*oMePJ6x zu&1&p3--8v&v|^a2E>mIu}q*Elhm+u=4Lz4F`hHcKvYo$j z;e8N#Bv#5N9<1UnOa{nAgVOj7GcnO(h~T_k9))v{P0QqW4UD;9cUvVm5uSEg(+Qm`1a_qzML~{+{eCbTET$L%Vm+Ew@G=2xL-w|C*IyIIEF6-s* z0*Z^kwBw~4HS%7vCXN*FpG}9PdY1>j$oI&$7yl7=0{1Db0SARYhQf1KiDTn@d9bOs zr%i501n}8^)V>&qeH}7ELQEI$lNtI{Lt-3E3`LK5qt52m zlSJtQF;Gbk?si1o9WQ;6LJ0QPb>7}nyoh{PyM!vS_j}4fB3=H%VTELfEQ3RZt;k94 zZgh>s^M5YCfcw$iBp8e|(bq(-xZ=7B%_I9zIQ~<~q`MOJ-Iwl^IU?VDk8?KLnI9yO zuI6nvvc^8sjl1H}zNzrM^}X(`jx3l9G4IjWN&-#OX6M`4=mVKQMzdgv9Pa4n-kyqi zz$KU%DOs2aacUG}`g24OiBle0OiP4C3(_s`Uqg_3JM1r?Pb0X;CCi8t3L)e3u<3T} zC$qs&&F0%Yh;*M({$YYTIcu{!*Js9|ec5L#5&PT4!!bdoI;cyIpkAhvD27Fk6cH1nO>CKIv@GxRXHRorwE3|9I2J#yGg}_h;#-XfAjso0+^} zC&7TS%((oiY+#aFs^Rd@ggLgOVlPjULHW1rWAW?|ILymHDBec|t*Or+s%?vaX1CX? zft+mEGko?UT|y)Le*L{@r92--%>|!O2A2SBRsqQv_rp7F>pu1gCcu^?=c}e0_3wIl$O9ZZF!RmRwOz~%#VB@lBt^WtFd&8J*IXZY<$S0f_MxA(Eg0dVt`pVzO zUyQpOmkD=i2X+UYkAp*c_dBZp;Bz7=sWSa{4u~=Hk!a4~+)Dk^<%?KY8g#znw;rs-=%9;q;?TFvNimH-T6zvHK5;~=*)J<+te z22>fNMH}1WpiqM4XXr*ToPP0BJXa+P=DoTmK08MP+aX;Fw}B?Cb2O@xnPQ-y=1HeZ zXcXv=4wf==CIiL2XlBME32>f*#954Uola_^PFr#cXltJc9axTswt!_SDx5d=6dDV= zA&*yUP$$XzEbgy9v}U(D7l9lDUr0=73h)R%C4`md!Exudc@6BZ*KvCms0pLqL&@P1 z^{;eTPctSy^+dk3wx(X=Hsrm(T3?OVLM}uW;~l+ML~t_dcMi57!uqD=-$8+NV9SzU za#=y{pAGd{`_e&3(|g<@W?2D&g404hr-~s!%~R0~=g*R}-@E*Fm4g?bH#xtZ1eFVI zPLvV(a6miK-S|ksKgTx#tEJj^!@HyZykE(`@3+67YtPl7G?2&-v5qg?%9@pqj&+@kBKn&ee9?2O-Dwi6<-fB5g7}e=L@Md@dG_ zpQf|-MgQVK({mS0isRv__n$xC4GFM4WbOd_edL>bv!^#Ghy*IGL5;asx8J?UgQs1#*LrTCZmn8rbh{z}7K;het?08QGc3n1t0uxXf^Ub8(P9NsAkRnewEwv)-p zd_E!w_nWL5Oyd10@c8RST{2SIj$Pk_{L%Mszv=6C;du*~7yH4N26^1P5HUbR+9YgI#9pFoVol zNQWbbF>EYW2G7f-dg&khSht(+z0T`j4%T1DZ_YDD!*NEb12<-3VJDf}l*=Uwn3ziG zxsG7oL1iw}AI2;&ci1yS_r4GWCAobTv7i2>BB-?<`;19n+VzjCkbq;Q%<3zyN8!5R zn(j+EKqGDHGWVevE=WiZ-@9H4#$AyWPXqEH^JOR3+38ex7qvb4FZQQGlXZ!r2hcC{ zC3L!xAq(!ET(y=)?p~{2f2tPlzb}sM*4RUl4zo+)EArdNATzCWqwwA+TsL=!A2IF) zUcX%N4bQrNzF!GtOFV6{HCWGn`td|*dl{Sw3*iwsjXVp<=k-QPRZ#MXy?83O2%I0M zUjA{Z0J=ry4{iu%LqxpODJ9t=h<(ptC5`i2;*(FBvEQW)cNwPpc~$+Z}-T`q%8 zA1ywBt0hC{WI>1pV9>YO?}HT*aN7&6Y-rzsQx z>utwJBDnA29tnG|UR@1iyQ$ft(9h9iHc#j{hkdNrD}T<(=fciQNiG36KX;p4l`2F3 z$d)MMf=*U3u>Vr1i}B8cebFw~KhOtpDYWw4q4$}fR#z3(HJA?J^-gaiH>$v~Q%3l= zOe-+VQm*%(oq#wptF9b!py|@W4I|8ZK)Y@Dz^G{-@Tpu1e2e?P{~p&1YyL*-=7*|* zk!{d14RxMT%zXBXw_;&;Hud1|Jj{1FwiQSfTn5K0`)Mxytbwl|PpbL3;T-UT@1v8= zrO+xFds6gw1&Gp0`A`?3A0eYKp~bEN%)PyCyk#Jxk9OJ8O&__6ZVxmx{v-h-aN1c} zU>#N?Voi+p|5+f(`V*CbHU?-ncnET)fU+6)|(3#J}hR0m7=ac{kKtU zPA(YSuoc@cRsigUlx~x~wV)xV{3;XqCVsk|1h(gx%My{o&S=>Ij3Jb3U5%Y^gr?;C z-{Zxg7|QlYjSANx!=p6XHyiN&Prq&=TM0L0_Wyh+UXT5a^sg@RmGJkC){=E@6%?F4 zK#^?q8Qx@tYC!i#U~uvJ>in$}q6_8i-_#&4G2QKqSzH~EkA&LMJgfmj{-<_Sn}v`l zRGQ>vk_(L@r8E{dP=C4YWoNev`iTbKybaBbghkciQz<%$kR9Rl+L0mz+#~s;KH>G3 zy!n8wZ#)6O{NnA=l?-TC;PiVn_8-oL>ZTrBG32?rwy%DTg_`~&RPRx*9~-8ve()Xv zB;-n+CY|zu(ZT($xltk*Ix3dan!fw?mqA7Ldb9F&xy582ag?xmlYXOfmLnak@wtjz%k75qTD4FB#FOW9Fr5EiN@N+ zWIq9UUn5d)*An2`oK@B|=7cb%+8|(@+GF4?U3s)^;^lc#$Oy2DYv9 z7#_hsQ&{*TI^+oJX{Ko&GE;{VLF_EL=QtGY2e}iLAFXk+U3s_~+R&^zV%O zNDDQjBgdxT2&EVHtM-&#?2pWWraNlRnv^7%NU^=(gFgJyPfDk!4`u?b1Iyub)XP>s zt517UkPVr#+qV)JXV3BP8k>aA zcgY?p%snvORj`ZgI_5iloV?-ASO&=?ms2B$(T^l|DYZ+d2B=${eNE4k|2e)EcwC3& zUX376*d;%e{wG>2X+&+Kbt6D(RrYQ4EfQ$Q-pr;%z1}nh=a1n^0=&4TZWWN00lf~g z#4Ch$aN&Q9#@kBdW)q6W-7ts7cf0|PCIi@fkn=|V!KnDprf(hP(z_77kMEX3o=u2*neSKoT4)rK|KO9k?Q`AD&+G8==U59f%{w^EOVbDr~k;u z-g9*%h!o;KAhVumJe1M=Yj=kn{o+qdzdWQgk3(xLqv~= zhF@Aayq5Er{`Dsk6zilClg5H!CFOIb0Vn1tFgFqXQO_>5G`GCvngkTTncs7s$OUny zuc;QutD%d`u)EWT`vU=|UH9)a!|Rklw*sy#gm4)XeLYc6HQn+sdm|P^SHFk!^~J(< z_3@9a73tvmc$e%Xa+Kp5HJjPjlE7H(PM>aZ83+>`?oc#hzRC*^y`E=TAUC&LY z_(C{~JKeEwuA|v5p-Y6qtdF#`$Z>2f5Gc~X{YIsDSvQSz3h4gj5F-@fzFUB4fFxvMkM@C9zFXI}v%rUst0g8gn6i z`jZmd0A3GyrNVQ5*uP;T*rHh&{!AC;PM@xW4Kw%ik77%q z?zpe=P72H)S+G~lvrK{z>y+M?-N#M(zojcyN&&)iWGK zzGrh1S1{JIU+nB>_ zKJQNGerrB;6z5#dm1+rG`5^T2&Qe~q7#@0GpfF#{`?dP_^Rpo_>t$WR2!fj z*pJVZ9F?=%Olm-KTsgj#oeWpBmwYaqoB#oj>kH?ebb!J>Q%BL*9ys;Zgg0SF8KhqF zyPWhH^@<{kwAQI)7_hFYb+o92;hpa&zaW2z$(x$%(~+)!kK5beyQls&@{`VNIoQqq z|M7MgY_0eHE`qfPUcz~fGAQ@|ew%9x`QpD^>3(9Lx|wj$O!R0rY+8pOwrNwc5m z6*A$;y)x^g+Bu+cUTuFL2j*^Znd}LB@(I|bxuRoA(qT`n&>SW9-86VYvhSh}SjJr6 ziqRt%-oE0i?rzC}7|p{H4S1berg^{5@FRoXPID7$&Iu5jb2)fRv<~)!p4n#ET?=Au zl0|<;TL1l8!td5L4^lmx7YUcy$gKkb-JsKJg00Z-PRLT8Tme4Q&s{A1aQ~#V-8az* z`z%+Af1Y1!gT@`Nt~=e%0Q*_titW+)kXkqJShuGZ@r93Af6)sbYwUWRy4Loj!%_=wf8&0 zojeuL__zD`neiCja(!TcI&A}-;q<46Ia^BjXK^yo@-j@^Es-aSZ4H~8qQo> zP=8i}{Jp0;&Wtx5bqUa&MYZ@8nufTXFbcGMJSQ zKk#u!p0`e%|M#bbK&8@Bc=^YY1)o4Z z=6G%EgiAJjRLOKu!(2sc72&zS%rc;%=+0&SQVah6D$f$d`=Lg7`jaU7NnZ*+OnQlP zG)dd}1$v%JP#jTcB?%OPLZsaOFw~#Z-qNezkSY52{Q{I^c`J4M!KH5O6MIlC6q?<< za?Y<02-kPltk%@P_85zoJ4W!id!X}y?vEOvnqJhmMIURxde2s6F6JI`uQ}|-b-ZPT zXSth{1E-{aUEhX0zGpEuS&A>)z&B@?0vYd@!PuWJMm4 z2)Duchw*U#Z1A`6ra%}@-L-A~Y90vZH!t|jp+E7x_L?@XuL_%LwwGx#U{CmsdlIhE zF!@tKu?+qA>O&?%3NHz8_Ke&&`fI3>EJEnnP&yG8fo{+$d?)>R@>KPy(J!{VO z4Rci{pQtcCjR)xkwXB`U`;zSOzjNVvE+}=_{Ln!^aOpvj@t?TAmsU!SD^rVyN0o9~ z7wS;2d0?;RzMsg&OMVxe*`Ed@M`hoIbP`}e#dCIinh00y{+ycGhW;t-bPnCO5ul)D zWIQh%31Yk-b9Fw(g8Qr%$90@1nBP`_o!>FQE!f%PJ%R3f44=<{~Q=P(5Z=>6iND=+bxxt=Mc7o{lM;c2wO?s;PS(L z^b`Na^a=DGr8V0Y>c+tfkFS+w?pSwlNoY|%&xS7&pWSs!F`r55{89Oz=^#~M_W%k; z!5}A_hZ21zsUvf81HCzLRFz*d5|F1Fm1r8vngjJ~HOEub(8o#B;bMp9rRB(7byz6` zT?fGtf8-{pstl1=)N-*tY`i<)lnD|`t`|!1`sKfBtj|S_I;`R1=|)`rs6q1j0YhmzIolpU#6IwsOX8ddLZTW-D?hryHg|y=diL zN8McAOd#bt&J`@`?)iPH1=IX|`^eWBP^|w}qy2pf^jjT0;2)R|VkWZ(L=;iqd)Q#L z{#hQ3Oci@MBDY?!mdvqc=E9NMus82=fmc#CH_owBWbwD(k-~Hon6^v5Mn5{5jf5=^5`4Gt0WF zKl(uedBoGzQGb17ED|UhCN2MSZ1jq~GZ$$ZgzxDU|VMU@}d1u8d0P8Qy^seWv3^h<=PblCJ|{FTOR$22of^rKbWIcBR@r7-$cTm z^1UV4=lV4`h#ZHeC+CC8%#(pfU?M=*I0=-_zbq1^#~dg+9>Zw2EVxm4=yW{x*?iJ^ zUw*AlMITbq_OqVxK&idq`hErL<-s3Eyo^*vMmNkq51#le+s8^Fer#gK0Hj1f7_ghs>|%!kHDNlxnYLV0fh_XUmZd zS!HO!31|RaZ-Zu+mRzt-7a7QYp9>iqPj(+ND}ei}6K9VZq3`*+fP801DLkZWS29I? zrMsd#Ib?wZ2mhAvD*Pyfdygo~mIBc?od0)P>`WU(+)|=Gc&Gx5EWOI_*tf%>4NJCZ zdmxieOqpGvFfT3f(7`x=RfdLr`~M$&g7QgbY%yc_||gJezFzU@#ZB z`emp8nv-Bl>z#;jXBq5yIbrj;3eQW&u!%Sn2+CT=EOY88SmDBf*jDNd@koxgE|C1l@v0u5SrD^K8Ih* z21C2Y`}kAv`CLA{lhz~^Ms`_WDQb@Zqd<1YA)LFgc6}ePL7k?ygR0n1^pR}RzG?Oi z#oU1%i#EdcIdF0M!Xb5pbztJPW56q=965jKOjYCkp=atOZEpd5+H=H#CVZ}IYrSE23fQOpqtA+ zGl%&M1`2^X22w=Kb(F18#QJh8O{b&#WGuLj#fN8`WrNd7?vdJqxNo57Ui3j`1#S(%@kEkJx!9o=73 z2wv5XxcQ%-wtX~Y>rvn8!BbRJrVs1O|_XZo`YgmnGz3j}laTx6SNpI& z34Ow2M-7V8fvQ@1y^{m;iC>DXU&H+4@k}+rW#VU`tZuo{*;ork9xuvlgfN#bp6mRN z8O&*mWHyyF%Y(K1bPE$CGEmX(O=Kh1VLoyiZ;WaW_Hzq=-Cz0w9XT_D#~Lb;pYt$h z^G7wX#G9t;x0Zs^Qs*s0I+ zeB87IV`Ll+B3QC82e{af4|PB{w5%2GO-F#$qs)RojoH9{L3OU2GYYQu#a(X^iU+By zJ}0`z(&34BV?WDc1l)-sJm8-s!f2==TQJT~YM2h+^4^mH?6i?CMyT5@7VsMI3qXHi z+rjYzIX%0`4|n@_pEJU2_?%KW_a@_9JLsl1uf91~3$`h#S9L#s z0Dt4jPaH~vFdO-Fb2WDm7RzFi6I)RiU9x^FNvrdu>kDif^I3|~Y{I|mb^sbmE8t~?HW<(n( zCrai;@5a2DsGWycW5XfbYw%4e`jlG^{3NkSkdTY%`BBON^H?-qUnG4Egq2KIi*sTT znBzqMu8%q&u2-2=&9@~%b!70JKg4MGXxO0$nAbs3vfH`Hl?09aEH@6j#{)yCMVKt^ zXZ;3JClbx#;ri*?Ycp8|(C1S;U|WFt;Ha`E6UeU~vkE=^GapU!-6j&CKa!kN^s53+Dqvt-zuc|LAd#jIpY)%?OUYyriTK94P z=+6PGmEMlqoY-HAv=RvA$OZW_)~%e)Z207}!sms0aoQkjGa8%|$}mdOMA(qP*{|UB zBl#>yjVUDalw?33XUdd$NipoWonx)wRt$g3G_BuKXF@t}%s29b4478fUtiW(1!TUC zRTbwtI8GMU&G-+mF{p**InIgH(&#pMxG_iiLfNbOM4|$2$;Y zoX=F^9C0MYYT-dG1YUjec^4DrK&}ccyH;j{c*v(gQRi&9e?3H54fzyXNrG>-wo-t> z>cf~1&RuJAzr3$SZt?gZvk7Z`e2%({%GR!T!=S$P4)*j$kdBHd`7+!NKX>eY^*yQ* zI?20ZX-bMfP%ogku^sy^SF)%x(dYlIbl@6K3$Dk)gtE6%mGH-XB4TUl6A(ChBA1eC z;cl7oFdJhHtf=*0>~F$3i4{kXdwn$+Dw-DQ+Yv$DVVus^KM#BgWJ0RBu+O6nUnRTp z;K^gMC8b>_7aVqm{*|`wdbu{GIWm(oN2W+TBo0hGT8 z)pk7yhaXB|!@VcbS5n01%DkQor*z*4*4v>bR z&QX2}!aQrC2;-TeBzPYeU8?*g9;U<1(@*az1g7t#DV6$s^h2(^v=zX7q97LisTt%S zq$DsuI+hRdl)D+Hm2iD5F|*LY`*BxVy$@$_64;i=61FeI!(6t%v>NI+zKnHIZE(R^ z!k=vDJF%fw&{GDq9!4YYMlcth_S6wg=1kZ;$Iv4uPJmv^6~2=W75^NU0jHi2tAuxz zfq~`6BlXrqDD$=WxY?fj&)=mIsL#u-R^z(6dN{**MluJsYae;1^_vJ+g_+*n{EhxJ z2rY6@%>|C;vKu1Sd9a{&{kH(}oz5LL=MwfwguHxV=|J;5i2riN#V(cz%|TAqf&m#& z{j0GGC`RDk2-nye6vvu&aTVmA1p4;Pqyw@SW09urM|``O+X2Bper` z3$LOcaK)lluY?RkR@VsL$I{_s?#)ee+_zA;H&I5jWJCJjo2Hz@1mq`A9xN6m!OyLP zk9>Pd!OC`XuTVz`WacO+%3;1|-2Q&GvX6-%@xx_H9@n||7p1eg9P{9fhNmFaN2YBz~xaB zG|VrbJHuRw`FAOkVy|ld`F&f!&?TYo5=$+Z>9j~1hTFJ?q)s@uRk>F|!{9Ui{MR3$ql11h75g2} z7IJ8|k}~1r8s!i@@`T>+h`VjRg&aWC=0@Lrjke^#qi=>^IM7790>lY^RQdG7`}f?IOcu05qNl+tj6rC zK=`mNvkLO6RbI8l>ND0uDfNLhy^S##)5`ufJ6;F-vz?RP-f4q#tQWkvu|MAA{!Z2o zb*lc>a|)h#UUt4tHMpBZ1`&JW9)IjVeim(b{s;S+*3X~#WO$M=xBF7pYvk(OfV*dF zdg8(Pj6;1N?iV}nn6*9#K%L8{-|zNgJ$zq9oO%995!5nR8>myoL+h#E@8nP~yyWL# z#uJqQ3px4&moZ1d?xd6D6DQ=XFEDT(L;lnkGNng`2{m@1zFS3I=Dl-uTUYYI#Q3k(>uQ|K zTm?$i&R)nT%|>02>uMdV{Al#N>L9KKu) z*|mF)zd$`6zeM4gW6rhks@hYh6LZWL9(_JNYyba0|AE{g<(ENq@PPcQQ$Vd7^9xTV z-n-KE@9UTnO!u)Era}Gd8y$00WKhvmVg#;A5D4n(GqKBt-j=185zD1u{qEY#=Wlr+ zAoX&t=S>6bzSXcjk-HMi#)J)%G0!3yg6KMy_ta{k=u{)Ii zu^ys$CKw|{$DnI1|7w-b2RJd`;s4j53qBX*Qw0BP1p%-7gR+-e;frLQ{C5U-$X4|5 zIcI~jG3-9UxM3qfI6+2-vui zm~$tQUvmHD+2_;9rL8E_Iv(Ri^&)ul}omqB&0($-6b|Hyl*qyJavtmgMo4C z&A@;(`VAYtyQZqTfLMq9!0Me`*#A|3=k7s22zki*Eg$p8h)zF?xZ6EIxj4naay1+z z^SCEY=y||KO^S@&mN#&Aoj6?lA^`P4^??CBxNlBmGD%j7fO1WRp8iJ63v?LMd!CE) z0HQ@N{b~R>PCm{1`pyf6Vpi&3O1MF;Tg03tLk`TacIoS%Kz+>f8&-lrDd1h5t)TVFYBeNgh*wHe`N>seQnw1Yv8mdNyF9*U9+ZVGG zl~@=O*xPr|DhQ0jMBhG1NC2f~`k}IUH`K?js3^Jn!(s2@KkeUAp{|Ua`Rq&;WV*Sv zeb}7}`j__%I6(-6+|JDuq7Q&)=WJMRo$&>Ki6l?@#`h5Yp{gdX-wlLr+12fMj&<`+ z<>r>_A;5l7oWoroIfa{+{1L8k5TrD8Qrs6gcz1tF?n8ad_p~@J-<%NC&8OCvvUtLr zqB95kg;2~tZ1W<#!#v5rB#y&={%~NnN$0*^2>jB?mebWn?#CT}K>^JKc&NB=<;>Ms z5O?g_xrjd2ND}K;-X8S*Dtc`wSzyk+R=~4uDxtPn~WVAkJS{Mf@52@Fzu@CoGYek4M3b}8g>1>AXk^lbxHQ|-f-+2C~ zs$?tFj)efzUgo;G??J#=dyUEIS~Lj1Y~E2iin*Qt{9b*Rg!6(>H~(#X-}AvrvguD8QlzsxSD) z_OIZ4SbUnb-8&ljSig0hQe&a~t*j+^f&h+Q`;NUsKaA*;sMj2Skhe14b5aP`ix+%H z3VpXnL)g9tRe$C)|9yQIJ>@(V`kTsIMbmelO90hnkJG&l;gF#Iy^vT+0-sFza(cx$ zSgaH>kkyWWrv+XiT`}!&k4cB#VyY8_p1L-tZIR*AW`o?1@3CNT%;_%&&Ncq~_lX9B zIUy%f9`Zmrw2YIx|Mz*2`yOybU}Y!H`E&_*_ywo*9Q6JJN@o zL&&d)S??z5p-+LTmFfg{)IZ0^!l#=2Udd48C@Ozt8_bUf`K3)BSIkrU-}P2Mt9xfX zCmik@Xi~mL4oRRk)A?1^WO(#>8?)&?{9MwOjMQI4px2W<-{MU*d`S54qx5Yg_&#(i zI^2Rh);x<#M!Zo#XX?^#i@quEan0m8^g(CSf74|fN`U(!G3k3U^5E)XP3aKwfM`nw zPR>*&fL~Qr`9m&x6kTP6glv&fvNDRILP??_ zmA$g}-utxo%HDgAqCpZ#`5o`y=en-%U*`?ya(a0_kLPhb9`}b`wsZ#A&W&zoM&X>a zv+zn#Ao6wQZYUkELtk&t^%p@(4bb!G3hNo-Vz{9rCgCrZ1;lqa%iFD{Av5{N9rFAN z++PbP^HGQVVIp$>f|*fTWbBfGPqL5kqF!cK=Ga?&VYLq z*5l_weO{M>bdc)Afv0t#siAh)XR;qUU)xRoR6yToJe}PSuUe3CZYxFBKj`1KA|l1S zIrVhg)zTj990?v_W)r~<7)S`Kk`PUTNSoJdB8SqT+nv7W_;@8) z3DC6OzuN|0KFi$XU(>+AE6O9HsTmsAr#7Y-D`-^X6c1}k`t91?U0JO z$nu>UbSCCkz1`xE#r0r*Q~e#Q zcLEINhf|t+g~KC-zb$6Y$kjTL_{N2~6xJK|lV1)>0Qx2?4TtY(p!c(c&Owy`No3~( zK9Prl=_lQAV(f$6JxoJYQjiQ9>F<9F{=|7w@_?SE5^@AZe6xCx|E+a}R{7@^a!C_& zT%S*-!oxOJiM5*vuvKwMCfunI6fSr-*}P5y*|h|X5zMQ5MKh|tchvvSB#zMDn6u&=m$S;VTT$@7wY>bLF)33-P*q$fPS#3*(>VXI6mupi{ zckpIHhWvkiu(@o~+#Jvxk^Fj=1?z6rCI&?#AHUhq-&2?LeVge40bYAJG`MA? zf%nw4V1dd;Sm(ZB`T1=Id=xC8qK`q{75(-#E-ln4&1aNvpzc3?>c%+x#e8528Vk9l zgtV?Anzs_X(@u&$RgXIpR#gRX%0{XHiQlJk$n5J2N*NntQgFUUN(QKM;42hUj#6;eDRK=;nAY2~3}%mb8? zGCqRb)?+ad&0?kSba;6)U<=RhyB}_GKPiFW(EL%VV+ru+EOS*U@{9LBatSnhoCVr; z^rR6^=s)as+7K&@fC*ppIjPaJvOTwfpCOU8mvZ~4vVkO3y+sT0gJ`5?>XQE(sm-|1dv9rlls z;49f)@!;@0h`sNZk%jXs8+ga`vLOk~^91%aV&CND$7ig}YI#uQ7N!h;@=-fRUO0pUYF3b`%qu;D7b-JC}reE9Y( zk5;fQ6Gp^ZYx2QH;3!t=cFki98P>PaFK_ zwh4TbIueh+oPy^e*BkHXHUNEvS+=Zb4J>tZUMfgJJ)tq@#R%ehcw2C4K?idwmxo3f z{`x0_*drT%j<7JGI2LPf%8q^HQS}yEoO_$bB-6TJ&Isdj%%9SNLJ-dpA$o`YKw6*s z$>G@7ObONxBum5n;J^zK4U1-Y$E)4ka{~3Uw8M!hGjSlEMY`mD206$%$~I5lWWd4L z*_YWJxR3WFgpg20fY*yjMu*i{7z!6KPw$L@tOHCJmibcP9hK|K&KTy$%pA{DT}6Jz zJxu{$T}1sK z?ZW?8;Zm7wBGtNUj1gBxPV*$v2?ENwMDGhQ5GCjEF zi(yZ`QrNx;>_a8YMP{OY^-he-&;4G=x3X-%$c(zxJ{I;6o6>2x^ChbKv%xsLwd|a( zE5kmo%RN6Lg>sw^`Boi4AF^xVq2BxB84%X;wC?<+63`;nN_~I48rG{EKT06?PG5GK zV@9n6wjMHH5l6rHhfVv5R@Pi7nEGwN5#0{8d*7Q%VgK^=Y^~=Nj)|mG=@6W}Ivw9Ek+m)+@XcYmd(|V@~H2(8Ejo=;@^=9c*E#_9O5DlV^H?yr%h|LJs zJDWJElCzkTVY#=_wyyu5+j%g{{Tj;e(*!@W3yrkyG(+2GtMM}QS!9+cM0}CM|J&qY z;(c?u&=vAk?_oy?q{)fg9$&}4CdY{N3C#IqWw8E`TvZ9tb+uVt1!?fXCy*+{C;=$m z9W{TLMS$!-WttbU9wVu0?#_=yKFW1{F0EJj$fI2&aQrQVVabG~2bSqzC8krE_X+#y z0#<)K=JIe(D>p5vR|Nq_J^h8-3V`-?jMxzYRe#3}_Gz`rA@a^F z5T(lBdb%-!Im%I$3|%##U-9s(CVqYfe+geo=g?2n_)K3ywi7}xn+OcNtpDf!t^fV} zGb7D4?cGukC#_^!!F4iLxn5}KP~Cs`bK-BE77{3gu{{rd*C8jx@3PCAlH^pNbBMh3 z^>`W_k}o6MLH$mt_OvMt<}|nawzmwYqR!*NK38wdC6gU1`ADROzI!IJ1Qp>tFi|PJ z?DoDCh7|30Ln$hthdhGj*S$*EL#tPug1Y(e)-Xi$oPCmt8Q48-G zXJc;fuR`wTb05~NC8#@_XXUgp1#$XbA1<~wfm8o^!OVpUnBaNPvT~yaRvdOoZYU(c zHJOmRJ{iaZ;%_K&o*&K&wx@FQZ)4wDQ(I1f2{~4sLB2Xhm*U_F&o7guk123ji}Gh6 z`YY8gOQ@e9;GE@nMjcNS>Pak>?jCkZg{C1*fz&0ePZurk$sI!f#_jU_6r}=io4C@j zj^|wVzD6IVj(CU+<>=OXlnkj=)Y~>HxF5_#$AlXt!gT}ffTaw~qi?%BqK^8mdRMYq zCZ$A}dcjbamVq2>m%*P?F38KfVqhDqR19B#B^aFkmIJR%UsZs8u26=L^PT<`Kb$l z^a|~6+V3dfXx!akIvNMePStCcJu$G6*=(Wj6b;5sW*wi6Vu8b(Ds(0oxfOX5GhZm< z;PA>C?K*OkH#%a9wJ8(9>uthKZf&e@_EhYvlT8QnB!YfXUkcdTf0H|cGQ*V`#NA*tX3ODvoxy~4h zO1sAZ&Emqto4-(RrR_=lg0mFP6z{S23&VP!)iv`4*2@g~e8u)p(68^bIjHrt94@j5 zOWwtt09$?|AB%&T5c%b1>?*F$lDX%vuAmPd=iAT5U{48{g)S_RPP{*;0O z_vuZmz4=GRn_${LENvEfb&E+sFLzJ}bn#r`&H?moSvo~#YG;+gC9PM-Zy=AMhtc({ zFY5LG{k^#>*dH+pr-SN^tMm)VCs?Cx$r-3XJ+JjP{RZ;ghKtu6rk=(?7>C6ur2_hz zJdN14ujN4M8_M1V?^Lj38*%)~91m_OW7!mkf?(fYS)~NqIOu!%9`y@Zpx|!w_j=50 z$PA>ulhBEJ>IXw4zE5%f=PuxO^>Gpmw~UBYyJdi`y8dIH%p_?4oxa^8?+1llgUow1 zgWyflg*+bATU=!hR-xST1KP=l)~9czLdEB&Z#Dj8z-a5~px}To)P=GdcU+5w=QO2{ z#<31E?0@MS*-{1Pb`CG@%?*b;wa0CWPshW$q4>a!7b(!^o>t$u6ayBz4uS!JiSUU) zyR-Y$519P|BYGDj;jx1II5#owkDFmxRqe6B<1704sC@8knmd*4gf%=i%tLHF} z!99`WbLm<%+^wj4vD=CLEEJ2JA&Upf)cnGG2jYP8PLr~?d?*+&IF8co#sItTx6as1 z)Mf7;o=(Y02gCZk8E>$E>*n%f-nBFlE|1FdJ+V!PECgKYYUBUc>D`y7XYxQhUC8F^ z*Idv}CSx+Y77v`Yf=c@yMnPWwI9p9+4D7jpMuPSbm}%zwSg{ZTp`_Q|20spg;7@~r z`Yq9L`k`VF4)(Tb+w%=a!}#4F za0l1@7yTq|{aUzQ5Wbt|IHtq%ztxg^d6C2M?2ZjRTR!CQha@Oqok1g|Pfd;f%ICH` zM6Z!U-}=s^O?wPqw|`Mb5%qL?F8_Aej*Ww|^^Q-$zB%y6TKW3Ad?M7FJ#XLtmNiv`c24|8*&C0Xax2Ov|~?KZDyhI_BgRHd2- zpgiS$q2x>=obgkhpm~%B$Ns)t%I401JEI{|)yS*4EifXJi2B8f6HioJQBQK!Bh}FW+}+hL^7;gJ_|AQY&)ddx}*aNhGKUE5dmuZ<6m8w6(o-&|v2 z(T#i{jb10dGgAQ}i-L)d&(#2(*o~wZrw?GzqWvQ_p%p?Jxan%CEB^aB*sZ|iqU|6Y z%`5b7vaW)}_op5N52BCfn#aMv^WC5>vHwZ59rDQ3o1gY_OaNujdBQ4F_kWMiBUcGq z?QI3l^;=1%J&90Bty`KwfjYG4d$K9SxgZl@%tpZ!4b3}5M_9HCAYes0VCiQqSeJP* z@}i#9>HA^N6!A>RI#?*#fO#?-e9aER2IzZ}RJ$N_EFBoi9X{RP%7eqRUsfpe%fR|x z*wC0-D*7Cx_#R(EzfIN;`FlhJh|VtxZ`^~rm!(}lVu?CPJHTk87lQm^I4kag%_sx*A$!@Vb9)=jjt&R;Yq_PY1i3Guq;!&JiUy$ ze|>9|K{Uniaj5lOJnDN4VkyrW&}V~+@Zqn9`1hEf<8Zu>^Jpi^1T;$`PgP!+=guzr zDYYC@Z?Bg_hQ;8rp`brx+f$>=ewCd3S6K=b@?G%zs)$Qy@zB@?0AF_d^Y< z&nc|bKwuBM8?8tk_))L+9-=IS{IgFOy+otoo!VF7*O*s*#CvG{dO z?CWngroTtR>9qs6FnH$q)_{jy%oBgrTGYL4Or;QzV|Z)B zzZv^SwTZmz>&JY6esVORb2<*X#>)-QV?L;-kx(O*VI&Mnr?iovFU2sXi#Hd~lf&)L zNej^L)xIsL&2gp{R%48tQ)7xCyj$Y#ft%3~qoFiy>4CW*ml(ZyT#+*uaAucuBMHi~ zt=`=YO@hy^Wgu}DdU_PxM+W#(_Ce#mN10?v)ZRP+`_fnhI@j!TcXg1~Pdw+noPqiO@C*is(S~zel z2OL8#jq)HDR;xj?hFdrh=v!FM#VUq?h1_T32{!Z@Q;0>f(S{(`%e1Kc6wWV1+`8?v z^B^PkWLzLm7_4=D+ilm41#Ur}lg+IWU@?-NKR_7)*Dtl^>F0;RQK8_%f~a^1XUa6Y z@&R>F`suGVq;dXn#+!@?dB!}u7j!A9(4VKO`NQNa0l5$sO^OuZ@U{0uK-RH%AiN}8 zxMhUg9`&SMF-!Ez?f=En*Nz-l+Jvhc%uP^IU+y*^l7W0TVySmWF}K~i`*{)ewOee% zB>j8};HNUnHdhXE2d`3w>d>dd#QAiE;H4U9Yq5No@3DaWb<^$lm91bnc&3u7sS!TE z=()1Ew+s6r#8vdp`LOaT@}he<=9V;Xx6ge?Zu`_tb;h(T2$C&5vQEc(rkiT{_amNSi4hG(`T`8AhVyC+uf;vJoRSPcA7k(-zMv4QObduCYki_KXO2PbI;Cq zobxFq9W3roNdg~IDlPr{abO%==TVGYI_5c=yM^?5P;3|Gdh$v%_~uLBygiu(R^F1e zGC_%;YEtI8MM(g8@7T~WnRLkCW?ZFGMSi|1bvN&E%wd1N8YL)_4MgQtc4voCzoNVx z-`({ASkwy$*B|2g$8lVue~%i73HBCp9{GBx05TSRk9zBM!QSh=4y}D%pglE4dhzxEm_^<=S>iJdH%kmsFGyo` zmPewkH`xc@OSehRF1KT@Yj=a;ec-7maW;13>biYR(e_J4zx~*+YhSC8=OZn;NZkS>uXjzN-sS;IvT^Ab zxm@@tb6!ojB?u0U*$tYhBUgQZYxe_}A4umZ6n;p_gYV&Gyc3gw;9dBn+Vf`=w6=wc zt5pPn(!?kAmeD}WkLglr(@p~Y*3Sp>E71qwockp~Di}um7w9O(-b0x0)0OFDRk zslkswIs;%v@wM(>uL@vDV*VkO8-;ub@9-G(y&0W$4X|un%_YVc=1)iYTT%`08`rSLs;j{Ml;L zYt^XbInX|VTuWuvlUHs>LdTnksv*`OSR*l`*;R~y*&;>Nb0fjvG0N8Q34Oz}{tcH4 zkrTzP5jD|!KM~A|4!U^q#>0~|-sw9JkiQzU_YPxw6r7G!Hy>qw4~BfQe|BP`VNh1% zXuCY}%aeA>FFS^Vy+>f%NOlaQ)vSs>#=Kk?4x*EusDFF$N_t2c&*h_zX6I*7Z_va{ z=F$Bs8jc%ZoFGB|*;pex(HZnPB~!>ScfLd)7k{Sy;Fm4xoKXlD{Co`dZ&4A!-|LZ7>TzRHBMj^GE(=wEuBd6Rv8J>$Ro|KIOj4+|W#zRz$T5f*bKTnD)U z0rAfXi}t7kzOJ|yguY*)gql1_+MNGBN3YuCtEJ!4!SZZkuAV&l?K$sN*yJRD-LSf( zidQ^vCAVxfy5PFR%RtI~v>AA%hr2s>Tj9ZBpEsmkwP56|%cb;dUFDoqk zZ}@x#kd2FnGx%X%Z*ZG}@l+0!X<1UHEu!zZqn=AGH6ETOTs-?5>+F5M*0nUY%78U= zQTa$2@*9i!p5E(B1nq-k?_TK^!WF0QmQy^Dpl^`->k-yvWjD)MD1Jpk$`IdzLVF|x zdkk995Rkv_LPnNl5`=Yd-Na&kGVn$d9w(!YEXk_0#@VK`O{v;xp!31z$f+GV&4Yr!9t) zah~zO8!ni~(1ZCT2a;AOleU996&_bUcW zebp}| z5(wD4Q7?L9;^uzqfo`D`kh*>{QUmAq%trg(UqwAGm38eZ?GxN@JLh)3eVP5|>k24i z@o+OZMS$nW_Mg2QR}Rtf%|;8hWe_yFob<)63XYH2O5o`MJj|XJNn(8)ASkG<{JQ|O z)tsrdIk28DsN!E)CmF|-0r>`IQqgh0N%{KLcZ_D+d)l79*wJH~uLZhxY7gj-DV|L7Q zzG7%h$of1VQ3}l54eN@BtKf#*t#cMaxllH{hnGD!4;XFZI_r?%N9CB?d19~YFX+jXdOnIAv2+N8}%5 zS*u^=NQX|lnW|~pN2oJ!f0O;h3G)jI3h&YHKUfUHnSVrt z$T8oYk!f+^X*E0x7xra|tb^(>;&W@(9pFIq+PjXT25$OUsV?i3pr5?PtseVoE%lzi z*h_IfS#a~r1Jn)9){uu46{myT&*4cMaXdc@s6^Mr=Rn5mvXi^SQBWwRSO3y95;B|g z#F%lvEhnp}>E%Vgd%2XP6VA!4@5TEm#YbU3qt8|CO*9ZmW&2bjzdyo3h{6p0VXC9U z#8Y_g(mSpk&l!unnNNx#Hnx#awd_@TVGjMMTaF!FcThJuH(OZr6ML7A<5_j~2WXo0=k|jW1LcGX_(?zfe zSF<8Bv*6opTGLX26!>;F%0HDT9Rwek*Qu!&K*H(tc_+DISSs$gepodbPH-0zJk1I* z@8N*dl|wZUv3yHxFtiGSesv_DIh6)~D~FWB%eo=yEMGR9>xHYdX>M~AIWWZF^H?Fg z1=PlzYV-Ip=ljdE;mV0&I5-nfahan60#3|0Jgmihcz$;(ANgvWyPGcTsi^`X`9_Uo zu0bGu)P1NK{h0sWzRSw9_42HQk_<(;{^vD7_$HJ7V*uyPkFNNp@>jvr^w)LHrZrG@ z&YQECzWl%2!ER}$?2bCH3V8ZPjST-^z3+BdCsYHI@qNKx!j(Xz>CzQ_yACc-GF1_T2tJ5DEecjEhEXO zr-~tA?}XlIyAW`H<*(K|k`0`Fe0sb`f?&wVYcF*`B((2u_8KQig5?K}=Y{h_Aw}V< z?j1Jl6Gzo3-S3Zp06WIw#-wo2Vxe^0aY22aznY>Aa*8)83@mHbL*VGGxE~IDK|nl} z^5WiXFnA>>pS4BZ?bMa+cOkS9VA{_}xz-jAo8N7T<<21=Lr=uJGOilLmUrBZsBpgX z%k7=&0`j}g_aWmk0$inH0&fvVLSM;;;|tjTuDnEUV6`0%8Tq=I_d=6F`1<)H6r1sI zQeuLd7w0x}d*5xy zjHZGHMZXsn>NAZ_92KEQ4&Oox-!H#_9PsQm328%}Occ-7Y|R?#sjP|))2$SN|IgVB zSFIIL3sPbv5h{k_uE<4o%-@Qvs`it?x@YIqR3$f4DNM=k1a08CSjdB1*WW!E8i;mu z@6+Xgu8vOHKFd_#zpLbQ=VlS`sTs0J(xt;5@zZ}-Ns7SW>hgJsoB2>AuDSd7MkA13 zEHZpYjee2Zx7}68v*66(CDpk>%nLmgX6r|cdY#F$eK+sq0RwepM^;B35X~JZUkhu3 zfXwQVPRvJFrz}>Q!yMWm*T|MYO4RvqZ0%4SEd|wIhn0TjSArkendBme0-!n&6t|4) z)lYGku$Pqupv-4M%y+Vw9*i+|nM>xn#Ql)jY%R_rCrBfpzr>L{J7z#_Lz_ zH)H+8`sUR``y$X9FBoDyo(PPWlXy(qYA`>^PilX16TCcTVeO6jh~qc=MDwraf@vq` z&Nn{PDel=yJo7LIDw4vAx-r**!`NUWXco=p~T9RMn)WccT*fT9fzB^ftn263r{Wo>oA=VDxlqF8*EhKdFu5{Mo3) zXWnJ+6vWOrxu4Bzg2uP)CONu@AdGvld7icwD6E_O=@U>t7vRmMoBVcA%5gm$DE^{ zWJm@t@k@%&nK8Gp%EqKlVHn`HkRz`Q=3So~RhjccPPh)ausr(zGY@2?3!N?pwLQVM z^Q9R;m*yN4Ih_D6sD$F4;#{?8@TF%a@?8$N94#Eg`GEM_Ri=E>T*&kJUBc0p3?#L; ztN*9-+HHQU)sMLury_MDpI%7@+OMgPjk&PjOL)pljXoW&Xlc4re8?5LaFW6VeTP{^ zj=oC|av&c0?bWEuEKRqyJXu=>EJO3JE6hlUT}b)S-Gi^T)jS-#K07 zF{?cG$EWm0>8VZ1f$31aGacstxjYaEwhpa;t4x&!d(aQ`+=P<+=Dk`7zB_SAo3;-& zCkh`X9x#SR%kj>Nyz7OW^x~Z=u@_CCP98EB?NA5Q z6G2q1!N{k(q|fb1f$PA_#apJn$n|(}$(*Gv2g=P!`Z80|w?>Wj%~t+tirzuKrTjGq))NmH`G=GO%SIR_H|9s^{f?@g|A4vP;kTR|PITel*;AtH7|x+=E-VXR zU)+8-nR5*N%z^uJQdjq70FlWvoo1X1%nCe^<-q>w^~Xep66BaaJvCsiKHx7aJ}DZWaQ#dCP3%DELM8yTKFwg9L|PZoM3X9O;z;&@@Nztl|Ekt`*`+T zJRV#Q=5~hL<%DwJ%fIqhETa-Ghkg52xUU?Z8ZWG7Vt+%rTXk`dIdYY)WFk}^w!og* z)}x^;I8Pc4E4v%o4AgvYzUf1K4LeUB#C zak=_f&$b@imp7ZOXA8iXBW465YGLb+w^!&Q0qCjtDch=>p~yAFL|PVgbewt}tH`6} znIV5wNr5~7+iljx_&jx}tY6o+ zm1=?^oWHjeA;7x0{M z?#?YwJQo$Fe!a`ITMssrgFVIA$774%4%iVyUg^Fwn#-7rAzrP<;}(+un=W7b|K7lS zv4{iNh@P_D^DP;9x-Y1dKBAt_?CV>ip)#017u}VHIq@CSDwW1-CGhL)nY?i0 zY)IGfKYsFOGR)Rj-15Wg$+f9XHeeCg@7>#eg8Yq;>mtSwXO6lQ$DPVbJWn1^^>eH? zDuCEe+{yw)$lH|XxOPXg0sQ&eykyeKK&IuQRE<97OU;a{E{m1|9Zj&{Q`Ky!w!RKr zw<;m~i2W1mrGB7E)a}}!uY~n8O?&uF8bLJg?|FlJW8kS&C-TsA5~xV7?mjVVf?XQt zh_7k*KF(-9&O(2Mrr>wZ&jg%f0K8fEZ3T0WOCoRXH^2(*Bl0un>VT2{)kB^@%-@V| z8^0G-2fW9QBwQ%R9HEgCMxX5<_*0VTz%w2K9L+}W?;XrQ{y%lGy2;{ye zS%-WMwXEETjiLhJNb{%4O{{~)l+{i$x?&imW;XD$&xUdNP2Y|R zrzc3~kymbhap-s{oc2&R(6vN9MF+X&I$H^>D5q>Zd5hfch+9V;T`J+MSJCNAl^Tfa z4DM`2-?l&+>%+pfQrNR!?iy!$5xDqyOKc>S!@5B^Z-8J0R8t!d*n4%sc@6da=W(dt z{O5T{O>F*hcc89x`xeQ0Tz59DS0oF6SAe(A&)uy(1hANHtNB3}3#3H}htFrCALP6C z<8tKrH+nmHT#`c0pXDSUNq#GgAKD;sm&HEn)bxIvvIr0@F>~KO8UcbZy|;-d5xQ^c zFQ{NWVe)3}t#n-yguB1gh{L%r?+AU_jT1QMi#yIEi(K4l`XyC<)UQwm`w)9)V=7MjV?EAU+I2ht|In(EY>*ILM**00^_t<2IjGj*c zOXp;rw(w-+4Mg(DVLyrFg0uIY$!vI)tMIT6{m9GRB;WLw3Zao|oTvf&Gx4I%>_>u; zmy~Vn{b4#DPMxjptj~!9nL`67Jw@Z;%-V`6vFW*gpJlQRo zTjI#Mojq{bAvYhgY4SA-*l<1-WR~E8eZD;kIcXO)kgJ#X!%9Ym041!trFDJC0lmdC z))0kU)JB!_Z(WOk;?9bU^GYoU1o`r>Iu^r5n?2dmL-eUBR?Wt2RKU}xa!<0*Z%%S? zkm*Jo0r=bg0u%0|L}OWwXKmX4dEe;s5^nhYOTQSVO-$Mj3>Lvy%#7Nh12s@(q8SQU zr#~V$4`H{e0X=tbTc60<|9;*;l{SB>208VK{U#r#%8)zfVAD)f1*iJh7iYAp|M`9! zJo;NWq$-N%r?3O6HS5T03?(j$MF0MBEk`4<9bDu99^@2GTV&3~Vlv=}if z*D!Kc|9QS~`65-tKXu^wxvE3=WGT#DP=4at`9F?pYNlCZA|wcvs&Z=-LtM~<@%_({ zpQ9{a->Zq-p3Nv}xBDO9H^tP}GvYYd0v&sTXbhCASPDtbq24ZYW!>&+2*_;B%AQP1 zf;dgi`ZecL$Ro;ipjg?|s**Vs}xtiw-|@g3`xOZUZo&LlwLgJogPCqAG$qNg+> z77w4s*m=VXfzxsx1A1vhi2^z&jss=3gdj ze;)%Uu0A(elJJA)=>=UPMaZpParxmD>IYSN7Xm{iG3UnJwVAIu3iLV`8rp;3gQf!G z5w)gl81wBAjGGIB>^o~d)W}&1{~$neQYs#7-aVtVACH1imAg*PQcRx0^Z9CDFf z#z|3Mivx$}l_N@r!ys}@WN-I^KM*xZJWXg$0)p+gUoXTXfDQI{vFc;)pTou4CPROC z+ken_4|5bWv&r1HTTBEcLf5G;w`0LJHG$Wb1@lD8^c970o)*<@8!=X%06}C2%dV)W z!te2bXkW`>xJB|%g&*~VF>$V^)-%&AtwC$-NB5c)i9Q!`hljL$c z=${k`f2BZNnFk(<>JkSh>VPcwglv?45_AugDD`cH0(*)FyW2MA6#f#FRj5h@g(2H7 ziDj5epfdhPMmQO2FE*UAM?JIUC4=<{^hGY)**gc~ykRuqVJO$`Y z=1S~VlfkC?QIl0;JbY-GzIinn^WJro<${LlfIvRAWpsQ3_C^R>-gQla=W@q?>PL=( zMXGtD@2hn9MMx(|3Sl2{I(X-TULt&SyZ?ER8o8g+YNvkZ)B|Hk;rL_pm+sWutlED7 zeV-Y+FG%sc_LD5cY1AkOa+l2X1klek+N)C5;gAf+qu(8lZp#AJ-dC>zCO-fnk8rve zeUQb)TQ|lrZ>a9^;W_TJd2syf`t|n3d`RGV@j+6mA6)n>mgsRGkIh=_62m&3(c@LL z@HqPS&V)W}M;%_vaoORiYbEe;zSNSPITK_a7Zx4{iQn>J(?RlFtC|f8T zq&51F>!S|%g2>MRq7Sw3>F~E>(vESU%quP>Ow<758FL)^8Zi*yTX}<88v8Vdy{AIi z2~eQx>9?An1ShU6YQNQw1vdR40PM%D^S`tU%EH{71YO?kl{9F5uEV}!nFv1=1a;dm ze}`88;X@t%WGJ+cOn-i{90cPgXxYb5m+@Gxna=>{()HgxT*=~K?is{~?^c0t|ElHR zp+wMn8dU68jrBdp#wRyp%)vBzCvbf!0~&YsCdL=W!}Y$ap`%@KaKW3wXc={eZ{If2 z#lFslPO2COb8GbdT->E$W6lBtiT!=rC)2_Beu%lpKt8M)%;eE{WPvdq@l&i+K%n8v z<=}MmK{Yt19C?rPIoHq$`+@>6zeA#Wi>45!26^A74Htl1NQA6&P$k?acB?NjB48bM z{_#0I{JX8VXy|BFK}^Z5J(j4qOABxJ()nHu+@+t0=uZs7qVwV4k4*zm`TDfwHtN&g zX6a^e?JofxIy&p++(Ni$6JU4@b6mB`TBlFBPQ$)vV_zZOTJQ^&=NtE_0ijvC($=kd zAh~kX&KGmNzAHy?HK8AuS(9|3#RfSj|GXc$sFFhMjz-9@ljwOR*#eC=X5qocWl*js z_T`id@&N6fiDgjl6OnQ7>ZCp9F<)CK?~|;BgOxTHf1kpfB=MLc!;)mUm-*cls&j!^ zk9tT$yBs>kbDUp3&Vg$dK4kJG$nQ^7D5|=b3O_^mBq(s6+Qe(q@SHyv?#VqGSVXQc zVXtK}9p-6-PP1n|!hSl%+1wASFG|4kLu(kxVa)643eYXoC4i*Suy*|QMle~XpNcLh zMO`;1bZ2yfi`J{*uQ+cDG5?ZOf;mGC`zMkG1`9x-=Y6kI5^_LH4{E4)AvbjLb7V8> za|tKLdbv&(0^cxaKrlxRY*1ElDo5r(Ow6%~S5aATUnWENu46W|leH&&@2>&P=-tkU zw>bBj@eERS#J+;6S zJ7a8ryBgH&)HYq-;C$>Bk;O%|0%*&AHqM^d3ZpY@p4IiaVAsri!Ko@6EYmE8mJ(8d zMDth_{SnkZcU2}%qwi#m<9t{7FmfxEtlsNeUS()}V`e%t!2rhwwam zaaB-;^fk_9>Ro0&$Ctw2P7c@gutL;-pT6$3g!NagdvDoFIk2yAalACHg{go?L$6BH zA;~(u z1iB5%$oV?>_qJq0Pox2JaQ=Os_=AdiF;l1mjSI9geUEkaKR^HX_TQi1lkd&{D%K0G zhrv-9b1fRBcpuc$he6dXvJa}5^I2lwT1?`K=f>A}hsNHvfN9E_uh9M)>~onf#M^g3 zW<^tRR|o2sxF~qvg{DA*ZexWOEAkVbi5^sDz`6B)d#fGPS$s5dy>YoA9!SXqeqXzX z*KL2wrieopNb_ZN&@^YlM{`}qD|lUBrskC?picmC{x84V9v8x|*N>-4u^y8d_2wQJ zj0E0NPW4xqOZSKRv0W|tZirmJJWFWFfNN{)8Xr-&;?5c1$Q+gpZM}1OftNBt(53PN z<1^G<7SLLGvf;VAGS;z>1@|@1X(&eDxSRc#@7|t~nDfKrPA*yqO!^HYNyx+c+c|Sz z75(I0jk5R5L^DA;si#e+zW}cAZ>XO{uC_D?*wxf01A*?nM(TVllq`8(zQvyeq1WZc z=#W=q;XSlvZjlL#gY(r)n5)|NmV=SzH2U}6L?u2wUkD|26unI6Fz<}h?NK;Aa>ZL} zmpXrCgY?a{gVz)*AmY}+gFWClS<`zju!0vs+aoaO}66y{d@k!-r`vW9z!1*W{;YIrGboe1U{y1B+8{m-W?djbf80o)#^`s2y0s_+>T>Y5<+q0ohNZfIbY0toO;7UGT zr;{<_8knyW|MTVqo>MioKbBw-0a{VB7cd|v?+*!C?va2o;NA)~WJ&e>pM@ae+nuV&~!;z$^_Z34M9m8FW0 z+3MBn2h|1x)BN)i>pnbz0451>5n}7^)>0vN0@U?_x0|P zhBR0+Z%&T=n+to+hOdQ3(fz30~<pXaS za64)p^*mnrU)HOSHGnM*{pV%tVmNTqeBoyt=BizjiQmw|dB)otUq`)5fx$`k`AmNi z$OQ`1-Qz(2z`IY4f*I6{y|{>*Z-3VGhkHxAsRD+k9zOZ6LJF~D!@fbF4t zu!`4o9>*M$Z*K0Vj_~k#7~Wv_^J+&L2K6cRZQE{_L#Zw2M?| z9MDS~YP^Oz-n+l(sLg(bgGut3X=i#oJUi2G-8_Z5@$$F@a+X*)wyq#?{3LQ1{JM`8 zWTFqC+b~E3`+8kxxIT*f4FtZ<9ra@rsLPH$Lk=4m@aX!BOBu*hUHim+2}KC}InY#2WSIsRzJ~C17`}sKH4;Y+%yU$Tyqwt>9|9${v-%(Fv!J@1 z@UE6G0Mu!OE>NkXpH*q@u`A}hDSgVDK8=1oZT3q)FK75d?(MS*ACXIM#PGYZ>4+cL zUmvpDSAss8I+@oqoY>DaI{fY}OFZ1>edpX!`5x|ajr@Ofy>~p-@%#Tzh(skT5h0@x9*fclG(>cl-TyZs$18>zvnl zo!9GmUDxAre>7f|NrW7W>SuQzEk z1&G%!Ig|_pfXU@M{M7VGAh|lXb=Ecs_&2O0PJT^+Oha|buGS0G!LuP0o}i!%Y|3!|BFJ!1JT`9g}_nu$1^n z(kh~kl0AW*26IaX-HLS$OmpDXJk_>6`hE+vI8xbS@$+wbta-?w}Z zNZ4X6&)~V+T?gd$_nP!Tp)^aFU7j=&;7surx9!(^Nk*T z6pDFTYRJ9ia+P!BSIPeOyuYt!9@*79x6=SVIuSDRvKhcivM!>DTq64xtqvW9Tv)zN zqp*bM_XUUGkV$!5kN$a`T+UO6ZaAjH^?g5uo3F%y^FG6Sb8G_;9qKw=o|_EP`}j`} zIbtrVYAjpk5^`6Q4m=?L&<@rsS9CTqUO~heJE2na2hEaPm%Q<#5=@@PS^M71g4aW7 zdjzdePk2ITG?*UO8&^L`AII_F=%1Y3tq`4PA9^Ni+HFAe-MflGIub*cwU_@2r8x zP1Rzu$gz2r#dt++s0R)oh;7gpssZY;G>+fM#}cD?*UcsW4(``WkN3{^Lk!8xUfI43 zIAOr`DorvSd=Jniv_<6MoF(i`(+1{K=(UL!cr=02^i9f%h#Ke^aMY(oz0!V}yEhu# z8(^Te@yC^xLh#jxO3wY*-=_(V4L*YJH)7xRDq9(7XMB6J)7=km(uEJQwHLsFiBDfg zF;`Q^a4Joosv0);%qOXAIMT>g1emmwvr#D0ibpCt41C%`nDh-+;n}gkPxa_#4V?iPAM zbv_Ed4@o?rJrD`Ml`_V3k>fXPP5k*Z`uPaSPH;2(Cc@Ke?g>|FGU4G@#-Eo1uzx)D zqdVada(1dc*pIKIfbcb~b;3hAkQO1)^cXosU61&Ke@x@+Pnq?r>!-qfqMjeuBhX*a zEx39kCk8Z{gxbXW%Aq8M!1`Gd=D$x|H4}YZ41*o5H+R>jfzZd76f+tX$p3%$p&skY z>g&o+5?hFs}PQ5O?&>f1-5KseMj(wC7wbEbN5KoYHB|B zz&BboEtO-9V4>%|(~sB5OZ3Oz2@sXT32Vj2;(euHepT`M`-}Z>PqYp$_ESr+~|~d0=@aZ~o zLPOw5nHD^s$QdeG5PQ~u%Y=ZM8RjxN8-3dK)-?k7r)s~xzSsF)z2I)t8w#9GG1nw@$CTfkm!25)$0?Kowv+&-WI&GACSI zW9KShRQ|`Av-mzU)nc!_W6p+vWGS5uUJqzKE;5@KP!7(__Tz!%@esY0pmm8f6mkcP zWaT|@9dF~zy&wHn>z!^-H*cZO-rthmDL(^D9!4~(Y$ES~=;N|6T`GJIV|+1kJpq!H zTO_8*Bj8TBO_L(dy$;SqXLvUSf`RKy?82cy*j;nzogL1r$trmAM%FW7pmmtI@@OuE z2hUh2T@D2=|JVB{uV;dTYf!0ZD)KBNy>4v~`Ik_R~d5$F7=1Kon_X-P8f} zU6qyX@kLJH+3UCTG0+PZ*ff_OK8ymBiR<(%*q?0QI9W(~6#HjPyTse_vf)}{W8B0& z)T>3@^u28x2>ZovMfA~zfXWu}PSp>b=gLp8oXJ8>lkVfQgx_=FTAtI|DdbPO=Kq%A zmMMl{b@#5?XW;;(j%>p!N$|OnL?Ob(6Mp}m6naM-0Yf*!+Czy#Kvpy|?~Ye6?4y?0x9a6zXZ?2YcsK4v`H}`g?trSYlQrrodVig3<4l9` zLvxPd&*Pzn@5-VtRUo_}*3(mF3W1g2kt_m#(Ifn`U{O|K>h zb?}!QZLTGQmh#eV8SK*xD{eBX>&AfDLbjWp8qVVntRIzciGrQR)}A=($bb9MuKy*0 zigPAN%HQ=)ld8m=ul57oDNPV9>BvfaCk({svoZp%heP@$-RyT2p)izrFmc>G2To4f zelUSEXIw5TFFmRXA;Nw6fuv3Q^Wmm;R5ntTc>Y)TEHSN6?Es+4k zx+{+a7o#u_EY^^8F#?J?e`o!GXb@Z7{KZ}r3tY0L-)>qbL0(mE4Rdl5@S60HNT8q4 zcfeZ|LgV35wntKLMKr_?uDG8W4~2{<7nLFHSdiRPVe8JB1n#%zN;3Dw!DETVovYaY z`KUSdi4c7Z1@^yW|Ko3CcynIxfpaX-2TtbH65*VYhwEFuO&Yk5Sf9FfFBVovvMC%< zKbdgMyT&Xp9S*Kjxh^B0!pw1dy?g+DC%+;i?XbVov9K^NIob_Bf>@4*+9UUc_-q(= zekox2+IW{6bDcL6)wK$0{yg3aGwSrheqBw_*sNv{8I2r#+sMgFOjRJ)Y;7AuTn@kC zAfqAH$;?|;%iIicK;2kC`mG)LsNOoa=$X=>E%LsevljaI{%mhJbz!EzBNcc9GvbL> zF-OXmX|P4R1Zb&R?YuE|e&OHGar{N_irFOgx!cFZ>?V?-uWNT)>!TR> zoy#d>k9t>=jo??rU;06a%{1Exb40$Lo8}cZY=e(#78PN{RS=<^<3Nsl{R?k@c=T*m z0O9<}QXP^C5H3*o>BC}-zQLi7{EPczV zJ{dUWuTiTaXD2|9Ia{A911yEc#nulL0?dYx?V-;Ab}dE~lMP&7u1I+-M&`hZqLxbR z@mh$<7fX1F-`CD-5pE3$^kdoAh#O?)K;f0s-N)0>r>Q1ua?msxIDT?HYDNFpX|a9H z>&UmeY4zIvJ?dDW9&nOh4x9pF0+QXIRgstRn(!_&UjOb#rdxWIc0i$Y5_?}P&e@*i zDtM9SgPH%699jkBO>KSV9TM+`h1dJGuk1#@VpPPNW~M&O=W3o+W2yj}iwt*)j@H44 zl(fC+E^lFv?h}@E-8M)mD=2K4DgSpn&+YQ`uqe(?1XqnttCWNOohR9B_K|R(Gf7)$ zIvvugel|YsYzHc$kw#vu8~1&bCtC?>gx1ex2aeF?fF!MNgFW`OSK`A}T9D(MZhtjI zDJ2=aIo)5fa$$bd6kT!DuSOU)7v%K2lm~BB$L4%cx8;)2KWO};5Gbu)@hk1ees*1+ zzampIT%!^r3Ap$l-$Z?5@D=o57yQZ=%)|Lsr<|Q_Zw}m%9UC?uDuFZdMbWazGt5ij zQjW*D&#Ilkag!(MV0zL)RzxHp6fC~V-q=?SODwiV4FmD;x=vj zIjT2y$W2pgT8${zNABEui^-SxI`~Ag+o|A2F%%m}rZ>@}4m;OEY~%*&H#&-#HfPZH zO0K&rBRdOJ)nab@E+VHacjGAgW7IX(-1_?ET^7g^-F>Emb8Xt#q`jYzFP%^6`hgew zABx6wF)FBku)Ll<E}wXK9YU`^-wJ5N_ajZABI@G&pojW=VQn98D){nvde1Z zR!k+h-~ZV_A>96NyJNx6uS_oEIx2xGsd^v-Ue-(B*|5hPBXIc5d8-;KB-!RpoTvty zPYT!1(&M~IwsCYTp$NPfXth@E{3tw1@nTBkzc`{Tcl+{!(zt96ov#`>tPQnFRQs zRD)r^`$m0hAxJO@h?;$_hh&MqxV7wN5Rh>oA7?CrcajaiYMOB_d{uzV9OuswQ``e~ z=IIdSZO(b7z7F=*{Hh7Z`QNmxT>DYv^fo&jFd7~uIFQpCR6IyPgao?Fnpiu`vLn(xU5E6!kf?vrnc*onF95&+i z9gYxcC)WVSvhLsiEBp?)kSg2<&hz{uPm`)aTl+!JMHq!G(XM0r z2V0=srsP5R+x9~I_(iV6fS;wvrr=yy9uNh)n%QUf*5AO2({MV=jR7|RLNIrHD8suO|& z=%u|^L|vB*K_7hwtnvau!)L{E|Cca8L#qCB!a$(d(0j*!0q5?=S*A{urGd4ov?AA8 z)N9>2dHlHwa&z6@CX|n~0;R3D*@nidk<&(9d}sCe(b?UjXLqCWZmH+KH$S@ zB|0Y_1VV00gC52Sus^W+^KI2&`0h?D^kFp=N-jC|UG4Sl}n> zpqOx~{zOnD^avj-Bx;EOixA#!72Y?PJDtC|@;ezes5G^?v|hk`nPu#^9S``x-%TE5 zm}yJY_Gv2ZUOet01<;6Nz!ej?yp`yz>Vl!-efLt~F&}W$+&>X6;SaeA zOxf2Hk*^_qPL9?h7Zx8_9lRx<3=!-P$`4Hh17%7a^nFYQ0EP$d#n zTvQz&sE2^q?VRyC>XZooFw*z*fAia_Q>aKd^hjd(|XIn#m0WZ$<0r{L&uL+`sZ)c#lE+aGA4I^0;B=*7U^-Cn65rVNivX2~YhS)!O@(Rh zf_1fMT>qw&OTWi;+vR$x-_?roP~4TC(JG977=ab9dv}ZB$`|JB(bjN?x0t|@J14U0W7AUKSwoKGFJi7|i5c%F|Q3rO>9xt7k=QPl5U2`%P zY&bnxH!=6Ft?6Kfxmpw0)2?5VVU=~(v_ z4zC=p3xjP6>w>Vc1W^8TH$sL4ed2#!_wTK$-({_zG*K{jG=d0nW1!;4`EM1au|VO? zZ6WnL9!NYhr>|q4-KyxE!E>p&f8P^1UEXfBm$Betl}5XIFd0%N)=Q`4@%M3RZ_}l; zTKMv9U&L}@>7W0P2lXBXmh+biVDz$ta?0%jD10lG#BmJ!_DfXb1=g{U^P(a9DO&^N z^xAp%q!)l@9_uc7?g(f-@{@p?47rH^eINgKoc#TsRUbcKlpP6!<%>xiRYs}*_Rrt< z_4jlB{k{DC{ghG*QsfS&f(YNsloDaoNBr5Ze_wZ1{~b3^a}3N1>o&?G*ZlA2|NFlG zKJV{w`}g(!eoue5p=zsLXg`$gX9e}BjMAS*epd*F8n1n&M4Z|RW_o%ip@+Clc8 z^GiNVJRo)Uyoda*Kj*uI+HXhWuy4WxE*y4diT{q1zuWtJU1^~Ao2- zU_5L~FLe!d6ZBTMHSZ<>r{Y zM*Z>6a{~5qnB#cfM8X2OlPhwpr9aT8NzU+ZpLK5Q6@kTmf8EL6c-S98@QGzL9DE-6GkV|202+d3 zT@wQ2=w_LIk#|glm6cYBhTc4o$t_RPG{Cx2(4+QLCDu2h+RSChQC1etHWH~$2M%SU za(`TRZwy_R7)!~6^7}raW(G-Mn&W;_h$$POvTIU>0{e;~&&dnfazJOPC3ROoE|yr>{fI{Ag&+1|AAy#4cHK`u3mAg8j+S6M){5X(rcpqW zFX{wkol?_ro)8@-^=VoK^$WJro}|J#u;FdvoT^+0o?Zl3-^Ar1H&)6z9oLDCZwZ#8 zw5C8+xwCp8qzFi|l21oY7sIl{L#4x~%0P8N^~!$qdoyvAuZLFtd-!x~i`aL07;fjrKqk5OKAm3>ldm|A}7Zzx`{C(ZQFn&++&5!ZUjK zpt=D1vqXHii%a08#A=AUN-Id8k~y1NQVLTIG_TTdzVpBRmIpt+__t?vAy@j>K&^&rB^*1W#kodP1V5=~IEAVs;gQt#dF4GZupQv( zy<>^_Q2fJUA%~GeMn&6Dc|8`23<%Ee7bu0`h{Ysh@=RbH)h-OextCFct>?+$M4mLlJ#_m7y7{dJWf&TDqE~s44Pl5o?aNOfarP+8t&6Y04=hv zzqSit?iD91Kl&>+DPn>eP!Am=Yi`WO_7V9=0w2_Zac*3#n|Ws6AaHe&N4j#5&joK^*fw?%1hpg(_KP?H0V3-Sy4 zqV5)>uZNYId~A}j0`z=10*I1=VZx?ZyWTz&MsHSr^1rpK!TBYRW5dg{^XCF8-k?QQB)&6b(e9J`u?ZfnegN)TQ7Q0vp*r5*#Ox`;q@Zbh#oO2=1phH;;J1t+SuT zJRYP2!|fu<`;_spJK%$cD%M9T7sow~SyQ0SiBnG{I|;bSIesU)2EnE0e1+ZX(RkeM ze^ZYA`K>SFnirjXfuHTXsPQ4xk=pECCgq5RiLW8bcQNPFkXJutZq^^`$vEq-(*aOr zk}Sc+;13>0jM^-H{b4V!OCBY80(`I&{oMK(^Va1ZsRuHWVdr%07a7d0o~s{ywXub{ zO$Vnu#h0S6@?BSG-Wv&CT#t?^UG@ip8*d3z!f<^%%O~T@p9c)@#nQ9TH(skHU0rfJ z9u&=+sLshC*VO5!=Y$33Aa{kEQ;8(Pxmdkzn{OfT?R%dI&F>`ec6lO^g7b{NH!UQS zvuP0aa9p@t6?upkmokdPQBUowDY*Hr7$TBidCeeKOmE?CS~2odpAy|_m8MFD0ive2 zt7kLdyafSoiA^f#Ub51+U{3pY`*-_A6(p+za+v?2o_R^N`~#$fk@dAweEI)umyR+y zDqy+_zUdzP<%7P!%@M*k3mus6CR^ptA(RXDMKlduA27d%{;;?K&S^IjS4`Hik4F&u zQcyD>1#WZ+sN11l{qOU??J9`0p~4&;I>sz9oWn`0eLu=Pg!!qriHjD5@}WgFbMLX( z44{*FF5PlD8B~rOn9qAs2bLUSb5|Zm!tr(M`y8~TaNT+0S|J~DbL5$vcRMA3$BWC$ z*Rc<@M#lQc@ntr|G6b8Bf~@Xu3wy^8IsDwV3bqW zL1;1)ocK+87w^S^7p?j&$1R-5fPULcvpKJKML~d<4#_Wl)B_4cvymjGV$N9H^dVgL2T7(swQ4R#pMg{pc~}{& zAK6*^O@{fO&u*XCqN)UYy?VWGRG2rvKviRf90dg@ddm{*a}Sy?yy!uW+1S2?z<1cs zc$gA#l|8x`?ly+ri`*&&)!@-rA%}87^OL>$jVo2)(HuD$X@z+g8Wb~$vZXLL{;<4l zr5>E9e`(uc9>o8)(*o&S=7rbAaeh5?HJKmJ$7V%yUMY7=;hbsu5x;8GkB*4s7oeW- zM#oqGU2e#E`tyFT%`lsBITVBSwg`t6UT-(waAv7+e8ikvZ}aBTYQPXTQ>xol5I)y) zdhHQ%kq*Y{rtYnQCzf{BTN5~Msij^Fq%4OP`LB<+FhApk|D!t(HA*4uepq0u5atvx zjPdyJU>qO18gXwY>}1|K{3E6wG~gJAz~krY;X7g`IN$H@UAK}Oiw3i_r*`jskt0D6v^vt22<_fu9&G2a-}u>~`{sB& z$n2TR(TT_WA=;J$M9ZjCcfBbTjXH0Cg`3o#bGguNa!iCy7rBL+9isc0kdJlzrn}{E zJ{V05onlu{1BSwU(j~%l$V(looaQS4sT)$c@x#?nRGw=~po#ftuVfibgUi6^LfWqy z%yZ@8E&Q-~trT+fuV~2OoM-wOTXn^iLMRH=Z~u(C9vE3ZvEKvNJDkHCCs40!^^S9f z3Vp8uSMR(P9K#$c2Ui`w_9PIUHD&VL?gT=ednEghCxd3=p7v_grS580TWJ(aj7I%k{P$XgJ5i~?N$zqe8v7razaNoJ8|T2J9B0hMM-|Zcd;4&UNH(Yt zL^vIA%Yw_HkqTefD!?Xa?)9~2Wf1n6mKnY(!7E-niua~S99Q#<(G%NsINI@$h#V&S_u<}4PKVM zE`&QpE3{#!%b=2{NlYdN``~r=hfbkyoG@=RFkYYmh=$GRsJSaZw`H}D%@h0Ekv?zV z4>Ulw{9Sg%pgI^0+LBK9Lmn8t;*b%`Bn;mQPZx?BLLK0B-_V3+IP0&JqI9bnPFXZl zT=>`wI}%xk%`cXMIZ zX3C73<-ie2ccU%39hk}@eJ}4rzWzKjvsq^$WF8KLE?)G7FdoY+F+vWvYUju^iBzzp zs(j4bgn8#*bQm4K;(nYuHkmJ50`WX2zR-qbLReXpKJh$q8C~YZ-s~?2?&e8Wb;%Uy zWS~C1gMH}u#!Gj3t@Gjd2%p%A(Nc(dSCv?H4f(4n1giJjaE`H%#BR2hg?;S$y%DO3 zu*>81gf?|NM992}6xf{w?gI}FGtU%&-V4f|X37NkVRJI^HqH+tITI&xzZSsY@3o6H zn0Io@%TiAEQ8Db>FGUcfRRmHDhf|30{Kp}g;;b@|h;_&%QnQ$BNF3LH_OT)d%K62I zextA1P&RAu2hNE~-bQ^^UU$ywJY?Z0#?>Vbn;W&gjSPQ%P zpVY_Xg8rND?;CGo&fvU$ph!CEGs!#-X(5M;HT=@j3H0}o<{5vHLw_t^Zs|+IcO@Vb zXi_8b82c#uKhmFMEC#aIH**F=Ye0%|Kaq|Q>Po4yrYeq=!rq<6F@~F{JINq=d9=I~ zeL-0_BLgsZi$7kuPpk;^#phPHoAbdsMa1Qx8S-_`{ha-d{v{$77Nwq}C2)9dcWN>6 z_Xq3^WG2rRg9fYT;8@{%Nc8L{?0j4ZEQy=I^lAWx6!X~)?OH*NGXG+{X$3eQSJCX> zh5Ce!x0l0fsv&73m%o0y284SEMQHLH|J^dv^Z1vt_WygHrdEFH7USMoBIZ+3#BV-hVoOOWmS*lIBm1oph|i$$G=oXOdxitmXyAEpW0ja;JES6oVu z@OU`6WP2z}58qEf&7_ciE(A>_sLv%vG6!3ACsGH*7qlZ2w<>$cpcUu?P zDpDY2@vfKo)kt7ezgB$k7jo7V-kdwMT@53X8m(nKsUXq#@WMgN#p6})NIZ{qU&#G8 zT2`o+Yc43BpFw@^nGilHo%VcqlIz}1Kwk{P`82%yz7@gHxk1N!i`k&s!|BVAl@EKC zd7O?b6hl;CMy`PXazlsjrCv3{Jl7j6vx&@w(8g!UO1EYFQ{L4XwP#loAPPl{q z&poDVdUVs^wXFX(gHW&M5+RfG8F@Kwv#F{Y=dn+;W(Ga$HQ;`=@7atF zo}Xtp>t5#N0*BDrNa^)vNbQ|1ZL{x!`_qy;R*MDjUO8aoml0;fKI^T%8nrlq%(S?;jDJWQQ z;cEh1l+6s|xP)BzdV1l?u5_3VwSGVG9Q}o6#57vStLvXnvq^E!fI8tbYI+LD+e*?l z-T%uYDcuz~b;WRsr?l+y$y@FVM&G{qX&Fa)xyfaZ_8!3iWPl zS~)8L=vOpIk$Y^CUj(nF_L=Y`lT&kbW@cnmQ$?yYG~PH%Z)lHFEq|Tqzi6kejw~v);QJeTBy6b>Cw*x?t;jPt$(0Tbx zY54tW=yk3XbHLBvwxc!wgC-RwGh1lX&t^f?(`SK}sBcw0$8o;;WESW|eGijC9kQ3@ zl%D=VF_;dX>;mIlSji!Kb)umRSkjs+%0#o^^i7vN31L|Y;=3;ZNRUxsW^xED5+iAV2$3Fk`C{eEpproY7C|?E0V6Hh`U{?Vb-FjbL0QTxb-7`F_EjXO||BqrsVcjy-l7 z=6B5$Go>OIFSF4^u3`)p21Wyy6dNGjJ!$ufa}C__*8KQ@wGx~hsynhUhx6i#P?of? zDB#<>Q17mdK3R?okNyz!3r6nu4@bQm8Qm%Gr`>qIyDnNRr<4Kn<$OQOkEeq|Kr87j z@p!QNc%_|L9&@X#vlnOsOMyt>jmZE7>L%(EepQ=i0*&HTy%$g8A&8B~aoQ*jhN>f@ z3yA+Sr=tJpgIr(bw+)YDQMbDLjGcLgN+z6MFU&rYPz)soM$-u|k%Oc#l+bHh4&9{F zP84}1V8$_5n?jWj5LRkH6Ao!&eWRS-T6WM(Tjy z{RA`L!ww)=n)h!1Q46UzD~#UJRl#%0a>l00e(lx4eI0~Uk5uMIiT493;j|DI65mq!DatlzSA{uT|FtJeYy~yv&u-SrAGp@Q1nS@iWneMcav#R z%7UrOL2}|JaUIH_sOp+o2@S+UP23?FaJlSA2Px_lE^&r>3Qgemr99y|gmX!OK_Z5{ zr93cGRc92_Nq{2+%$%BeWgsh`6>_yY8S^a<>{+hO1VMLS?nulv_2uKQyCz%>!NY1T z9bUQ6qjSUO&S(}qBDi9nU4nfV&i4!2=<^7CY47o1UlDv-;T}2q2swKW-9;<=(eK?T z+e31zj6#)Jz+C*?JeQ*gY_=`xyFAOF%RSYu%%=zzhkY6%=L+E6^I+?6mjd9A z?_D34F9G|<*ToNhLT+Vw%jR-LKKfF7)#`DMb;@zvawDw-XfkY`cuN$+tA3Hky(Fa| zbe@k@RTr-xO~NT|28GbD{ZQe#R0-+@%P4p4ssuq<7l|3KR_L}BXOSdo1Wx{F&V6a9 zrx0;_U-Y~VRG-xeS`a+1HHb=k8IoIp@@9Y1){@?9TT9!D+YP7;}1;6(Gam>Zcs`we&T?%e&KD;q^ zk(=zBQ8v$>3)(V?3Vi+5ur0Uigwz}SeTT_hh(bM-e$At;DZ2*X^yT^Cwb%$%=V^z2 ze{KhX9s97gSwT7w6>G=bn zAPM`_HgZFn$P!YC`#wW+ZNfAXkC%FQ!89XMbf$QecbD7*Eh8565;%)KFG6)(jbQSKQ z%Y{$%-x5-*-Sg?>%;ikj`)X?D zVreRnypiFy!u8Se^sZx-T*xOIkbUgQ7X}mg>Yqg!J=ZW|qJi@Whj=XN`OloWny~g0a}#SOpM1B+ToWa-Gvbl) zSYMZF`S`~{!Jq?)>7I1dRn|Ghdlf?9{)z+lNK-+H#7tRvcl^Ko?e6Hx>y12aD+7<$ z_b(u~h;77c-x})7Ooh(BGs^_EAN72PUe&>b6X~aCqnQ9AxBG^5(jmX(0emGM$8e3!nMe$YkW>F^6?~Va~QMiJys7^S}FE9ce~=n7`vr>UfEK z1^vpwe)sK=gEdgVbqm2q6Hax}Vc3L(V?|h>kLw!ZO*vuTKW(GWStyiJr#?PJn zlSj6w9!_#h%MKigfjXa+IWp`+UEg6mE~g&_FSRN6jESbhBg1m0roIFS=*nd8yAls0 zVNu43$q_IdOZuJx`yEpv@4sCYK;NFt^Hr+>tQS=h4z9mWLw(EHclO`&pvQ_+XCFf$ z5PwLHy?HVP_O6U1I5noiaK@G{CC&*mXG=DB2=k#X@w(EBv^*$OwB6jSPXzXB8oL{? zKk)LU-nWsMI;@Wwni-Bvgkii=JQ-t1zP0AyfSEX1^ zd9xh(HGiJRYtVdp6?wgDMrmx!YBhhh(*&E{7tdQZyoDkr(dFO9&42DU1H0gR*Ot>Q z|L%*`t`$`;H$p@QT~N?z!=V;f87Eo@zhEEXnD){d&WQ;F-UM#o^~%{P{gv@D z>dQxNe)lcShA6ku#kS=ts1Z}8efq5mdiE)dYgC+_4&&^aSjWSaX@rSy})B59E%osI{pLopxeD3ZaMYcAr8NEGB7l@A~P90o%hZsC>|$n##|sH-bW2m8C^ ztX`-aI#WTYdmt_o4tIUqy0AM9;%`CWtj#MqK_i4qK<&n zgoukZAq-yjziK~)JQ#U9{=&}uTF|>6W;8vO1oxQs_j2jRKt@29fC zh#Gf;Z;rJh)8zh>5m=Tg@b15l z9Ee$Wotx?Se^Nck*Z9Z5o{)p4-{k`|m(Ke%wPJpXZ2)H}`pagiBkhuBnu{=i;l7OA%COb*TBQ8BF-dOF03U!sip`(1%BAJHN0KlmKVxZu6}nKWNJ~YG@wyU5@)+ z>BOsKK#lsA<5SHNm`|<#X!bi5j))Kc;xZ^eKE=0cOU&sL*OVUO)XxShLI*9`fEvti z<+r9mJ%9vL-qURc%+oZt*d;xRebs&@fh??Z2zsav-^h=Lj+#aKZ+q}O$Y|*CW>+3u z4#}C3RK@wF``)3a%4MhveSJRdFRE%Y5We|Oo}jGDICp4k%b^dFwYexXsx%|;KN4xFR1Tdt6m z19_3DJ_+&>f;w6Pb>CO~`@H{qUIi=!GWws@!Cb5UU!OUzG{b{By&oPq=nt(iYIF5V z0V(F{yqPbJli~3UYlfU*g)Wf|~ep^>wWkU`0b}eY;TwMX zLRVvfHIVn_-nBpwpZ@MW`py>~E$_PZ$UF>!6nc!VPo;wIG>6LTpYiasHt>v1b{v?p zR2lx#hy|(vE=r-zSYU6t|D5P)F}&SHLAa<85B3SI#?POWK|aszsu*Q|D6`)dKfZ?7 zYghl*ReZ5f8n?r2DG(1^A6|zmv1G!ppU1k+@F&3OSNb$mZgKGIwEcC8a`d0^5qVU} z;(EeOmeVH%bGwh1NRw29L0ZS&!#D>Et)jfZrS%^_`T^1| z-B2)*`Z~&qzP+;}->$xt$N(Fo>@>4ivG6`$B2N^#1IZR5ZTyL-V>*0MQKJX>$j+CU zPSOTJ^x3+GAU&KfMlJ4F#-4LIy#@2$_mQC7slx4UfE-bRt|KhoMd0*8mcjH|6nJJ= z8q1-c5#DLv??euPW5w%~3m>APXY#18a z!a#6dt3U&FEm;rm+m*dN*opt2Q>Fk+KWUY;X=NC`?h^vf-tp)p*LY`lwIcC4gjVYuoFs4glmTqw3xn!f!()( zU56kMOxAb~#tvd`aaldHLVq;u7q%v>5r~4m6{0I**bh5ltH9GOSO_s=mFF_6Vj(oG z@Zh@_8Q?M4GECo`gj}+mg=p3|NV#XKzaAO~RtkpV?x@2SZr?zxKl+zSYrm@=CgReZ$Ma;!aPf{}l0iMwq7zYkAnIEucJ0+FL0?oRiGQ_l0{oIW z_|bhV9@yAV?-};U__tjvhrN6O=&Q+P4lm?H?%BscRd=`3qc9&bOFTq21%5o1hZHH0 zPkK$>Ih&~u^2T>lF65QNCyL5(S%|~+X}2*a&Kp`zElMUhBq68q!+nbH>F}#tgvSEw zi@&!Y?92EVHj+S?U+kbR`ZRfqM-DAxzc%MI9sN1AKn~~L`mPo3Y;YWKSHK}1 zcv4MO_bmj$p~a=SPhV?+k~(8srXF)l*%^KZl83=-*}PAN>*b&~c;oSo%dm`8}a9Ue{pC;@&ig&Q(nO2=I0RQ3HmIUsy3r1T+P2Zd6d_y$f(p-S6K_k>34el6{&x0`KQ#am==Yx~) zXNis5snEmNl$7f}4WdMERWmQ3UV@I~fto4uCUj-u_FYG=utS(eiC_lYIqv?nkP>s| zOvp|M@nC)geatDNuwEdu-HdrPnhS(eGzV1=7l7D@N54kiXTpW!61}Uq-rst6qV_3u z5y-#0!FKs0@-&N5dr#oJ;m{S!JWk|`awcZ3NHOJssmJ28@#Zez_uc zyrpnfEM?*L7tDXlOr)5*SAZN5rIQv1alIJBcsG(g5A0l6&I-pALx_tl$>@nPNOgO1 z#k#Ky7B`lZ$Z>vt@FShkY(45v@6_HWWu_`zzLHNEAkRQ_-9tnlT@FnL| z@#3B=NNyCJdYn@NtIKZ29LO&$CrR~5`c?=#*(P5MFlYDnP>sPetee>1E?>MjTn#OsD?#9w%7vvEAzCL=mFc9mh^3_4L+u1AcmT7bDefA7-@Nbe0x;r4zHf}hsy%E_>P&^1|P#(E>Nh?3_5 zt~U;~vn{rJ55Yp!)|q8ohZ#+nY-f;RF2$*5f;H3)aA*C^M&?E{7?K@~IdKbl=2piX zvxQrLzGrJ#*#7@+1y-q6rg@uTM33h7%ELtP6Ha@}@CoM}+vE4{9jX9jLsmZVfL7qI zlI`H3O$F|^w-oc_(0BiR?4=}KBXoq{u2Iv?gB_bHSNoC%h}$7dYK+VU%gVT8%aoW~ zc8V#Ejvy1rx?5Qv+((~oFoDk5pi;pJ=UkM3G9otNSokRQPJdx zdJP!zT&@;QngGi4LW;iiop88(-;`C-f9C2M$#a*gK=kKI=Rw9Q__)t};Hq>Dw9kkK zjRe+1);X8fLF5w5^?rVTBB2SqtZ3ybLTcbdy|KlWLIpm zGH7GwJ$yP7HIV!3HJm%uQe3Fi2uJ+eE8?-PGmYIT$@`7@^Chp?bB<#F<&akKS;8!k z_KKR9_6>(E=Dq16H7%Gw5kT|v7v>VU^2Ty)mw;xvYE4!_G*t5}7CwKD+(m*2K`O}x z5N*ln>gvL|aZly=?M^(OiCOSA?ZG}>w=fwW=2SGc1~AU9#2~l8EqP-Xa*IXNYkm~q zdg|K21E%^Zu)%ux_HC^inEQR{?s8@{$Pe8TcsG~?{dZ@6QsLaAS@Oqvn`tuK%iA06 zaytjCznR;)19Eg}-|41f9yrUP*WNLuHGpwCIqx~rA!g`&YLjvaP@RfY$oRRD4xi<8p`jwJvs#qkJzb>uBy?$j^V#hme1Ha6F>51cJC zBiVxU9PTZ*c80^5aNAQPmOZ|1vXtro!u{ z&AH!=Jm{ybNnCqx&;k7Zon7SUPu|-t^|btCHH42)KK^v40$%H1Szq|t2Dd!uG*T6i zM-$;qvIoy=AN^Fd_ufQ*A8|&lhHxRAH~M<9GYNgcPFcaEYWctxc+5EMZ802tbel>i zqX(EqlLg&y9-&Pm&BA=L3Ih7ZX%l|e!G;WpvorS_$X*+tI4ax*g+DW;iQge-ou7a5 z6iGiY9q*7YRKY&435o0jom!ZFYtHO}Icjmn%bEc=R~oWc&-O^D1SX=64~)B-z}QbC zc($<|m^77sdLVxyKWWp=<~8OlCCz>D2(N~_l3Xve+Nwcodfq}-=>HLQ-tkoa|NplW zA+yY6wX7(zdL}dNC_+X=A)}BHBBAW;z4vzPz4t7Yl^G>UlB~+_`Tl(0?|y$>w{viv z<2vWMuIKCdd_3-tI#^_^wrIVA>yA{_*t?e1P}uuG;{fL3E_;A%)m9?(?6q8au$2kL zrUy?c;C-b-3>>7cq=|w}$3`o^=`Y zo#6h&8(#|5>@4kecF*A^ zn3i}NfMj5xB?;Ak8a@s*yy~;3o4es?%zaSg8Tt3;JwR73>}00j3Vt2rH@fxu;hVSh z?19}KAVIW!`bJ|hUQZX(r>#nWm-46=XG|7+NWNy2{I(hHN!|1uCar|i8SMCf z7|qA?rjjOFb{YNa8ttA{F5FG9F?Xz?We@s+Q_F8hqn@drw7p@frV4C&=XRc9PTFXB z+K-}^W>CSE;cM*6KOE^)uEg{D!n~yV&3z51Zzc8_@y7Lf9@%0V@`wb)ZnzzMQi2@a z7JH|6Wys0ipKK8fb3C8!n}{g2w&lITWv(;df%k$#p!g&U_8oN=a2nZYi0>)_e?NTN?0@c0|{ z2<`r{mtPU(U@lCjA**2`bT=8-demWFmd~7)8Ki^r{8@%N)Q1S1wySA*l?<(vqw6a8 zdQl>eMP}b2KYjM($zJ4^X%2E_vbLAN)7sGUd*`d+&;gSVv7ahoynoU7%y1cKU;DI2 zk+}wTo%;HnwzV9doOl}Be54NR9sR8B$qJ}p;7xg{)&Sfi%{}|u`{1K_@T$tz0$hI^ z^KtEPJG?ZSARRVuglEq)0;M`yz_537rB166R?52A1me+0ZBYCnZlD#0>UVcn_@EAp z_jrubpE@uxD}JMkbKFR7ZsjHk>|@VYY-Km1E;749bbkltM#+_{T4K&@q*udlu9!w3 zTVsizpv?eTioz37Pf+Ktu!rrrT`eprd-W5$R)SdZ1vR2W<>0jDkxJuP2R%7jG_ebf zpq>7B#xz+Ph0C# z^SSyV>ZdKkhT@q~Kdh7Hz2|B=_*qry9S=(YYu<(mmg|MUa=e`MX>As4Mha9#M-_nt z)mM*ctivygUK`0a&W027gm#q*ym7y@bDV7q90v|r2Aa>qZ9jXpNXHiFm)AZa8(0PX0&n~-;=0G=o7K3wXA@jC zH|DdO!~Cp&x7=12QWEtDaHgfjRF5wfKD>UqW&DN!b)me?6IfT>xGS%g5mo?9N12Vt zu)nt}if`*@M;XW(tkUl+W1Zvh$)z|P^IY{ROE2v!hM?VCu7k|QFs;A)Tjzb8Ggr-B z8^S&VQF@4kq*DnHsRwR&<8|N zT|pr$S2c3$U)N`&KV8k2jNhIo;JY@^}CYmEF*WDA+_4~R`{JtU|fIl^QLP9JicYjZq^OR z=dnmCXGR)`>@_DH`q%=2b=Ku-YJFhKTm9aSJ{0za{@MB&jvSTC^t;4eFh8`KU-1KH z38Y%)Cwi}jLfQ=B^;BX6>MS4Sy;~u`?ugMv>BS1vVKP$L2}HxM?^_oe_k;rZhY$+Q z;8=K-so-_u(LeW3Oa8`~8o0RGGF`VX6kb+_(VQ?y1V2u2aC{X8io15-EPo#YS3m69 zAh2YEg83zj4-pL@UZEH8ZaW%c>gWf*C1Ku^*b7q9m=;)nq$@9cu4n#;%YiJ=iGkuVmiScOxP^(^cJRFF6t#y+Z>Uu?x)XK2C9rGO`pL}@! z{2TI7DGze9vgSdOJxS+RC)801#736AN{6G>mlVl|nn3BU8g;u`F;Fk=H$7p6d~F38 zKQ^qF<*CvltOKT@gU$Ht1>~Xs-*yC8i8N?p!t&w#sWZM>=B2>#o>(!l0y(h%`@0&j zx<7wjF9P*G7n2>>&&0!yi~nT<<3hMWbnM`#ugG`ash_6mZiHc;Py5obZg(>?li>4> z0+t=cyUz}yzCfC~bi+9miY6I;&1OeK!R5#)YwTNmvYOJcL;t1i#;uPDsI#1q`6M?O zR|8^XZp%`Pn13_jFvN>}oiP4g#D|_Czg5^u?a+J?%$SF_-4IR&!V`_JqNj0PImfE| z4fR$z*G|&=9gKrV)4o!CA(g;yB^RP{E(=VDU%t1&xw^=O37;QQ1)zGDC#{qy3Emh) z@oGhsf^BxR>`U8B@O`kCjzu&T?wN%1QXB8xq6sI=;A=(dxcnpNi)#b zMq3^W&xG>e!prk9r~~Kfy&bBZ2{pF5x1+?<;nu5DC)}8`AvfKA-;^)b0RtKLk}k~x z57mj4R^%k#Iu@zTYJ<5T(o(;wqe{TrLBgdTb=Fs!FYMfm%7;aPK=Eq{I0u(y`L;+^ z2A@>a4`ry8f|mOCC?m`5>S3Ecl-mjCxr3J+vc=yI!M=Nmr=ka|;i$C0du{Zae4{PW$P6ff)1p%v zCy*B^AzP{B4gFY8<_ejjUgpO2cp0i{7z?T@tNwO#cwr@r2>(08g4T0);ub1C3D``^cB9JEMkHPFvS#UOX> zR}9cxPPrf4j{Wti5Jls%M5u2$)bmt35e|Dq4kSru!#edn_FAlK+mjQ%{l@vMQiD#k zH1dJQZnA5gyqO7mTaDU}#^HLCE6hAaB?I}jL=yM&aD6N!aU1?p#=RI!gR#BnxasiM8vZG0*3= zcHSP;B__T81g<*8&|sz5M^;q~;%CO~n);i8@ke^TPi`qJuN?fIjCyP_i{qmHUuxm% zIlrHeNg80up~>nw1^VB-av01TuwEw!KW37xfLAYB2+Uh}oN0C6uHxr?)|P}!g}n}9 z0zaHdzqSC1t#6I@iN6LFW_s3EO038K-R}L8D&vSbbTVt-8WO}BU?{FnuFDGN8s^11 zL3fJalpLpVka84Abx{{J;hZP>pn1>bh79P@6H0G0X#$q9$&8)lc=&jGxS3fm7Ib+z zq%PN_fUJnL*Y5VRlAbur{a#-Dy#?wV4FUU~4_7C&d2Qxvgf6M3-fIupOt1I#fe zywx$)OoZa~vl10OC7_p5e%{3(8OGixt}pr)f+ulO+s8&+N9lW=AZ93m_EY;9Ze#v7 zwJv+^;;~GihjQ|vt{C(kRA04e!yL*xe{OH>#T?t9Va;~uJP98yA+w}uZ z$#5>ii0-lo`g#|#+Qg9GTw?g1I7cNBhPKFqRM2mnQ^Q?x5!Y?2`#F?q{+aJSU5Viu z!TbEG&BGgqvmsba=DDak&iR}gb`JEV!Ht}1Yw1^cz-9k%?1aP|lvr4f8j}ry(YON7 z+!@R>wQ#$Y;93A%@hf8H9m|x}fn=it!5EPu;l8n$t^xyFj z?$~27OFjVH4xO(pjyL|@>We*{zjgmL`T)PJ(w{E_zTkM%feg&I9x6XCuqOuGsBYHW zxl{l&&sJCWIMxE^Qk3a&$Mqr`#b*LkDsGLT#1+mniCk)A6f~gj@GCRTu%W9y7F6bHpMVW zc}y&zw-ouQ=D(|?i(&XRk7rX8>gbFcU;e@Cxgcknn-umN<6d)f?nMsd$+L5h&HF3C zsHjGvrN0_Z*-O7mwyFaTsX$R9tPj5~k|Slg5<)zGbR-_=h3tvOGof*qUo_8NBzde3 zSSeiuuXfjhXqhGzb65?mo^UwqitCQF2U+t2>O(Mh)DiLB zg1vm8BFp`HXgC&VEBUqw1{aPloqH4w*SjMw2eVcKeR9?BeLJXwEDd+%Kp*|+nn45S zVe}V0*(+-5gZXO(wmqc2mC(*uD{~ihYXW@-=HFH1K-CK0KzVHu@S5x0YDW$?Ro41b z$+Tq9rSbTlmYfQoIdrMM&7}cM@c!6?ebvjSJ)FLkqOUVV^Ry1;S9SML@zY|TZdO5e zn~X9GN`EWTm@FoPO8+?tBC=%Q`s%N|Yc?NFoPH4Hq>Xb3k>Y0r%#$KAdKcg?Hw5(z zA#?|48e!b+ZHz02sqk?dIVuBW8?xI)aMNC#+-qgSETMwu@C#-&uunX=UMftz^q2} z+#?@c-~8`&2Y^@kIAvW_4eT3WSSh<$1rK#^fBLpr4>wuA9dgQTfcMMurQc?oL1#(Y z!Pl}00=ymKNO2u28TeMGijV`J*KN+X9ted~=Tr-57f=^S7|t%_tb~Wg`C?s3k>GYN ziehkZsw(2p8h6|Z(L8@|724x?_2 z$K3LaXEms6BD?b@2csJdhQ%>e^s03jJXaT60|~G zSl3u~CI3))fVt;16(8xfF)uVGsNELp6)vJjecMMeK|ARfQ${%YX`=p|;YvcTFZ(&q z$wdMf>FUnvGZ27>$Xdjcei7c^*KvEW+y`6hlzdiLSFn$Kc9DEg1&UKj4Vx;pusc<@ zwc5D@{=7|$9~Y^Dy`Dy2C%Uk1;Fgd+P|*OzR!Iux{$)_1u6!&Ek6Z9v{{yl`rPvo; z+>BtY00E`Y#he+`lUk}t_hZg+5A_9)6H<-HU3~wtQ?d~vxO2D^+%TW=-a9RB)T*JL#T0QUr^C|ZFJtiz6AK6VkoDDgh<{lEgRx7E% z^5x^z9=kl4Xmui~K9c~Bw_WzX^&|j2w*y5v=E5K395GP-lmrHPv|`Kq2cY!02H#ce zOW(Bi*h7_z{r9tbyJfIHvFD1mIJYJrxsz^(>%M7u z7Ai_yU#)NCZ|d1%4&cA9Gf`i!?e+lmoienB*KjVDnz>(G^2a*ABlH+C`}%`hbu`nin24@OSI@Nloj<-F|Rp^o!;HRt#)%j-o=S?-a7R z=_F#70{dsGOh^*DiU~GwoFo+=-e`JBGS~aP6KH!)sw+df}T!hhjX) zz9@X8#2O3*AD%wo{h0}tYpNe&S=(Xc)L6tzthd@4c^`42uXa^kBG%bKH^W-o}ps6@_{pCKk8l|MJsa9pl-l~G%J#( zCk`#F5F5G^NbeeQq_=CwUBW3?9P=)5KOT;N_P|2d!g&qj3!CY^)))v zMkE5l%1&mOvZG%6O0YaZG!Dr8X&24TrDFZy(?3*${<1rTUJTu-P$}!e!rO!W*VF)8 zX3S-vYZGwP|AW5$0?Q0VpA@)U%lMx3STVRg(raFz%>=GcmxQzGS+H;X^PV@RDImzQ zP^Eb+7J3!tmb_OBF>lLM_Y>w<=-7Q})KD52p}(iWAboyG@YkiCzJmoPFuFj_Ywf zgHxs1_qyP4yoi+#-q-A|9oyjZt_NFcGOw1apa1T!zw^EHH=H|X|9RB;tFZ(!4J6F7 z#H#;p|NESt?NIA1At!B^@7z1>Q|MPd+GPF`&u{gMY91%@L!fFz*eX4`84S8)Ov972 zVEBF-la+f0JSBEKB|#JcPL)z8m&ZZLtF$ao>@>N{XM)G)-`e zAI|9o+kNAQ3*ZdH6cHchj5vrA#wHJ@LWIq)v!R%4bkubATPQ#F4Vr9!#a_nzo%V+2 z$5y$R+xjvl$tfOct@m%+BbQ7xl{tBED;<)44oa$Ef1WvlW2Z(b5x#kGh>6KW1D|30 zEwf#i+o1DB>lMx?rp#8Y-k}aMr73asV+-;keICyUxM2Qs(PygLGnfxzTgVVBQ34m~ z^KS$8Khy7Y$}OVbjf&OM{S8qfd=Q8(^!ODAJ14u^6wHxtklxF}y_gM(A>YV8^`ehl zLYImH?>}1~bHWv)2*B}*{mG}*EI8EmWx4xm4j8yk`cp2a!quR;C<&u@ps2Jllt*7( zv8(o%l8ORoiDexqpw5ITwLN@J&v5;_nB~%n{f?vF#>%XVxnMP{@`5rn4_@nOd%eue z0ZEpvFmlOKuvFV@ur_XmTP2bW->r+lzfHxh%`_9H<(^pvlxG2DrnG@BaU%?zlO6T& zU-tNMwvDo>M!hiUXF8{gL~+zc+TWO z-or;49eYqOe>#}G&m|dlRv%6-W+SKOncqNROfL8k+fNN-6a(Y6!js3ivLVCK%PRLz z43MQ>Rv(T`gR5d40ypqFu*ueZsc5SN$fl%En|+9bqQT^WiG7jqgo~c$lK}Qlc*?58 z<&xmsk?;1K8{v>rcKr4r>TP@5v|k=r!o0e4xy?q_R9IwQ4ek#@-xd{BZ$4!t9IW!( zJ{4U8{ym9IZ(hUzlXc&O9dcDp#H|Kuci=j&Ma0QaI|c0LYecUT6~poe!I#E(9uM&> zi0plp4-9q|*3CH2+98-So|eY^F>OKGqYE)$KsT0 zhx`A@N2z)`Banpo+#$9)o+WsHc_a9BcH(FbG~atv^cnr(>hPlVu3s5wWgj(rWQy}L zA}Xp|j|p%+>Y_JOdNbT^-KgG0UI;#Kf~oz?@cPVB-?A2;0q?FYZV@}-{L)I&`O1l6 zIOkZa%_vt7I>%HkmKi_)-H&;hzo%qo8PG9*+i3n?^>_Q<=hso@Czm2mfJH~%@MPrW z#D+DetqJDAcSc)PNz9}2v*b;seq9LB?~>VEMKWOWUA~$=Qy3I(QRx?JAP@UVM(_bU z)O#CSuSf`C|BE!fh0W=o{-y1?3|xm(JcwAi%+Ls`)4x(djR5>(gwlS@{n^j@v~fS` z!QStyD{r+c#<>p>WAHzEHStYz;%7Hff)L2t|lWO3-D!roQ?s`a-XCQ?-8h%@h`Y-D6Lq#pb$gXhV%|L2%GZU{hp|6ubyP;#I2W`= z)*Qd#{5|NGw*Gc~9{6Q4w@4y?I$QBr#jmq@5F5Au0r{N{2(Gw%fW!iMS_OJ5LiZ}b z?F2(xqDlc+(aryiy^;lkAsG$l8?)dl=LaLVN7?W@oTl=?N*MiA7H`(*xRldKYRVr94fWaGT=zvu7M-ku4}DMufG`Pgh% zIpq0n{Tb>kh7+7;-6e%Mef|G?ow~pKyLaeEx^q2pQD+~R zEL1i^{gSQHX`LLn_OqJJ0neAzgGT%o>>Y6QZQNXrS|{A1NW1z%q7*oTr~CGfV%>7& z-ogvi%bfw*=kBN@%bN=;l+&&OpEBuRx&hd)vhU>}!u){)wV#YS+tEkPo}}Usl>#cq z?mg4=&I6U*HWAOQ;*mFZ_sL-ntgqu9e@YB(hQL9svkRExtQy=Qe&BO16k2Iiu$+wr z>4!`kDgh~&=du~ckL#scdETkz-?^}d&2z2zUdo; z1;3rzqoG%0VU6Wi-}1RU7_D&MFr2jR47Ow--y z1~{3;Y?94f4r4UKT0g{)pR&AsAsji4{!|R&f!)pjzHj8U^zr&yU$29ULd43p-l*q^ z5I%bv{nY>M=fB^7w1-b$C%Xt-BGWu)AOw7k51Cw;!+bdF^mm%EWx$@#*C#~Q00xp` zSq*^^pnFNvgTgWkUYz~8>5tz>nXz*HgnF!trGJnWJ0^f}-G}#qv3UPga_1~V|9zk- z`@5RoIdHBe=G|%fcyPV4`~4pDsfp7~oef-wgJVY>HV5kq;G;lwscTmfd_H`6zS$uX zwAUgib20Zo?AT(>Ay1r-TlkN$uEfH3T)ey%b)Kw756@d9 zLs46MO(3A(z=3>Xj5r(kUOZjZIe`3^2$y*;oEv{;-!p#AB_BeI9)B;w{<_cCht(8O zm=jnnG+v_A3hNH~Q}qt016;FWbi0uar5Z;x*D6bqpCrn88hyzrA>uxED}^A`)jg~d zQ3vldb4*U)9Kb-R@s1D9cYP9^U&PsA-g7A}JA3pbcqcrz_m}zru@Vc1?RbzA6a9EN z#ikmRav5V(BapMgYG!VR`P|0{3CE8R&_CSU5`WXY9NctCWCbwyhMMk_tRAkXvJYJ} z^ytSN-~O;em3SS_O?VS~6LnrvYLdgP=aApbJ^8$m5Diy8Rq4D%KB1>ln$F0RWZ=6l zSW3F3NkJ6!XkLD}W}3p?Tz=+P*D#3O@!?GqnH_}h{|kf-U3#mf>%7w-3WM;-Hx zn5j#@9}=MEI(zU+3vw$Hm$v->5a1Nox2_pE%rU#MIZufknB3KGG|HcG-Xvcgw1oY_ z_a83Y{qz&_Lk)M7^^t#-@tAld7S~@?@|Onx7?i@-_c|~`RSq6XA%qRzYWQ7zq(6PT z9Qc1x?Gi!GL0WxDXBBcU-Ncq1Ymq;*dt1<6H?|Arn4dJ(9$y5Hn$?{j&+&fQQa);M zvmTO%>AQK559sOW&rW*15yDe^j;jSsAe-7$B@hn9yhj{yNZZXt6%0PE9URNehYl>k1sUs$3@fP;&_X#Q+zOhHY>qEso zD?8Zd_nW#{$%p)qt&grhT``}Pbu&SK06FDyq&un2*zaI4pg2!53C}kr1623oyt0?) zXW$s>MTuJ$;&)Jg*TJT>ANd8g+Y`#zdc*wJ<|<3BnwcZ<`erIpC z>PG?W8#>1D@s*ms0cxKy%g8rPaQ)~ZBi+F^FjlcUVJTh*l?GHjKlTp6nJec;__G^f z>f9DPH=!LU4ScvyVLswkaoU!KW<6-v`-FTpXoen%UDrQHARl3p|Ez|8FvySbQ_FLw zK()nceQQ=aNUdGdy}yQaeuI5{*F-x=m=}|XJt~EuZeF4iCI6B6+Ga!MQp$`>h`8puRjeQovG@B}a<4 zu0ICYzqops{J`s1mxg@Ht~5CNgeT<{ZzIgGu9@7tgmtOnj55?jg2|-QhgZl&uYBXp zc`YRp@|M|CH<1hA^z-`6Z_GtEVrP@dkw=a}JvXuA-2!0e_tf=7pRV`iFe7zE^tISE zitR$bwf!L>it8=K;QRTPa^&ZC(Bbv?_Jel>F#O=B{%oQFVqSkArLoM0jaV}~3e>;K zh%k@^aTh>V|4(ZAv*-i-_xFp`4`kmo&w!DQMOh=vKbNvq9#_n11zX!Jzbk&Z@c6WK zmt{V3(KEa>ZsC3VfM;e9?PwwVV3J8!LLFVMbASSOPzh)*lBN5jFTR7!__$a%_G#4R z9==UMXu!pSg8TWH`z`7o@sxE2^OC!}HA;)%fq3`mIpidimOT2FY0?Y&d|$7zpuUoF zSEO`XH}agKzIM)FAMW!KbMt-Vl(n34%aSn1K4u%=05q0CvSj+2JllcmYm2(-4S%2SA85Pjt62SafB!wUE0q&(1LHDtGJH1fB(sN;R14n5|wB|N6LyKiX55BeX9P?m2b&PUGLlR*+@lwe%oc9~Fn+N^!N(LDkZ*>jK zo&CO~x)psS9UO)dUa!<+UsGF|+y%d9+v(M|6dKh)*8Q&W_snh zahd2(xZ0i6Gl2Tmn~G$ZL(Y5t1#P)%E`-gbDU-8y00sGWY^VoszRk+~M>YsilZK6W@H2#(H&gU%iN zzhAO^F1(Zuw9#+brzTn;%b2V-l_L>2tBM>ReMY@j(ddm+5vd?ssCc^$`%NFG9|}D8 z2nGqW_dQyC;jofb>9=hf4>Di6zN(b_gWjCicDq0r&@~p2zo!a=+sq3Vx9789T}emi zoH*vbP!{e#+t7eMjd}`3$zbSk5O;Bk2n5Y*^fRhTkx)ij&^K``5%jYXU4m?CA!Tba zn_(veHXD3qwR%F}4p;517wwU7=R%9#jAJaQ)b#5)eM*G8a?K1K*!MI2{H-C^2KA=a z5~{&IG2mp?=5Nyy492F;y(I=&aH*GL_z7_w_-;KOJEM)d{MM$Je!Wo8OUxVm^)3wf zOYGerVP7?w@`CH)I{G}T=E?Nx|%Gl18Ij1XOn zx>>r-QW?EYuxPSzRKDJV`ozzcXC%?TWTkex9=SjA0V-`z?K6NXu+fm)0ne{e2EJ;S zG|2bSKEQzMl@pICIW({jbNZ5GbOZXScrSPBbaA1M{9tRtH(W<@whvk#zl^+rBwEe( ztZGQD`}o-${by_X+q^Cd4d87tlOp~j1xV}KWGr{(gC}P{WvO2t&H;`r=GmcdhAqg* z#s_`8`NfWm9vSe~xyhT~q8Jpu&C0n~r$XVqZb8evneeo2?R*aEC&}-&hWIFF{(Zkc zMzxOYm?9sb%`!$G`)1+?AI^nT=0eUQ-QGyzbeu0JYE0}&`TM$Oy-wM3lAynoeIYou zHVl$oetkHB+%!sKk!H7$LZJR4zH|h6W1nn_`x6F|z;u)7*QH&^3vau8#Kt8Dd{_Os zw|i>fa?n6s{z1$Kccp!#%TWkl4?t{hH0og32n)iy-a+@hCxP~(KqCY?Xr?KAQ^%$7VJn{5dKIZtz z_mNIlMF8t=bA_>wi7+eJp&t}tgE+@b% zw&(Tx&*sB1J+&i8&nCkDqz8Y}jk3VM?@WO7IOV!@2SZmxy-Px10mhSe8~ zz=Oti_sxOSe>+1#37;9w2 z-QNPf;kVsOQI{z^cx%qF>?McLV0Tjg>lS_vN%Xdhdk|m z%l-X}I5!zq)B3oIdCX@X9b$it^L7c9h|!Z}Rvkv(v$!VZ3%(T8JuTXp zppM#5A0Bkz_5Ixv1G$PoA{?TAM&piiJEz#mqa9vl5Y5=5B7ywyDLK;@W+SPPI`^4- z*YQl)&TCeQ(tHOA*}q-iNg@ZsJ(RWy>!icq`AAGzFelONskZJi=KA`4)}hAwXz@M8 za&%?`xUqfTI7watb&|iV*y)ga#XUoE0C{rN)SbF?xXyQBw{Nj<%Yu`JepH%`UMXN~EXvbT8><|F>QU1@7I zm*m5ojlOr^(jQ~~+n^vHxjW`}2>JT)ixmP}dg%>1#Mg#!t>?Mk>}B*^LY zS@}2Cz(hupH8*n>>|(xUJ=cqKfs>jW`f`=PM)oXOwj>YU22B$DWpg0;;~4!b)F0dP zFx}cpO9303*;ae~G$8%z|Agi>aWKab%#ts_i2wuRRg7ZCF#ycJnD!gsU7M| zA!D2~J)kxZ&P9!r{wdA?il~Ro?PrR?<8I!YAT!ii>=-4Db6{?KwxaJs%Nz)+U9=;# z^ugu2%}61ut|qUSi!OWoIV(gp|v?YEf^H^xAnq>}L^_#T;fA z!gT}v2&4GkRh)Z7|7lM4K;7RO;ST3S8FKwy=V&rZA#1j<(vPARRId=N+$Vht^`c)$ z^2n+{_f>v?1agR?>8YMFXEY&RTGVabs2cQ_-filL)c$?G#V1a3^+pA#U+36(B7*%4 z;?xH}@ctus|BTY(^%PJL=jElwK2Vm6P>ys-9SCrpUi^bPtPRz@X_to4pYzcCs=#<5 zG|qCL*c!`(qO>^KYwPD%Y`o)4hiSJQdr1`cQ0T5u6ddV!{cRx#`yhA`$Lv6K9T}Lheo~c zU&#Qgan|DvTmST1k8dASEdo*f2sa@j%s&V^xtVwz`IUmip{g6m8!MTAswqtXC+9D0 zmeYywZZ*=^5$mP2&fJq32DxxTuVy{3w-{CqJ|rkB6vFHU4d=W<%zau8KArWj5Q4v^ zBf&Hw#M2Y7zES{oHr1*dclY0zYr!;JXU;nH;E%zWZj-4U&Xr+vADE{6xehhZ>8 zlD8V>w7kPNgZkl$mYcNYjkiz`;7uFbt?<<>rk{JZ_3vY$W172@&!GOL zHnqi|w*dw(ILlDvH3Ex^?ZuhCMhNpiXyNyw0`~YslzhC5*U=b*i5EC$QwcWP%e^-b z;yhBW2mERVjdXT33n>B+Z@N=u>Xd>crP(D0y?UTZYYzHj)&hUxN`Bs<%Y{t2ehDUA z&mXRcz8G+?8Cq5Bd<-(H;O-&Q7j`t+p!;|}+eQKXdEaT14<15pQCo0CW=b10x@f4_ z6=UDB{`Cr9R3)ZzN*P~KDTQ8^!ey85ov`3_c10*wc-3QRYFd$o9w}Y( ze7+lkQD8gS6Y&&tRCq5xN|NSpgUvyw5UZjLU>Ia{6ggiAMfB>gk|)Agby1cPoPz0w=)H0IUFu#O;xjx1O1NWFOsMSy7nV!l$;;+&t$Iy*-=kv zFeuh&9fSTon!;0~*as9TRTX&AnG46+G#%o1MZw$C12uJH1)wN3_}k%59K89~IMcu% z3r)ihDy3!PVU=91<0k5P#^06Ry~c$72X(W{V)(PARdA z6W{;wBgNOL!$7}!bh|q_1{(9e^gFWQ{E~sVkMv?LwB+&Iv25V|G0j#!g-{G!{wZeS zB9XA?NIGI&31G5gL-ZpQ^XU}1_h)}cK8^Cx<71l0>k}CNqgIN#9E+V|w$3zocHEFR zT(ca`>#kSO-XuV^@oD8bX7s-dyw24|PGE#+?9YUGJRc9Xj6|kp08wuxEM($!`uv8$ zeViLS@wx*2OsJ<4Q2oG*K7E^;ciAYNDqw{9A$_L?`pBd{tT+T9H|=^z7L8CFti`ij zxxJYK-(4K{n2!;_pAb=G#GVVk2-EihPZofYH^q~uVP#N8U3A;wc`-bA^~kHF81+zv z`Ca2wA3?bCWam;*I}jO=@`PjECH1AEO>V6MzM1%v`V!;!%ty}jHqOtitDn0J4VMF1 z<54OL?FuMRbXBV8FM;sxkwM~V^d*!C7G1~ldZ*~u?iw!i{|8&WVdW1(uCoH)Qx@c! zFQ~pQeI1D$5|zbsZb=Y2IZ;0uYWyRTG1I9z0;<)BIT2Uj1OhsD2T2PIOYbc$$qfNeF>VxiGItN55~n>Gomh<1dAWrt}(Y2!D9g#Y9%tvJH6qRpO5R! zOun0Ijzw9p-+-8DBPkx(Vmoz60>Z)Ctb6Rstu*v$ex|#R`mJ_f>HX_Z6CwRz*^fUq ziLlsbCY^x&)b;%)0e6P;;S!gv!Q`2AFjZ|@{Pi&oXpS`m?~20tJ_$M9;k#+@NYyIW zKBfuu(>(7M=On@4Al+9P@hk}Ppe2}_#6zn$`+RJF9B3BmcjFED7pEMYiEN>H)^H6^53w;Y%#H=Ogbl7`+u* zu*)dz@87>}KHkM`fO&sxTf0wVe%AQnw(*`_DWI!iX6QPP>vVqi8-By+>;CuuJ^foa z>XNgmZaDmVidiEMINn43XYSKQ~qY$05C z)M+aw#$4zBJx}<%J$P9FsIsTB2K&cFY627GR~b6fOEA^i7ubF#g<3lm z?~7)kj-9ZS$M1w3t7BhZ?5k}Ci$zzBr)_a?ZQEDGohJ=!Idd6XrXs+b`}>V$<^l+z zpQ*m%odh-0#;Wq+sc^IMN!nZF`OM{$d>Nk4H`DKp94QC3dn#sq3z*k!NGwtQvl7PMMyqW9 zDga~4Q2&mFav*15-;j7)2eKT(PILp+;5aw7@zSOoOr*+M&iSF=Yrs)0in$7;d965l zJ<8$7P0Q!|e%1nI^2tQG<29fjr8LlKSOzVZW6AD59*0~hZ!-IQfB{{4A>9#12+FZx(rTut&PyMbPOEb0w+1N3*k4J=hb{~`-#=I+oEVD?M6(2Vo6 z1iBcWKX~89N^DDu&;Z!bIXo2A2c9P%Iy|XthGw4Bv*N@}AV=Hf$41)-Vx zq!z7MO!v^{n^+)fPFVkT1677WN5a! zbm^`k>ZyOa-HU0+g9~R5j$HD|hMAWM45c0|nBPtAFSV2h%d^I(b__5t{A9cx)pi!F zZrt2QO-+EH#}tnoThOmsRDAv7%OqeCVmf;KHFE6KH9zMtB*U%ab!NkRvZ4PNGiftR zF~n16-Fg2x3zEg2`O!VcIqziezSiwnAUPsDv1t;Zt@{ys3n_b$6TU+zwzH@;BUe9e~a^AoKdn2#n3T9h!O50M;M(dfGToLTgIQVLqI1 z>)XBQ)9u7L?F`ek@m-}5J6n`a#a#{asqR_%^EJTB`FszO=u40!Rl<&C@P6K!zP9VZG%Y zG%m+Iw;t>G_i;O1q)FS;jC1R`<)@2km9-FSVkTH5TLU75-BXK`jo>ElE;*Tz4phF0 z`&d0I;b@v-O{W<4Q3sk$0dd~|~!D{^=!R2-Vv|qV$h86jj+)I~^+r(ADWyK>O3oy^K z`t<046!y)hs87`-@ifC~PUhL-Qv;CPTk6h7-T|*upS4j5v_M!+m`Z|04>TzVPL<|# z!r=kE5W4sY$g1H9*yBmc`-}HfwO>=aH z9�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

    {L3oy`hAM1XyEgL>_;0N^#89<H+g26u8G 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 |=pf0kS&p)!s3H1Pn!uT70 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 #}knv+uT2oDgOv;mvEyyo>yZhT(Jo+;ko^HRi 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

    >?!Jh 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%0D)^pM&McjcbHPhhFQ~LNK)FZdn_IJ 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≫k-T-|(_wPSnI#3TApI*~l#e66FfeweK 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.^leZ7tFs}ICllV`7D8^+PY_nVLmjN}u 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 z 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

    k1;=m`W@qS90xZ%(ogiG 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≪ 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 Dhg5SZzUbggnbp1uNTfB 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�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